body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #FFF;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        .logo-variation {
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 10px;
        }
        h2 {
            color: #E84A5F;
            margin-top: 30px;
        }
        h3 {
            color: #2A363B;
        }
        .game-stats {
            background-color: #FFF3BF;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FF6B35;
            color: white;
            padding: 12px 25px;
            margin: 10px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E84A5F;
            transform: translateY(-2px);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            display: block;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #2A363B;
            color: white;
            border-radius: 10px;
            text-align: center;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #E84A5F;
            color: white;
            padding: 5px 10px;
            margin: 3px;
            border-radius: 20px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav.active ul {
                display: flex;
            }
            .logo {
                font-size: 2rem;
            }
        }
