body { font-family: 'Arial', sans-serif; line-height: 1.6; max-width: 1200px; margin: 0 auto; padding: 20px; color: #333; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo { font-size: 28px; font-weight: bold; color: #e74c3c; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #2c3e50; }
        .mobile-menu { display: none; cursor: pointer; }
        h1 { color: #e74c3c; margin-top: 30px; }
        h2 { color: #3498db; margin-top: 25px; }
        h3 { color: #2ecc71; margin-top: 20px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; margin: 15px 0; background: #e74c3c; color: white; border-radius: 5px; text-decoration: none; }
        .download-btn:hover, .login-btn:hover { background: #c0392b; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { margin-top: 40px; padding: 20px 0; border-top: 1px solid #eee; }
        @media (max-width: 768px) {
            nav ul { display: none; }
            .mobile-menu { display: block; }
            .active { display: flex; flex-direction: column; }
        }
