        body {
            background-color: #121212;
            color: #e0e0e0;
            font-family: 'Arial', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
        }
        a {
            text-decoration: none;
			color: #FF0099;
        }
		a:hover {
            text-decoration: underline;
			color: #FF0099;
        }
		a:visited {
            text-decoration: none;
			color: #FF0099;
        }		
        .container {
            background-color: #191919;
            border-radius: 10px;
            padding: 20px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }
        h1 {
            text-align: center;
            color: #00FF85;
            margin-bottom: 20px;
        }
        .game-list {
            list-style: none;
            padding: 0;
        }
        .game-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            margin: 5px 0;
            background-color: #222222;
            border-radius: 5px;
            transition: transform 0.2s;
			border: 1px solid #121212;
        }
        .game-item:hover {
            transform: scale(1.02);
        }
        .game-name {
            font-size: 1.0em;
            color: #00FF85;
        }
        .player-count {
            font-size: 0.9em;
            color: #00FF85;
        }
        .fetch-button {
            display: block;
            margin: 20px auto;
            padding: 10px 20px;
            background-color: #FF0099;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .fetch-button:hover {
            background-color: #BB0472;
        }
        .fetch-button:active {
            background-color: #BB0472;
        }
        .loading {
            text-align: center;
            color: #a0a0a0;
            display: none;
        }