body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #ff9900;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            position: relative;
        }
        .logo {
            font-size: 28px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 10px;
            top: 10px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #e74c3c;
            margin-top: 30px;
            font-size: 28px;
        }
        h2 {
            color: #3498db;
            margin-top: 25px;
            font-size: 24px;
        }
        h3 {
            color: #2ecc71;
            margin-top: 20px;
            font-size: 20px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #2ecc71;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #27ae60;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        .game-stats {
            background-color: #ecf0f1;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            background-color: #34495e;
            color: white;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #bdc3c7;
            color: #333;
            padding: 5px 10px;
            border-radius: 15px;
            margin: 5px;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #95a5a6;
        }
