﻿/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --accent-yellow: #ffba00;
    --accent-yellow-dark: #e6a700;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #666666;
    --red-accent: #ff0000;
    --green-accent: #00ff00;
    --blue-accent: #0099ff;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typographie militaire */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-yellow);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--primary-black);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 186, 0, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-brand {
    font-size: 5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.8);
    animation: titlePulse 3s ease-in-out infinite;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
    line-height: 1;
}

.hero-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(45deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--primary-black);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 186, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 186, 0, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-yellow);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover::before {
    width: 100%;
}

.cta-secondary:hover {
    color: var(--primary-black);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    display: none; /* Masqué */
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 186, 0, 0.5);
    position: relative;
}

.ranking-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
}

/* ============================================================================
   HOME PAGE - FEATURES SECTION STYLE BATTLEFIELD
   ============================================================================ */

.features-tactical {
    padding: 6rem 0;
    background: #050505;
    position: relative;
}

.section-header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.section-header-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-yellow), transparent);
}

.section-header-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-yellow), transparent);
}

.section-line {
    display: none; /* Remplacé par les bordures */
}

.section-title-tactical {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, var(--accent-yellow) 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 186, 0, 0.8));
}

.section-title-tactical::before {
    content: '◢';
    position: absolute;
    left: -60px;
    color: var(--accent-yellow);
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

.section-title-tactical::after {
    content: '◣';
    position: absolute;
    right: -60px;
    color: var(--accent-yellow);
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.features-battlefield-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-battlefield-card {
    background: linear-gradient(135deg, #000000, #0a0a0a);
    border: 3px solid #222;
    border-left: 6px solid var(--accent-yellow);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        0 10px 30px rgba(0, 0, 0, 0.9);
}

/* Coins coupés style militaire */
.feature-battlefield-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--accent-yellow) transparent transparent;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.feature-card-border {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 186, 0, 0.2);
    transition: all 0.4s ease;
    pointer-events: none;
}

.feature-battlefield-card:hover .feature-card-border {
    border-color: var(--accent-yellow);
    box-shadow: inset 0 0 30px rgba(255, 186, 0, 0.2);
}

.feature-battlefield-card:hover::before {
    opacity: 1;
}

.feature-battlefield-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-yellow);
    border-left-width: 8px;
    box-shadow: 
        inset 0 0 30px rgba(255, 186, 0, 0.1),
        0 0 0 2px rgba(255, 186, 0, 0.3),
        0 15px 50px rgba(255, 186, 0, 0.4);
}

.feature-icon-battlefield {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.8) brightness(1.3);
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.6);
}

.feature-battlefield-card:hover .feature-icon-battlefield {
    filter: grayscale(0) brightness(1.5);
    transform: scale(1.15) rotateY(360deg);
    text-shadow: 0 0 30px rgba(255, 186, 0, 1);
}

.feature-card-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(255, 186, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
}

.feature-card-desc {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.feature-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-yellow) 0%, transparent 50%, var(--accent-yellow) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% {
        background: linear-gradient(90deg, var(--accent-yellow) 0%, transparent 50%, var(--accent-yellow) 100%);
    }
    50% {
        background: linear-gradient(90deg, transparent 0%, var(--accent-yellow) 50%, transparent 100%);
    }
}

.feature-battlefield-card:hover .feature-card-accent {
    opacity: 1;
}

/* ============================================================================
   TEAM SECTION - STYLE BATTLEFIELD
   ============================================================================ */

.team-tactical {
    padding: 6rem 0;
    background: #0a0a0a;
}

.team-battlefield-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-battlefield-card {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.8);
}

.member-battlefield-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
    transition: width 0.3s ease;
}

.member-battlefield-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.member-battlefield-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 1px var(--accent-yellow),
        0 15px 40px rgba(255, 186, 0, 0.3);
}

.member-battlefield-card.highlighted {
    border-color: var(--accent-yellow);
    box-shadow: 
        0 0 0 1px var(--accent-yellow),
        0 10px 30px rgba(255, 186, 0, 0.25);
}

.member-rank-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid;
    position: relative;
}

.member-rank-badge.founder {
    background: rgba(255, 186, 0, 0.2);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.member-rank-badge.dev {
    background: rgba(0, 153, 255, 0.2);
    border-color: var(--blue-accent);
    color: var(--blue-accent);
}

.member-rank-badge.comm {
    background: rgba(0, 255, 0, 0.2);
    border-color: var(--green-accent);
    color: var(--green-accent);
}

.member-rank-badge.admin {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ccc;
    color: #ccc;
}

.member-name-display {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 186, 0, 0.4);
    font-family: 'Orbitron', monospace;
}

/* Adaptation de la taille pour les noms longs */
.member-name-display.long-name {
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.member-role-desc {
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.member-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
}

.member-status-indicator {
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-yellow);
    animation: pulse 2s ease-in-out infinite;
}


/* Bannière Parallaxe */
.parallax-banner {
    position: relative;
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-black);
}

.parallax-background {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    z-index: 1;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.6) contrast(1.2);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    z-index: 2;
    border-radius: 11px;
}

/* ============================================================================
   CTA SECTION EPIC - STYLE GUERRE
   ============================================================================ */

.cta-epic {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #000;
}

.cta-epic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 186, 0, 0.03) 50%, transparent 70%),
        radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    animation: epicShift 10s ease-in-out infinite;
}

@keyframes epicShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.cta-epic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 186, 0, 0.03) 2px,
            rgba(255, 186, 0, 0.03) 4px
        );
    pointer-events: none;
    opacity: 0.3;
}

.cta-epic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-epic-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.2), rgba(255, 186, 0, 0.1));
    border: 2px solid var(--accent-yellow);
    border-left: 8px solid var(--accent-yellow);
    border-right: 8px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px rgba(255, 186, 0, 0.3),
        inset 0 0 20px rgba(255, 186, 0, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 186, 0, 0.3),
            inset 0 0 20px rgba(255, 186, 0, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 186, 0, 0.5),
            inset 0 0 30px rgba(255, 186, 0, 0.2);
    }
}

.cta-epic-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 40px rgba(255, 186, 0, 0.8),
        0 0 80px rgba(255, 186, 0, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.8);
    font-family: 'Orbitron', monospace;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 40px rgba(255, 186, 0, 0.8),
            0 0 80px rgba(255, 186, 0, 0.4),
            0 5px 10px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 60px rgba(255, 186, 0, 1),
            0 0 120px rgba(255, 186, 0, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.9);
    }
}

.cta-epic-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-yellow), transparent);
    margin: 0 auto 2rem;
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.8);
}

.cta-epic-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.cta-epic-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--accent-yellow), #d4a500);
    border: 3px solid var(--accent-yellow);
    color: #000;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 40px rgba(255, 186, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.cta-epic-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    animation: epicButtonSweep 3s linear infinite;
}

