/* ==================== VARIABLES ET COULEURS ==================== */
:root {
    --primary-blue: #0066ff;
    --bright-blue: #00d4ff;
    --light-blue: #4da8ff;
    --dark-blue: #001a4d;
    
    --primary-gold: #ffaa00;
    --bright-gold: #ffdd00;
    --dark-gold: #cc8800;
    
    --white: #ffffff;
    --light-gray: #1a1a2e;
    --medium-gray: #0f3460;
    --dark-gray: #16213e;
    --darker-gray: #0f0f23;
    
    --accent-red: #ff0066;
    --accent-green: #00ff66;
    --neon-cyan: #00ffff;
    --neon-purple: #ff00ff;
    
    --transition: all 0.3s ease;
    --shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    --glow: 0 0 20px rgba(255, 170, 0, 0.5);
}

/* ==================== RÉINITIALISATION ET BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 50%, var(--dark-blue) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(90deg, var(--darker-gray) 0%, var(--dark-gray) 50%, var(--dark-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 170, 0, 0.2);
    border-bottom: 3px solid var(--primary-gold);
    backdrop-filter: blur(10px);
    background-clip: padding-box;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-brand h1 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 170, 0, 0.6), 0 0 40px rgba(255, 170, 0, 0.3);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 170, 0, 0.6), 0 0 40px rgba(255, 170, 0, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 170, 0, 0.8), 0 0 60px rgba(255, 170, 0, 0.5); }
}

.nav-brand .subtitle {
    color: var(--bright-gold);
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--neon-cyan));
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--darker-gray) 0%, var(--dark-blue) 50%, var(--darker-gray) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--bright-gold) 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(255, 170, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 170, 0, 0.6)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BOUTONS ==================== */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--bright-gold) 100%);
    color: var(--dark-blue);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 170, 0, 0.7), 0 0 60px rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), inset 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.section-subtitle {
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* ==================== ÉQUIPES SECTION ==================== */
.equipes {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--darker-gray) 100%);
}

.equipes .section-title {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.equipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(30, 52, 96, 0.8) 0%, rgba(15, 52, 96, 0.8) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 102, 255, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5), 0 0 80px rgba(255, 170, 0, 0.3), inset 0 0 20px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.7);
}

.team-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.team-header.bleu {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.3);
}

.team-header.or {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    box-shadow: inset 0 0 30px rgba(255, 170, 0, 0.3);
}

.team-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.team-badge {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 600;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.team-body {
    padding: 2rem;
}

.player-info,
.coach-info {
    margin-bottom: 1rem;
}

.player-info h4,
.coach-info h4 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.chess-id {
    background: rgba(0, 102, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    border-left: 3px solid var(--neon-cyan);
    color: var(--white);
}

.player-status {
    color: var(--bright-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.coach-info p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.team-card hr {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.team-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.stat {
    text-align: center;
    transition: var(--transition);
}

.stat:hover {
    transform: scale(1.1);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-info-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-left: 5px solid var(--neon-cyan);
    border-right: 2px solid var(--primary-gold);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.team-info-box h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.team-info-box p {
    color: var(--white);
    line-height: 1.8;
}

/* ==================== CALENDRIER SECTION ==================== */
.calendrier {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    color: var(--white);
    border-top: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--primary-gold);
}

.calendrier .section-title,
.classements .section-title {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
}

.calendrier .section-subtitle,
.classements .section-subtitle {
    color: var(--white);
}

.toornament-container {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 102, 255, 0.1);
}

.toornament-container iframe {
    border-radius: 8px;
    background: var(--light-gray);
    border: 1px solid var(--bright-blue);
}

.calendar-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 170, 0, 0.1);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.2);
}

.calendar-info p {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.external-link {
    color: var(--bright-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.4);
}

.external-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    text-decoration: underline;
}

/* ==================== CLASSEMENTS SECTION ==================== */
.classements {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    color: var(--white);
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--neon-cyan);
}

.rankings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ranking-section {
    background: rgba(0, 102, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--bright-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 15px rgba(0, 102, 255, 0.1);
    backdrop-filter: blur(5px);
}

.ranking-title {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.ranking-card {
    background: linear-gradient(135deg, rgba(30, 52, 96, 0.8) 0%, rgba(15, 30, 60, 0.8) 100%);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table thead {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--bright-blue) 100%);
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ranking-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--white);
    font-size: 0.95rem;
}

.ranking-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.1);
}

.ranking-table tr.highlight {
    background: linear-gradient(90deg, rgba(255, 170, 0, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    font-weight: 600;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.15);
}

.ranking-note {
    padding: 1rem;
    color: var(--white);
    text-align: center;
    font-style: italic;
}

.classements-note {
    padding: 1.5rem;
    background: rgba(255, 170, 0, 0.15);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.2);
}

