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: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 10px;
        }
        h2 {
            color: #E67E22;
            margin-top: 30px;
        }
        h3 {
            color: #D35400;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FF6B35;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E67E22;
        }
        .game-stats {
            background-color: #FFF3E0;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid #FF6B35;
            padding-left: 15px;
            margin: 15px 0;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 10px;
            text-align: center;
        }
        .tag {
            display: inline-block;
            background-color: #E67E22;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
            }
            .mobile-menu-btn {
                display: block;
            }
            nav.active ul {
                display: flex;
            }
        }