@keyframes epicButtonSweep {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.cta-epic-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-epic-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 60px rgba(255, 186, 0, 0.9),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.cta-epic-button:hover::after {
    opacity: 1;
}

.cta-epic-button:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-epic-btn-text {
    position: relative;
    z-index: 2;
}

.cta-epic-btn-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.cta-epic-button:hover .cta-epic-btn-arrow {
    transform: translateX(10px);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--accent-yellow);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-logo span {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ============================================================================
   GAME PAGE - STYLE BATTLEFIELD MODERNE
   ============================================================================ */

/* Game Hero Banner */
.game-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    border: 8px solid #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.game-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    z-index: -2;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.game-content {
    text-align: center;
    z-index: 1;
}

.game-title {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.8);
}

.game-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 3px;
}

/* Header Bar de la partie */
.game-header-bar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 3px solid var(--accent-yellow);
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.game-header-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    justify-items: center;
}

.duration-info, .winner-info-bar {
    text-align: center;
    position: relative;
}


.duration-label, .winner-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.duration-time {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-team {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    min-height: 1.5rem;
    min-width: 8rem;
    text-align: center;
}

.winner-team.zenith-team {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 102, 204, 0.1));
    color: #0099ff;
    border: 2px solid #0099ff;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.winner-team.ogv-team {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(204, 0, 0, 0.1));
    color: #ff3333;
    border: 2px solid #ff3333;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* Container fluid pour full-width */
.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Layout Battlefield */
.battlefield-layout {
    background: #050505;
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.battlefield-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ============================================================================
   RADAR TACTIQUE - STYLE MILITAIRE
   ============================================================================ */

.tactical-radar {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    border-radius: 0;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.9);
    position: relative;
}

.radar-frame {
    position: relative;
}

.radar-header-bar {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 2px solid var(--accent-yellow);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.radar-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radar-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.radar-status-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

/* État offline - Rouge */
.radar-offline .radar-status-live {
    color: #ff0000;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff00;
    transition: all 0.3s ease;
}

/* Pulse dot rouge en mode offline */
.radar-offline .pulse-dot {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    animation: pulseOffline 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulseOffline {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px #ff0000;
    }
    50% { 
        opacity: 0.3; 
    transform: scale(1.1);
        box-shadow: 0 0 5px #ff0000;
    }
}

.radar-display {
    padding: 1.5rem;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    position: relative;
}

/* Radar Offline State - Seule la CARTE devient grise et très sombre */
.radar-offline .radar-map-img {
    filter: brightness(0.3) grayscale(1) contrast(1.3);
    opacity: 0.7;
}

/* Effet de scan lignes en GRIS sur la carte */
.radar-offline .radar-map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(150, 150, 150, 0.15) 0px,
        rgba(150, 150, 150, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    animation: scanLinesGray 8s linear infinite;
    z-index: 1;
}

@keyframes scanLinesGray {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

/* Effet de bruit/static en gris (sans clignotement) */
.radar-offline .radar-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent 0, rgba(150,150,150,0.05) 1px, transparent 2px),
        repeating-linear-gradient(0deg, transparent 0, rgba(150,150,150,0.05) 1px, transparent 2px);
    background-size: 4px 4px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.radar-offline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 100;
}

.offline-icon {
    font-size: 4rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.offline-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 186, 0, 0.8);
}

.offline-subtitle {
    font-size: 1rem;
    color: #00ff00;
    text-align: center;
    max-width: 500px;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.offline-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #555;
    border-radius: 4px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 186, 0, 0.6);
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 5px rgba(255, 186, 0, 0.3);
    }
}

.offline-status span:last-child {
    color: #bbb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.radar-map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    border: 3px solid #222;
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 186, 0, 0.1);
}

.radar-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: brightness(0.8) contrast(1.1) saturate(0.3);
}

.radar-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 186, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 186, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.radar-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    animation: radarScan 4s linear infinite;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--accent-yellow);
}

@keyframes radarScan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Markers des unités */
.unit-marker-zenith, .unit-marker-ogv {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    display: none; /* Caché - non utilisé */
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: markerPulse 2s ease-out infinite;
}

.unit-marker-zenith .marker-pulse {
    background: radial-gradient(circle, rgba(255, 186, 0, 0.4), transparent);
    border: 1px solid rgba(255, 186, 0, 0.6);
}

.unit-marker-ogv .marker-pulse {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4), transparent);
    border: 1px solid rgba(255, 0, 0, 0.6);
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.marker-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;
}

.unit-marker-zenith .marker-icon {
    color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.8);
}

.unit-marker-ogv .marker-icon {
    color: var(--red-accent);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--red-accent);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.radar-overlay-info {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--accent-yellow);
    padding: 0.8rem 1rem;
    font-family: 'Orbitron', monospace;
    z-index: 10; /* Au-dessus des effets gris */
}

.radar-coords {
    display: none; /* Caché - non utilisé */
}

.coord-item {
    font-size: 0.85rem;
    color: var(--accent-yellow);
    font-weight: 700;
}

.radar-timer {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    letter-spacing: 2px;
}

/* Contrôles de lecture */
.playback-controls {
    background: #0a0a0a;
    border-top: 2px solid #222;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.playback-btn {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #333;
    color: var(--accent-yellow);
    width: 45px;
    height: 45px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playback-btn:hover {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: #000;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(255, 186, 0, 0.5);
    transform: translateY(-2px);
}

.playback-btn:active {
    transform: translateY(0);
}

.playback-timeline {
    flex: 1;
    margin: 0 1rem;
}

.timeline-track {
    width: 100%;
    height: 6px;
    background: #1a1a1a;
    border: 1px solid #333;
    position: relative;
    cursor: pointer;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-dark));
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    position: relative;
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-yellow);
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.8);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    font-family: 'Orbitron', monospace;
}

.playback-speed {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-yellow);
    cursor: pointer;
    transition: all 0.2s ease;
}

.playback-speed:hover {
    background: #222;
    border-color: var(--accent-yellow);
}

/* ============================================================================
   AFFICHAGE DU TEMPS DE JEU ET EFFET NVG
   ============================================================================ */

/* Affichage du temps de jeu */
.game-time-display {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Courier New', monospace;
    backdrop-filter: blur(5px);
}

.time-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
}

.time-status {
    font-size: 0.8rem;
}

