
/* =====================================================
   RETROVAULT - CSS CYBERPUNK COMPLET
   ===================================================== */

:root {
    --primary: #00D9FF;
    --secondary: #FF00FF;
    --accent: #FFE600;
    --dark: #0A0E27;
    --darker: #050812;
    --light: #E0E7FF;
    --success: #00FF88;
    --warning: #FFE600;
    --danger: #FF0055;
    
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0088FF 100%);
    --gradient-secondary: linear-gradient(135deg, #FF00FF 0%, #AA00FF 100%);
    --gradient-accent: linear-gradient(135deg, #FFE600 0%, #FF8800 100%);
    --gradient-cyber: linear-gradient(135deg, #00D9FF 0%, #FF00FF 50%, #FFE600 100%);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.6);
    --shadow-glow-pink: 0 0 20px rgba(255, 0, 255, 0.6);
    --shadow-glow-yellow: 0 0 20px rgba(255, 230, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.retrovault-body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== FIX SELECT/OPTION - Fond sombre et texte clair ===== */
select,
select.form-control,
.form-select,
input[type="select"] {
    background: rgba(10, 14, 39, 0.95) !important;
    color: #E0E7FF !important;
    border: 2px solid rgba(0, 217, 255, 0.3) !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
}

select option,
select.form-control option,
.form-select option {
    background: #0A0E27 !important;
    color: #E0E7FF !important;
    padding: 10px !important;
    font-weight: 500 !important;
}

select option:hover,
select option:checked,
select option:focus {
    background: rgba(0, 217, 255, 0.2) !important;
    color: #00D9FF !important;
}

select:focus,
select.form-control:focus,
.form-select:focus {
    outline: none !important;
    border-color: #00D9FF !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4) !important;
}

/* ===== BACKGROUND ===== */
.retro-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #050812 0%, #0A0E27 50%, #050812 100%);
}

#particlesCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.15) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.15) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: gridScroll 20s linear infinite;
    z-index: 2;
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.scanlines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    animation: scanlineMove 8s linear infinite;
    z-index: 3;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ===== HEADER ===== */
.retro-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
    overflow: visible;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(var(--shadow-glow));
}

.logo-img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-text .accent {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 30px;
    overflow: visible;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.header-search {
    flex: 0 0 300px;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 25px;
    color: var(--light);
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: rgba(224, 231, 255, 0.4);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    right: -300px;
    width: 300px;
    height: calc(100vh - 90px);
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    border-color: var(--primary);
    background: rgba(0, 217, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.pixel-rain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(224, 231, 255, 0.8);
    margin-bottom: 60px;
    font-weight: 300;
}

.wave-effect {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-box {
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(224, 231, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SECTIONS ===== */
.consoles-section,
.recent-roms-section,
.features-section {
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CONSOLE GRID ===== */
.consoles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.console-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.console-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.console-card:hover::before {
    opacity: 0.1;
}

.console-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.console-card-content {
    text-align: center;
}

.console-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.console-card:hover .console-icon {
    transform: scale(1.2) rotate(10deg);
}

.console-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.console-manufacturer {
    font-size: 14px;
    color: rgba(224, 231, 255, 0.5);
    margin-bottom: 20px;
}

.console-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.console-stat {
    font-size: 13px;
    color: rgba(224, 231, 255, 0.6);
}

.console-stat i {
    color: var(--primary);
    margin-right: 5px;
}

/* ===== ROMS GRID ===== */
.roms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.rom-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.rom-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.rom-info {
    padding: 20px;
}

.rom-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rom-console {
    font-size: 13px;
    color: rgba(224, 231, 255, 0.6);
    margin-bottom: 12px;
}

.rom-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(224, 231, 255, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
}

/* ===== EFFECTS ===== */
.cyber-border {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 39, 1), rgba(10, 14, 39, 1)),
        var(--gradient-cyber);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.8); }
}

.hologram-effect {
    position: relative;
    transition: all 0.3s ease;
}

.hologram-effect:hover {
    transform: translateY(-5px);
}

.glow-hover {
    transition: all 0.3s ease;
}

.glow-hover:hover {
    filter: drop-shadow(var(--shadow-glow));
    transform: scale(1.05);
}

.shake-hover:hover {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.glitch-effect {
    position: relative;
}

.glitch-effect:hover {
    animation: glitch 0.3s;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-2px, 2px); }
    66% { transform: translate(2px, -2px); }
}

/* ===== FOOTER ===== */
.retro-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    margin-top: 80px;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(224, 231, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: rgba(224, 231, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
    color: white;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(224, 231, 255, 0.7);
}

.stat-item i {
    color: var(--primary);
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(224, 231, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-search {
        flex: 0 0 200px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .consoles-grid,
    .roms-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header-search {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .consoles-grid,
    .roms-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE ROM RESPONSIVE ===== */
@media (max-width: 1024px) {
    /* ROM page : passer en layout vertical au lieu de grid 2 colonnes */
    .container > div[style*="grid-template-columns: 350px 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    /* Ajuster padding des sections */
    .container {
        padding: 40px 15px !important;
    }
    
    /* Titre ROM plus petit */
    h1[style*="font-size: 42px"] {
        font-size: 32px !important;
    }
    
    /* Game details grid responsive */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(140px, 1fr))"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    /* Titre ROM encore plus petit */
    h1[style*="font-size: 42px"],
    h1[style*="font-size: 32px"] {
        font-size: 24px !important;
    }
    
    /* Badges plus petits et wrapping */
    div[style*="display: flex"][style*="gap: 8px"] span {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
    
    /* Download section padding réduit */
    div[style*="padding: 30px"] {
        padding: 20px !important;
    }
    
    /* Émulateurs widget plus compact */
    div[style*="margin-top: 20px"][style*="padding: 20px"] {
        padding: 15px !important;
    }
    
    /* Game details : 1 colonne sur mobile */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(140px, 1fr))"],
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    /* Breadcrumb plus petit */
    .container > div:first-child {
        font-size: 12px !important;
    }
    
    /* Titre ROM très petit */
    h1[style*="font-size"] {
        font-size: 20px !important;
    }
    
    /* Bouton signaler en dessous sur mobile */
    div[style*="justify-content: space-between"]:has(h1):has(button) {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    /* Section title plus petite */
    h3[style*="font-size: 24px"] {
        font-size: 18px !important;
    }
    
    h3[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
    
    /* Images galerie 2 colonnes au lieu de 3 */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== GENERAL RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Tables responsive */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Modal plus petit */
    .modal-dialog {
        margin: 10px !important;
    }
    
    /* Formulaires stack vertical */
    .form-row {
        flex-direction: column !important;
    }
    
    /* Boutons full width sur mobile */
    .btn-group {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .btn-group .btn {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
}

/* --- STRUCTURE EXTRAITE DE LAYOUT.PHP --- */
/* Flip card 3D effect */
.rom-card-flip-inner { position: relative; width: 100%; transition: transform 0.6s; transform-style: preserve-3d; }
.rom-card:hover .rom-card-flip-inner { transform: rotateY(180deg); }
.rom-card-front { -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.rom-card-back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; transform: rotateY(180deg); overflow: hidden; }
.rom-card-back .rom-info { padding-bottom: 20px; }

/* Dropdown Menu */
.nav-dropdown { position: static; }
.nav-dropdown .dropdown-arrow { margin-left: 6px; font-size: 10px; transition: transform 0.3s; }
.nav-dropdown.active .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu { position: fixed; min-width: 220px; border-radius: 12px; margin-top: 10px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 9999; }
.nav-dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; text-decoration: none; transition: all 0.3s; font-family: var(--font-body, 'Rajdhani', sans-serif); font-weight: 500; font-size: 15px; }
.dropdown-item i { font-size: 14px; transition: all 0.3s; }
.dropdown-item:hover { padding-left: 25px; }
.dropdown-item:hover i { transform: scale(1.2); }

/* Mobile submenu */
.mobile-nav-section { width: 100%; }
.mobile-nav-section .mobile-nav-link { cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.mobile-arrow { transition: transform 0.3s; font-size: 12px; }
.mobile-nav-section.active .mobile-arrow { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; margin: 0; }
.mobile-nav-section.active .mobile-submenu { max-height: 200px; }
.mobile-submenu-link { display: flex; align-items: center; gap: 12px; padding: 12px 20px 12px 40px; text-decoration: none; font-size: 14px; transition: all 0.3s; }
.mobile-submenu-link:hover { padding-left: 45px; }
.mobile-submenu-link i { font-size: 12px; }

/* Classes utilitaires pour le Footer */
.footer-top-link { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; text-decoration: none; }
.footer-trophy-icon { color: #FFD700; font-size: 12px; }
.footer-gamepad-icon { font-size: 12px; }
.footer-top-title { flex: 1; font-size: 13px; }
.footer-top-count { font-size: 11px; }
.footer-empty-text { font-size: 12px; color: rgba(224, 231, 255, 0.5); }