.classements-note p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--darker-gray) 100%);
    border-top: 2px solid var(--neon-cyan);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(30, 52, 96, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    border-top: 4px solid var(--neon-cyan);
    border-left: 2px solid var(--primary-gold);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 102, 255, 0.1);
    border-top-color: var(--primary-gold);
    border-left-color: var(--neon-cyan);
}

.contact-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.contact-card p {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-detail {
    background: rgba(0, 102, 255, 0.2);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--white);
    border-left: 3px solid var(--bright-gold);
}

.contact-form {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(30, 52, 96, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    border: 2px solid var(--neon-cyan);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(15, 30, 60, 0.8);
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 102, 255, 0.1);
    background: rgba(15, 30, 60, 0.95);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-gold);
    box-shadow: inset 0 0 50px rgba(0, 102, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
}

.footer-section p {
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.footer-section a:hover {
    color: var(--bright-gold);
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--white);
    font-size: 0.9rem;
}

.footer-bottom p {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .equipes-grid,
    .rankings-container {
        grid-template-columns: 1fr;
    }

    .team-card {
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .team-header h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-brand {
        gap: 0.1rem;
    }

    .nav-brand h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-brand .subtitle {
        font-size: 0.65rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glitchEffect {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    25% {
        text-shadow: -2px 0 10px rgba(255, 0, 100, 0.5), 2px 0 10px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
    }
    75% {
        text-shadow: 2px 0 10px rgba(0, 255, 255, 0.5), -2px 0 10px rgba(255, 170, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
}

@keyframes neonBlink {
    0%, 49% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
    }
    50%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.4), 0 0 20px rgba(0, 255, 255, 0.2);
    }
}

.team-card {
    animation: fadeIn 0.6s ease-out;
}

.ranking-section {
    animation: fadeIn 0.6s ease-out;
}

/* ==================== PRESS RELEASE STYLES ==================== */
.press-release {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(255, 170, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    margin: 1.5rem 0;
}

.press-release h3 {
    color: var(--bright-gold);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
}

.press-release p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.press-release em {
    color: var(--bright-blue);
    font-style: italic;
    display: block;
    margin: 1rem 0 0.5rem 1.5rem;
    border-left: 3px solid var(--primary-blue);
    padding-left: 1rem;
}

.press-objectives {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0 0 0 1.5rem;
}

.press-objectives li {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.8rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.learn-more {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--bright-gold) 100%);
    color: var(--dark-gray) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: none;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
    cursor: pointer;
    border: none;
}

.learn-more:hover {
    box-shadow: 0 0 40px rgba(255, 170, 0, 0.6);
    transform: translateY(-2px);
}

.news-read {
    cursor: pointer;
}

/* ==================== PAGE CRÉDITS ==================== */
.credits-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-gray) 50%, var(--dark-gray) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.credits-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
}

.credits-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 170, 0, 0.8), 0 0 60px rgba(255, 170, 0, 0.4);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.credits-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--bright-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.credits-hero .hero-description {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

.credits-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
}

.credits-category {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 170, 0, 0.6);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.5));
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.credits-grid.single-column {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.credit-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 102, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--bright-blue));
    opacity: 0;
    transition: var(--transition);
}

.credit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 50px rgba(255, 170, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
}

.credit-card:hover::before {
    opacity: 1;
}

.credit-card.coach-highlight {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    box-shadow: 0 5px 30px rgba(255, 170, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.2);
    border-width: 3px;
}

.credit-card.coach-highlight:hover {
    box-shadow: 0 15px 50px rgba(255, 170, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.4);
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
}

.credit-card.coach-highlight .card-header {
    border-bottom: 2px solid var(--primary-gold);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.credit-card.coach-highlight .card-header h3 {
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.5);
}

.role {
    color: var(--bright-blue);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-card.coach-highlight .role {
    color: var(--bright-gold);
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.description {
    color: var(--white);
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.2), rgba(255, 170, 0, 0.2));
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    color: var(--bright-blue);
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.credit-card.coach-highlight .contact-badge {
    border-left-color: var(--primary-gold);
    color: var(--bright-gold);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Credits Footer */
.credits-footer {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin: 80px 0 40px 0;
    box-shadow: 0 10px 40px rgba(255, 170, 0, 0.2);
}

.footer-content h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 170, 0, 0.6);
}

.footer-content > p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(255, 170, 0, 0.1));
    border-radius: 10px;
    border: 1px solid var(--primary-blue);
    transition: var(--transition);
}

.stat:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-gold), var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bright-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== ACCESSIBILITÉ ==================== */
:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