.day-night-indicator {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-night-indicator.day {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.day-night-indicator.night {
    background: rgba(0, 150, 255, 0.2);
    color: #0096ff;
    border: 1px solid rgba(0, 150, 255, 0.5);
}

/* Effets jour/nuit pour le radar */
.tactical-radar.day-vision {
    filter: brightness(1.0) contrast(1.0);
}

.tactical-radar.night-vision {
    filter: brightness(0.3) contrast(1.5) hue-rotate(120deg);
    background-color: rgba(0, 50, 0, 0.1);
}

.tactical-radar.night-vision .radar-scan-line {
    background: radial-gradient(circle at center, 
        rgba(0, 255, 0, 0.1) 0%, 
        rgba(0, 200, 0, 0.05) 30%, 
        rgba(0, 150, 0, 0.02) 60%, 
        transparent 100%
    );
    filter: hue-rotate(120deg) brightness(0.3);
}

.tactical-radar.night-vision .player-marker {
    filter: hue-rotate(120deg) brightness(0.8);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.tactical-radar.night-vision .radio-marker {
    filter: hue-rotate(120deg) brightness(0.8);
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.2);
}

.tactical-radar.night-vision .objective-circle {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.tactical-radar.night-vision .safe-zone-rectangle {
    border-color: rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.tactical-radar.night-vision .objective-label,
.tactical-radar.night-vision .safe-zone-label {
    color: rgba(0, 255, 0, 0.8);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* Animation de transition jour/nuit */
.tactical-radar {
    transition: filter 2s ease-in-out, background-color 2s ease-in-out;
}

.game-time-display {
    transition: all 0.3s ease-in-out;
}

/* Responsive pour l'affichage du temps */
@media (max-width: 768px) {
    .game-time-display {
        top: 5px;
        right: 5px;
        padding: 6px 8px;
    }
    
    .time-value {
        font-size: 1rem;
    }
    
    .time-status {
        font-size: 0.7rem;
    }
}

/* ============================================================================
   PANNEAU DE STATISTIQUES
   ============================================================================ */

.stats-panel {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Quick Stats Grid */
.quick-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.quick-stat-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 186, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-stat-card:hover::before {
    left: 100%;
}

.quick-stat-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 20px rgba(255, 186, 0, 0.2);
    transform: translateX(5px);
}

.quick-stat-icon {
    font-size: 2.5rem;
    filter: grayscale(1) brightness(1.5);
}

.quick-stat-content {
    flex: 1;
}

.quick-stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-stat-value {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    font-weight: 900;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.3);
}

.quick-stat-amount {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.quick-stat-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.quick-stat-breakdown span {
    display: block;
}

/* Section Radios */
.radios-section {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #222;
}

.section-header-tactical {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 2px solid var(--accent-yellow);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    font-size: 1.2rem;
}

.radios-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.radios-list::-webkit-scrollbar {
    width: 8px;
}

.radios-list::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.radios-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.radios-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

.radio-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-left: 3px solid var(--accent-yellow);
    padding: 1rem;
    transition: all 0.3s ease;
}

.radio-item:hover {
    background: rgba(0, 0, 0, 0.95);
    border-color: var(--accent-yellow);
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(255, 186, 0, 0.2);
}

.radio-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.radio-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.radio-team {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.radio-team.zenith {
    background: rgba(255, 186, 0, 0.2);
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
}

.radio-team.ogv {
    background: rgba(255, 0, 0, 0.2);
    color: var(--red-accent);
    border: 1px solid var(--red-accent);
}

.radio-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.radio-owner {
    color: #999;
}

.radio-owner strong {
    color: #fff;
    font-weight: 700;
}

.radio-spawns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.spawn-badge {
    background: var(--accent-yellow);
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 900;
    font-size: 0.9rem;
}

/* Stats additionnelles */
.additional-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-mini-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-mini-card:hover {
    border-color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.95);
}

.stat-mini-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-mini-value {
    font-size: 2rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.3);
}

.recap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0;
    flex: 1;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 2rem;
}

.recap-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.recap-card.winner {
    border-color: var(--green-accent);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.recap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 186, 0, 0.2);
}

.card-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin: 0;
}

.winner-badge {
    background: var(--green-accent);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.winner-info {
    text-align: center;
}

.team-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--accent-yellow);
}

.victory-text {
    color: var(--green-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.time-display {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

.time-details {
    color: var(--text-gray);
    text-align: center;
    font-size: 0.9rem;
}

.player-name {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.supply-amount {
    color: var(--text-white);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.xp-amount {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

.xp-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.xp-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.radio-count, .spawn-count {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

.radio-details, .spawn-details {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================================================
   CLASSEMENT FINAL - STYLE BATTLEFIELD
   ============================================================================ */

.final-ranking {
    background: #050505;
    padding: 4rem 0;
    border-top: 3px solid #1a1a1a;
}

.final-ranking .container {
    max-width: none;
    width: 100%;
    padding: 0 1rem;
}

.ranking-header-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.5);
}

.ranking-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 186, 0, 0.8));
}

.ranking-table {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.9);
}

.ranking-table-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 3px solid var(--accent-yellow);
    padding: 1.2rem 2rem;
    display: grid;
    grid-template-columns: 80px 2fr 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rank-col-h { text-align: center; }
.player-col-h { text-align: left; }
.team-col-h { text-align: center; }
.xp-col-h, .supply-col-h, .radios-col-h { text-align: center; }

.ranking-table-body {
    background: #0a0a0a;
}

.ranking-row {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 80px 2fr 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
}

.ranking-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 186, 0, 0.1), transparent);
    transition: width 0.3s ease;
}

.ranking-row:hover::before {
    width: 100%;
}

.ranking-row:hover {
    background: rgba(255, 186, 0, 0.05);
    border-color: rgba(255, 186, 0, 0.3);
}

.ranking-row.rank-1 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), transparent);
    border-left: 5px solid #FFD700;
}

.ranking-row.rank-2 {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), transparent);
    border-left: 5px solid #C0C0C0;
}

.ranking-row.rank-3 {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), transparent);
    border-left: 5px solid #CD7F32;
}

/* ============================================================================
   NOUVEAUX CLASSEMENTS (3 LEADERBOARDS)
   ============================================================================ */

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: none;
    padding: 0 3rem;
}

.ranking-table-container {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        0 10px 50px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.ranking-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.3),
        0 15px 60px rgba(0, 0, 0, 0.9);
}

.ranking-table-header-small {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 3px solid var(--accent-yellow);
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.ranking-icon-small {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 186, 0, 0.8));
}

.ranking-table-small {
    background: #0a0a0a;
}

.ranking-table-small .ranking-table-header {
    display: grid;
    grid-template-columns: 90px 130px 140px 120px;
    gap: 1.2rem;
    padding: 1rem 2rem;
    background: rgba(255, 186, 0, 0.1);
    border-bottom: 2px solid rgba(255, 186, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--accent-yellow);
}

.ranking-table-small .ranking-table-body {
    padding: 0;
}

.ranking-row {
    display: grid;
    grid-template-columns: 90px 130px 140px 120px;
    gap: 1.2rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 186, 0, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.ranking-row:hover {
    background: rgba(255, 186, 0, 0.05);
    border-left: 4px solid var(--accent-yellow);
    padding-left: calc(2rem - 4px);
}

.ranking-row:last-child {
    border-bottom: none;
}

.rank-col {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 90px;
}

.rank-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
}

.rank-medal {
    font-size: 1.8rem;
}

.rank-1 {
    color: #ffd700;
}

.rank-2 {
    color: #c0c0c0;
}

.rank-3 {
    color: #cd7f32;
}

.player-col {
    display: flex;
    align-items: center;
    min-width: 130px;
}

.player-name-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.team-col {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
}

.team-badge {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xp-col,
.supply-col,
.radios-col {
    font-weight: 700;
    text-align: center;
    min-width: 120px;
    color: var(--accent-yellow);
}

.team-badge.zenith {
    background: rgba(0, 102, 204, 0.2);
    color: #0099ff;
    border: 2px solid #0099ff;
}

.team-badge.ogv {
    background: rgba(204, 0, 0, 0.2);
    color: #ff3333;
    border: 2px solid #ff3333;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-align: right;
}

/* Responsive pour les classements */
@media (max-width: 1200px) {
    .rankings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .rankings-grid {
        gap: 1rem;
    }
    
    .ranking-table-small .ranking-table-header,
    .ranking-row {
        grid-template-columns: 70px 110px 120px 100px;
        gap: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .ranking-table-header-small {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .player-name-highlight {
        font-size: 0.9rem;
    }
    
    .team-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
}

.ranking-table-small .rank-1 {
    color: #ffd700;
}

.ranking-table-small .rank-2 {
    color: #c0c0c0;
}

.ranking-table-small .rank-3 {
    color: #cd7f32;
}

/* Responsive pour les nouveaux classements */
@media (max-width: 768px) {
    .rankings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ranking-table-small .ranking-table-header {
        grid-template-columns: 60px 100px 100px 90px;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .ranking-table-small .ranking-table-body {
        grid-template-columns: 60px 100px 100px 90px;
        gap: 0.8rem;
    }
    
    .ranking-table-small .rank-col,
    .ranking-table-small .player-col,
    .ranking-table-small .team-col,
    .ranking-table-small .xp-col,
    .ranking-table-small .supply-col,
    .ranking-table-small .radios-col {
        padding: 0.8rem 0.3rem;
        font-size: 0.8rem;
    }
}

.rank-col {
    display: flex;
    justify-content: center;
}

.rank-medal {
    font-size: 1.8rem;
}

.rank-1 {
    color: #ffd700;
}

.rank-2 {
    color: #c0c0c0;
}

.rank-3 {
    color: #cd7f32;
}

.player-col {
    display: flex;
    align-items: center;
}

.player-name-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.ranking-row.rank-1 .player-name-highlight {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ranking-row.rank-2 .player-name-highlight {
    color: #C0C0C0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.ranking-row.rank-3 .player-name-highlight {
    color: #CD7F32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}

.team-col {
    display: flex;
    justify-content: center;
}

.team-badge {
    padding: 0.4rem 1rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-badge.zenith {
    background: rgba(0, 102, 204, 0.2);
    color: #0099ff;
    border: 2px solid #0099ff;
}

.team-badge.ogv {
    background: rgba(204, 0, 0, 0.2);
    color: #ff3333;
    border: 2px solid #ff3333;
}

.xp-col, .supply-col, .radios-col {
    display: flex;
    justify-content: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .battlefield-grid {
        grid-template-columns: 1fr;
    }
    
    .game-header-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ranking-table-header,
    .ranking-row {
        grid-template-columns: 60px 1.5fr 1fr 0.8fr 0.8fr 0.8fr;
        gap: 1rem;
        font-size: 0.75rem;
    }
}

/* Ranking Section Old (à supprimer) */
.ranking-section {
    padding: 2rem 0;
    background: var(--secondary-black);
    display: none;
}

.ranking-container {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    overflow: hidden;
}

.ranking-header {
    background: var(--accent-yellow);
    color: var(--primary-black);
    padding: 0.8rem 1.5rem;
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.ranking-list {
    background: var(--primary-black);
}

.ranking-item {
    padding: 0.8rem 1.5rem;
    display: grid;
    grid-template-columns: 60px 1fr 100px 80px 100px;
    gap: 0.8rem;
    align-items: center;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.ranking-item:hover {
    background: rgba(255, 186, 0, 0.1);
}

.ranking-item.first {
    background: linear-gradient(90deg, rgba(255, 186, 0, 0.2), transparent);
    border-left: 4px solid var(--accent-yellow);
}

.ranking-item.second {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    border-left: 4px solid var(--text-gray);
}

.ranking-item.third {
    background: linear-gradient(90deg, rgba(255, 186, 0, 0.1), transparent);
    border-left: 4px solid var(--accent-yellow-dark);
}

.rank {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-align: center;
}

.player {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.team.zenith {
    color: #0099ff;
    font-weight: 700;
    text-align: center;
    font-size: 0.8rem;
}

.team.ogv {
    color: #ff3333;
    font-weight: 700;
    text-align: center;
    font-size: 0.8rem;
}

.xp, .supply {
    text-align: center;
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.8rem;
}

/* ============================================================================
   STATS PAGE - STYLE BATTLEFIELD
   ============================================================================ */

.stats-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    border: 8px solid #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    z-index: -2;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.stats-content {
    text-align: center;
    z-index: 1;
}

.stats-title {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.8);
}

.stats-subtitle {
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 3px;
}

/* Section de recherche - Style Battlefield */
.stats-search-section {
    background: #050505;
    padding: 4rem 0;
    border-bottom: 2px solid #1a1a1a;
}

.tactical-search-panel {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.9);
}

.search-panel-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 3px solid var(--accent-yellow);
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon-header {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 186, 0, 0.6));
}

.search-panel-body {
    padding: 2.5rem;
}

.search-input-tactical {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tactical-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    color: var(--accent-yellow);
    padding: 1.2rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
    outline: none;
    transition: all 0.3s ease;
}

.tactical-input::placeholder {
    color: #555;
    text-transform: uppercase;
}

.tactical-input:focus {
    border-color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 
        0 0 20px rgba(255, 186, 0, 0.3),
        inset 0 0 10px rgba(255, 186, 0, 0.1);
}

.tactical-search-btn {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border: none;
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 186, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.tactical-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.tactical-search-btn:hover::before {
    left: 100%;
}

.tactical-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 186, 0, 0.6);
}

.tactical-search-btn:active {
    transform: translateY(-1px);
}

.search-hint-tactical {
    background: rgba(0, 0, 0, 0.6);
    border-left: 3px solid var(--accent-yellow);
    padding: 1rem 1.5rem;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hint-icon {
    font-size: 1.2rem;
    color: var(--accent-yellow);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-title {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 186, 0, 0.5);
}

.search-box {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.search-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 20px rgba(255, 186, 0, 0.3);
    border-color: var(--accent-yellow);
}

.search-input::placeholder {
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-button {
    background: var(--accent-yellow);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.search-button:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 186, 0, 0.4);
}

.search-hint {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Affichage des stats - Style Battlefield */
.stats-display-tactical {
    background: #050505;
    padding: 4rem 0;
    min-height: 100vh;
}

/* Carte d'identité du joueur */
.player-identity-card {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 10px 40px rgba(0, 0, 0, 0.9);
    position: relative;
}

.player-identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
}

.player-card-left {
    position: relative;
}

.player-avatar-frame {
    width: 120px;
    height: 120px;
    position: relative;
}

.avatar-tactical {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--accent-yellow);
    box-shadow: 
        0 0 20px rgba(255, 186, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.avatar-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 186, 0, 0.3);
    pointer-events: none;
}

.player-card-center {
    flex: 1;
}

.player-callsign {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.5);
    font-family: 'Orbitron', monospace;
}

.player-faction {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faction-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.faction-badge {
    background: rgba(255, 186, 0, 0.2);
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faction-badge.zenith {
    background: rgba(255, 186, 0, 0.2);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.faction-badge.ogv {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--red-accent);
    color: var(--red-accent);
}

.player-status-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.status-value {
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
}

.player-card-right {
    text-align: center;
}

.player-rank-display {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-yellow);
    padding: 1.5rem;
    min-width: 150px;
}

.rank-label-small {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.rank-position {
    font-size: 3rem;
    color: var(--accent-yellow);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.5);
}

.rank-total {
    font-size: 1rem;
    color: #999;
    margin-top: 0.3rem;
}

/* Grid des statistiques tactiques */
.stats-tactical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-tactical-card {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.8);
}

.stat-tactical-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(255, 186, 0, 0.3),
        0 10px 40px rgba(255, 186, 0, 0.2);
}

.stat-tactical-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 2px solid rgba(255, 186, 0, 0.3);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    font-size: 1.5rem;
    filter: grayscale(1) brightness(1.5);
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-tactical-body {
    padding: 2rem 1.5rem;
}

.stat-main-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.3);
}

/* Breakdown list pour XP */
.stat-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 1rem;
    align-items: center;
}

.breakdown-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
}

.breakdown-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-dark));
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

.breakdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-align: right;
}

/* Indicateur de rang */
.stat-rank-indicator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rank-badge-small {
    background: rgba(255, 186, 0, 0.2);
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-ring {
    height: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.progress-ring-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-dark));
    box-shadow: 0 0 15px rgba(255, 186, 0, 0.6);
}

/* Sub-stats grid */
.stat-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sub-stat-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sub-stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.sub-stat-value {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 900;
}

/* Time breakdown */
.time-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.time-period {
    background: rgba(0, 0, 0, 0.6);
    border-left: 3px solid var(--accent-yellow);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.period-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.period-value {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
}

.player-info h3 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.player-team {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.player-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-yellow);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 186, 0, 0.2);
}

.stat-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--accent-yellow);
    padding-bottom: 1rem;
}

.stat-header h4 {
    color: var(--accent-yellow);
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-content {
    color: var(--text-white);
}

.team-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-name.zenith {
    color: var(--accent-yellow);
}

.team-name.ogv {
    color: var(--red-accent);
}

.victory-rate {
    color: var(--green-accent);
    font-weight: 600;
}

.xp-display, .supply-display, .radio-display, .time-display {
    font-size: 2rem;
    color: var(--accent-yellow);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.xp-breakdown, .supply-chart, .radio-details, .time-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.xp-item, .supply-item, .radio-item, .time-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.supply-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 186, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.supply-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.supply-rank {
    text-align: center;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.ranking-display {
    text-align: center;
}

.rank-number {
    font-size: 3rem;
    color: var(--accent-yellow);
    font-weight: 900;
    margin-bottom: 1rem;
}

.rank-details {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rank-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 186, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.rank-bar {
    height: 100%;
    background: var(--accent-yellow);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Section radios détaillées */
.radios-detailed-section {
    margin-top: 3rem;
}

.radios-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.radio-detailed-item {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #333;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.radio-detailed-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-yellow);
}

.radio-detailed-item:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 186, 0, 0.2);
}

.radio-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 186, 0, 0.2);
}

.radio-detailed-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
}

.radio-detailed-team {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.radio-detailed-team.zenith {
    background: rgba(255, 186, 0, 0.2);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.radio-detailed-team.ogv {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid var(--red-accent);
    color: var(--red-accent);
}

.radio-detailed-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.radio-stat {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.radio-stat-value {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
}

/* Panneau d'erreur - Style Battlefield */
.no-results-tactical {
    background: #050505;
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.error-panel {
    max-width: 600px;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid var(--red-accent);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 
        0 0 0 1px rgba(255, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        0 10px 50px rgba(255, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.error-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
    display: block;
}

.error-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    display: block;
    width: 100%;
}

.error-message {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 3rem;
    line-height: 1.6;
    display: block;
    width: 100%;
}

.retry-tactical-btn {
    background: linear-gradient(135deg, var(--red-accent), #cc0000);
    border: none;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.retry-tactical-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.retry-tactical-btn:active {
    transform: translateY(-1px);
}

/* No Results Old (masquer) */
.no-results {
    padding: 4rem 0;
    background: var(--primary-black);
    text-align: center;
    display: none;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--red-accent);
    border-radius: 10px;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--red-accent));
}

.no-results-content h3 {
    color: var(--red-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.retry-button {
    background: var(--red-accent);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.retry-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Animations */
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 186, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 186, 0, 0.8)); }
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 186, 0, 0.8); }
    50% { text-shadow: 0 0 30px rgba(255, 186, 0, 1); }
}

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

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes unitPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes timelineProgress {
    0% { width: 0%; }
    100% { width: 35%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-brand {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        flex-wrap: nowrap;
        gap: 2rem;
        padding: 0;
        justify-content: center;
    }
    
    .team-member {
        flex: 0 0 250px;
        width: 250px;
    }

    .recap-grid {
        grid-template-columns: 1fr;
    }

    .replay-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .radar-side {
        flex: 1;
        max-width: 100%;
    }

    .recap-side {
        flex: 1;
        max-width: 100%;
    }

    .recap-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .parallax-banner {
        height: 25vh;
        width: 100%;
    }

    .ranking-header,
    .ranking-item {
        grid-template-columns: 60px 1fr 80px 60px 80px;
        font-size: 0.8rem;
    }

    .player-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .search-input-container {
        flex-direction: column;
    }

    .search-input {
        font-size: 1rem;
    }

    .search-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-title, .stats-title {
        font-size: 2rem;
    }

    .ranking-header,
    .ranking-item {
        grid-template-columns: 50px 1fr 60px 50px 60px;
        font-size: 0.7rem;
        padding: 1rem;
    }

    .radar-container {
        height: 400px;
    }

    .replay-viewer {
        padding: 1rem;
    }

    .parallax-banner {
        height: 20vh;
        width: 100%;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - NOUVELLES SECTIONS
   ============================================================================ */

/* Tablettes et petits écrans PC (1024px et moins) */
@media (max-width: 1024px) {
    /* Home Page - Features */
    .section-title-tactical {
        font-size: 2rem;
    }

    .features-battlefield-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-battlefield-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* CTA Section */
    .cta-epic-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .cta-epic-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .cta-epic-button {
        font-size: 1.1rem;
        padding: 1.3rem 3rem;
    }

    /* Game Page */
    .game-title {
        font-size: 2.5rem;
    }

    .game-header-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .battlefield-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stats Page */
    .stats-tactical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .radios-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Final Ranking Table */
    .ranking-table-header,
    .ranking-row {
        grid-template-columns: 60px 1.5fr 100px 80px 80px 80px;
    }
}

/* Tablettes portrait (768px et moins) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        height: 50vh;
    }

    .hero-brand {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    /* Game Hero */
    .game-hero {
        height: 30vh;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-subtitle {
        font-size: 1rem;
    }

    /* Home - Features */
    .section-title-tactical {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .section-title-tactical::before,
    .section-title-tactical::after {
        font-size: 1.5rem;
        left: -40px;
        right: -40px;
    }

    .features-battlefield-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-title {
        font-size: 1.2rem;
    }

    /* Home - Team */
    .team-battlefield-grid {
        grid-template-columns: 1fr;
    }

    .member-name-display {
        font-size: 1.8rem;
    }
    
    .member-name-display.long-name {
        font-size: 1.3rem;
    }

    /* CTA Section */
    .cta-epic {
        padding: 5rem 0;
    }

    .cta-epic-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .cta-epic-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .cta-epic-button {
        font-size: 1rem;
        padding: 1.2rem 2.5rem;
        gap: 1rem;
    }

    /* Game Page - Header */
    .game-header-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-name,
    .map-name,
    .duration-time {
        font-size: 1.2rem;
    }

    /* Game Page - Radar */
    .radar-title {
        font-size: 1.2rem;
    }

    .radar-map-container {
        height: 400px;
    }

    /* Game Page - Stats */
    .quick-stats-grid {
        grid-template-columns: 1fr;
    }

    .radios-list {
        max-height: 300px;
    }

    /* Game Page - Final Ranking */
    .ranking-table-header,
    .ranking-row {
        grid-template-columns: 50px 1.5fr 80px 70px 70px 70px;
        font-size: 0.9rem;
        padding: 0.8rem 0.5rem;
    }

    .rank-medal {
        font-size: 1.2rem;
    }

    /* Stats Page */
    .player-callsign {
        font-size: 2.5rem;
    }

    .stats-tactical-grid {
        grid-template-columns: 1fr;
    }

    .radios-detailed-grid {
        grid-template-columns: 1fr;
    }

    /* Parallax Banner */
    .parallax-banner {
        height: 25vh;
    }
}

/* Mobiles (640px et moins) */
@media (max-width: 640px) {
    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero {
        height: 40vh;
    }

    .hero-brand {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    /* Game Hero */
    .game-hero {
        height: 25vh;
    }

    .game-title {
        font-size: 1.8rem;
    }

    .game-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    /* Sections */
    .section-title-tactical {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .section-title-tactical::before,
    .section-title-tactical::after {
        font-size: 1.2rem;
        left: -30px;
        right: -30px;
    }

    .section-header-main {
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }

    /* Features */
    .feature-battlefield-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-battlefield {
        font-size: 3rem;
    }

    .feature-card-title {
        font-size: 1.1rem;
    }

    .feature-card-desc {
        font-size: 0.9rem;
    }

    /* Team */
    .member-battlefield-card {
        padding: 2rem 1.5rem;
    }

    .member-name-display {
        font-size: 1.5rem;
    }
    
    .member-name-display.long-name {
        font-size: 1.1rem;
    }

    .member-rank-badge {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    /* CTA */
    .cta-epic {
        padding: 4rem 0;
    }

    .cta-epic-badge {
        font-size: 0.75rem;
        letter-spacing: 2px;
        padding: 0.6rem 1.5rem;
    }

    .cta-epic-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .cta-epic-divider {
        width: 150px;
    }

    .cta-epic-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .cta-epic-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 2px;
        gap: 0.8rem;
    }

    .cta-epic-btn-arrow {
        font-size: 1.5rem;
    }

    /* Game Page - Header Bar */
    .game-header-bar {
        padding: 1rem 0;
    }

    .mission-label,
    .map-label,
    .duration-label {
        font-size: 0.7rem;
    }

    .mission-name,
    .map-name,
    .duration-time {
        font-size: 1rem;
    }

    .winner-info-bar {
        padding: 0.8rem 0;
    }

    /* Game Page - Radar */
    .radar-title {
        font-size: 1rem;
    }

    .radar-map-container {
        height: 300px;
    }

    .playback-controls {
        padding: 1rem;
        gap: 1rem;
    }

    .playback-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Game Page - Stats Panel */
    .quick-stat-card {
        padding: 1rem;
    }

    .quick-stat-icon {
        font-size: 2rem;
    }

    .quick-stat-label {
        font-size: 0.75rem;
    }

    .quick-stat-amount {
        font-size: 1.8rem;
    }

    /* Game Page - Radios */
    .radios-section {
        padding: 1.5rem;
    }

    .section-header-tactical {
        font-size: 1rem;
    }

    .radio-item {
        padding: 1rem;
    }

    /* Game Page - Final Ranking */
    .ranking-header-title {
        font-size: 1.5rem;
    }

    .ranking-table-header,
    .ranking-row {
        grid-template-columns: 40px 1fr 60px 60px 60px;
        font-size: 0.75rem;
        padding: 0.6rem 0.3rem;
        gap: 0.3rem;
    }

    /* Cacher la colonne radios sur mobile pour gagner de l'espace */
    .radios-col-h,
    .radios-col {
        display: none;
    }

    .rank-medal {
        font-size: 1rem;
    }

    .rank-number {
        font-size: 1rem;
    }

    /* Stats Page - Search */
    .tactical-search-panel {
        padding: 1.5rem;
    }

    .search-panel-header {
        font-size: 1.2rem;
    }

    .tactical-input {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .tactical-search-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    /* Stats Page - Identity Card */
    .player-identity-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .player-card-left,
    .player-card-center,
    .player-card-right {
        width: 100%;
        text-align: center;
    }

    .player-callsign {
        font-size: 2rem;
    }

    .faction-badge {
        font-size: 0.8rem;
    }

    .player-status-bar {
        flex-direction: column;
        gap: 0.8rem;
    }

    .rank-position {
        font-size: 2.5rem;
    }

    /* Stats Page - Tactical Grid */
    .stat-tactical-card {
        padding: 1.5rem;
    }

    .stat-title {
        font-size: 1rem;
    }

    .stat-main-value {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Parallax Banner */
    .parallax-banner {
        height: 20vh;
        border-width: 0;
    }
}

/* Petits mobiles (480px et moins) */
@media (max-width: 480px) {
    /* Navigation ultra compacte */
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .nav-logo {
        gap: 0.3rem;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.65rem;
        padding: 0.4rem 0.5rem;
        letter-spacing: 1px;
    }

    .nav-cta {
        display: none; /* Cacher le bouton REJOINDRE sur très petit écran */
    }

    /* Hero */
    .hero {
        height: 50vh; /* Augmenté pour voir le titre */
        min-height: 400px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-brand {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    /* Game Hero */
    .game-hero {
        height: 20vh;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .game-subtitle {
        font-size: 0.8rem;
    }

    /* Sections */
    .section-title-tactical {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .section-title-tactical::before,
    .section-title-tactical::after {
        display: none; /* Caché sur très petit écran */
    }

    .section-line {
        max-width: 40px;
    }

    /* Features */
    .feature-battlefield-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon-battlefield {
        font-size: 2.5rem;
    }

    .feature-card-title {
        font-size: 1rem;
    }

    .feature-card-desc {
        font-size: 0.85rem;
    }

    /* Team */
    .member-battlefield-card {
        padding: 1.5rem 1rem;
    }

    .member-name-display {
        font-size: 1.3rem;
    }
    
    .member-name-display.long-name {
        font-size: 1rem;
    }

    .member-rank-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .member-role-desc {
        font-size: 0.75rem;
    }

    /* CTA */
    .cta-epic {
        padding: 3rem 0;
    }

    .cta-epic-badge {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
        border-left-width: 4px;
        border-right-width: 4px;
    }

    .cta-epic-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .cta-epic-divider {
        width: 100px;
        height: 2px;
    }

    .cta-epic-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .cta-epic-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
        gap: 0.6rem;
    }

    .cta-epic-btn-arrow {
        font-size: 1.3rem;
    }

    /* Game Page */
    .mission-name,
    .map-name,
    .duration-time {
        font-size: 0.9rem;
    }

    .winner-team {
        font-size: 1.5rem;
    }

    .quick-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .quick-stat-card {
        padding: 0.8rem;
    }

    .quick-stat-icon {
        font-size: 1.8rem;
    }

    .quick-stat-label {
        font-size: 0.7rem;
    }

    .quick-stat-amount {
        font-size: 1.5rem;
    }

    /* Ranking Table */
    .ranking-header-title {
        font-size: 1.3rem;
    }

    .ranking-table-header,
    .ranking-row {
        grid-template-columns: 35px 1fr 50px 50px;
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
    }

    /* Cacher supply sur petit mobile */
    .supply-col-h,
    .supply-col {
        display: none;
    }

    .rank-medal {
        font-size: 0.9rem;
    }

    /* Stats Page */
    .player-callsign {
        font-size: 1.8rem;
    }

    .search-input-tactical {
        flex-direction: column;
        gap: 0.8rem;
    }

    .tactical-input {
        padding: 0.8rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .tactical-search-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    /* Radar Offline Overlay - Responsive */
    .radar-offline-overlay {
        padding: 1rem;
    }

    .offline-icon {
        font-size: 3rem;
    }

    .offline-title {
        font-size: 2rem;
        letter-spacing: 3px;
        text-shadow: 0 0 20px rgba(255, 186, 0, 0.7);
    }

    .offline-subtitle {
        font-size: 0.8rem;
        padding: 0 1rem;
        text-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
    }

    /* Parallax Banner */
    .parallax-banner {
        height: 18vh;
        border-width: 0;
    }

    /* Footer */
    .footer-logo {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Très petits mobiles (400px et moins) */
@media (max-width: 400px) {
    .logo-img {
        width: 25px;
        height: 25px;
    }

    .logo-text {
        font-size: 0.65rem;
    }

    .nav-link {
        font-size: 0.6rem;
        padding: 0.4rem 0.4rem;
    }

    .hero {
        height: 55vh;
        min-height: 450px;
    }

    .hero-brand {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .game-title {
        font-size: 1.3rem;
    }

    .section-title-tactical {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .cta-epic-title {
        font-size: 1.5rem;
    }

    .member-name-display {
        font-size: 1.2rem;
    }
    
    .member-name-display.long-name {
        font-size: 0.9rem;
    }

    .player-callsign {
        font-size: 1.6rem;
    }

    /* Radar Offline - Extra petit */
    .offline-icon {
        font-size: 2.5rem;
    }

    .offline-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
        text-shadow: 0 0 15px rgba(255, 186, 0, 0.6);
    }

    .offline-subtitle {
        font-size: 0.75rem;
        padding: 0 0.5rem;
        text-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
    }

    .offline-status {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }

    .parallax-banner {
        height: 15vh;
    }
}

/* ============================================================================
   ADMIN PANEL STYLES
   ============================================================================ */

/* Modal de connexion admin */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.admin-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.admin-modal-content {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 3px solid var(--accent-yellow);
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 0 50px rgba(255, 186, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-modal-header {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 2px solid var(--accent-yellow);
    padding: 2rem;
    text-align: center;
}

.admin-lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.admin-modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 186, 0, 0.5);
}

.admin-modal-subtitle {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-modal-body {
    padding: 2rem;
}

.admin-input-group {
    margin-bottom: 1.5rem;
}

.admin-label {
    display: block;
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.admin-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    color: var(--accent-yellow);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    letter-spacing: 3px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.admin-input::placeholder {
    color: #555;
    letter-spacing: 1px;
}

.admin-input:focus {
    border-color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 
        0 0 20px rgba(255, 186, 0, 0.3),
        inset 0 0 10px rgba(255, 186, 0, 0.1);
}

.admin-input-error {
    border-color: #ff0000 !important;
    animation: shake 0.5s ease;
}

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

.admin-error-message {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    min-height: 1.5rem;
}

.admin-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.admin-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border: none;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 186, 0, 0.5);
}

.admin-btn-secondary {
    background: linear-gradient(135deg, #333, #222);
    color: #fff;
}

.admin-btn-secondary:hover {
    background: linear-gradient(135deg, #444, #333);
}

.admin-btn-icon {
    font-size: 1.2rem;
}

.admin-modal-footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 1rem;
    text-align: center;
}

.admin-warning {
    color: #ff8800;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Toast de succès */
.admin-success-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10001;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.admin-toast-icon {
    font-size: 2rem;
}

.admin-toast-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.admin-toast-message {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lien admin dans la navbar - Réinitialiser tous les styles spéciaux */
.nav-menu .admin-nav-link {
    background: none !important;
    color: var(--text-white) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-menu .admin-nav-link:hover {
    color: var(--accent-yellow) !important;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
    transform: none !important;
}

.nav-menu .admin-nav-link.active {
    background: none !important;
    color: var(--accent-yellow) !important;
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

/* Le ::after du .nav-link.active s'appliquera automatiquement */

/* Hero Admin */
.admin-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.admin-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.2);
    z-index: -2;
}

.admin-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.admin-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 4rem;
}

.admin-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    color: #ff0000;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.admin-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 186, 0, 0.8);
    margin: 0;
    text-align: center;
}

.admin-subtitle {
    color: #999;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Dashboard Admin */
.admin-dashboard {
    padding: 4rem 0;
    background: #050505;
}

.admin-section {
    background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
    border: 2px solid #222;
    border-left: 4px solid var(--accent-yellow);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 20px rgba(255, 186, 0, 0.2);
    transform: translateY(-5px);
}

.admin-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.admin-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.admin-stat-label {
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Tables Admin */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.8);
}

.admin-table thead {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 2px solid var(--accent-yellow);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    color: var(--accent-yellow);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #222;
    color: #bbb;
}

.admin-table td code {
    background: rgba(255, 186, 0, 0.1);
    border: 1px solid rgba(255, 186, 0, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--accent-yellow);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}

.admin-table tbody tr {
    transition: all 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(255, 186, 0, 0.05);
}

.admin-table-empty {
    text-align: center;
    color: #666;
    padding: 3rem !important;
    font-style: italic;
}

.admin-table-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    text-align: center;
}

.admin-btn-icon {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.admin-btn-icon:hover {
    border-color: var(--accent-yellow);
    background: rgba(255, 186, 0, 0.1);
    transform: scale(1.1);
}

.admin-btn-warn {
    border-color: #ff8800;
}

.admin-btn-warn:hover {
    border-color: #ff8800;
    background: rgba(255, 136, 0, 0.1);
}

.admin-btn-kick {
    border-color: #ff4400;
}

.admin-btn-kick:hover {
    border-color: #ff4400;
    background: rgba(255, 68, 0, 0.1);
}

.admin-btn-ban {
    border-color: #ff0000;
}

.admin-btn-ban:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.admin-btn-success {
    border-color: #00ff00;
}

.admin-btn-success:hover {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

/* Badges */
.admin-badge-zenith {
    background: rgba(255, 186, 0, 0.2);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-badge-ogv {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Search */
.admin-search {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    color: #fff;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.admin-search:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 186, 0, 0.3);
}

.admin-select {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    color: #fff;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-select:focus {
    border-color: var(--accent-yellow);
}

.admin-btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
}

.admin-btn-danger {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.admin-btn-danger:hover {
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

.admin-btn-warning {
    background: linear-gradient(135deg, #ff8800, #cc6600);
}

.admin-btn-warning:hover {
    box-shadow: 0 5px 20px rgba(255, 136, 0, 0.5);
}

.admin-btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
}

/* Tools Grid */
.admin-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-tool-card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));
    border: 2px solid #333;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.admin-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), #ff6b00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-tool-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 186, 0, 0.3);
    transform: translateY(-5px);
}

.admin-tool-card:hover::before {
    opacity: 1;
}

.admin-tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
    text-shadow: 0 0 10px rgba(255, 186, 0, 0.5);
}

.admin-tool-title {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.admin-tool-desc {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HeatMap */
.admin-heatmap-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    background: #000;
    border: 2px solid #333;
}

.heatmap-base-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.5);
}

.heatmap-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heatmap-legend {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--accent-yellow);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heatmap-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.85rem;
}

.heatmap-color {
    width: 30px;
    height: 15px;
    border: 1px solid #fff;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .admin-tool-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    
    .admin-tool-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .admin-tool-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .admin-tool-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .admin-modal-actions {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.7rem 0.5rem;
    }
}

/* ============================================================================
   STATS CARDS MILITAIRES - DESIGN AGRESSIF ET GUERRIER
   ============================================================================ */

.stats-tactical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-tactical-card {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-tactical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b00, #ffd700);
    border-radius: 8px 8px 0 0;
}

.stat-tactical-card:hover {
    border-color: #ffd700;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-tactical-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #333;
}

.stat-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-tactical-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-main-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4);
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

/* Styles spécifiques pour les cartes XP et Supply */
.stat-military-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.military-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.military-stat-row:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.military-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.military-value {
    font-size: 1rem;
    font-weight: 900;
    color: #ffd700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Styles pour les cartes Radios et Temps */
.stat-sub-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.sub-stat-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.2s ease;
}

.sub-stat-item:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.sub-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.sub-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffd700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.time-breakdown-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.time-period {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.2s ease;
}

.time-period:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.period-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.period-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffd700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Couleurs spécifiques par carte */
.stat-card-xp::before {
    background: linear-gradient(90deg, #ffd700, #ffd700, #ffd700);
}

.stat-card-supply::before {
    background: linear-gradient(90deg, #ffd700, #ffd700, #ffd700);
}

.stat-card-radios::before {
    background: linear-gradient(90deg, #ffd700, #ffd700, #ffd700);
}

.stat-card-time::before {
    background: linear-gradient(90deg, #ffd700, #ffd700, #ffd700);
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-tactical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-tactical-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-tactical-card {
        min-height: 250px;
    }
    
    .stat-main-value {
        font-size: 2rem;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - STATS CARDS
   ============================================================================ */

.stats-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.8));
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.stats-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.stats-section-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.global-stat {
    border-left: 4px solid #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.current-game-stat {
    border-left: 4px solid #00ff88;
    background: rgba(0, 255, 136, 0.05);
}

.global-stat .stat-label {
    color: #ffd700;
}

.current-game-stat .stat-label {
    color: #00ff88;
}

/* ============================================================================
   SÉLECTION DE PARTIES - RADAR TACTIQUE
   ============================================================================ */

/* Game Header */
.game-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
}

/* Game Selection - Nouvelle position */
.game-selection-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    display: block !important; /* Toujours visible */
}

.selection-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Game Selection - Ancienne position (gardée pour compatibilité) */
.game-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.selection-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.selection-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.game-selector {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-yellow);
    border-radius: 6px;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-selector:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border-color: #ffed4e;
}

.game-selector option {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem;
}

.load-game-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-yellow), #ffed4e);
    border: none;
    border-radius: 6px;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.load-game-btn:hover {
    background: linear-gradient(135deg, #ffed4e, var(--accent-yellow));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.load-game-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.load-game-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Game Info */
.game-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .game-header-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .selection-controls {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .game-selector {
        width: 100%;
    }
    
    .game-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-selection-section {
        margin: 0.5rem 0;
        padding: 0.75rem;
    }
    
    .selection-container {
        gap: 0.75rem;
    }
}
