/* ===========================
   RESET & VARIABLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --primary-color: #7c3aed;
    --secondary-color: #2563eb;
    --accent-color: #ec4899;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;

    /* Effets néon */
    --glow-primary: 0 0 20px rgba(124, 58, 237, 0.5),
                     0 0 40px rgba(124, 58, 237, 0.3),
                     0 0 60px rgba(124, 58, 237, 0.2);
    --glow-accent: 0 0 20px rgba(236, 72, 153, 0.5),
                    0 0 40px rgba(236, 72, 153, 0.3);

    /* Typographie */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

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

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

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.logo-highlight {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    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(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    box-shadow: var(--glow-primary);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.glow-text {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: var(--glow-accent);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.7),
                0 0 60px rgba(124, 58, 237, 0.5);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    width: 3px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 0.7;
}

/* ===========================
   COMING SOON BANNER
   =========================== */
.coming-soon-banner {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 100%
    );
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: var(--glow-primary);
    animation: pulse-glow 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: var(--glow-accent);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.coming-soon-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
}

.coming-soon-tagline strong {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2em;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===========================
   SECTIONS COMMUNES
   =========================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: linear-gradient(
        180deg,
        var(--bg-dark) 0%,
        var(--bg-darker) 50%,
        var(--bg-dark) 100%
    );
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
    transition: box-shadow 0.3s ease;
}

.about-img:hover {
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
}

.reglement-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 1.5rem 0;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(236, 72, 153, 0.08) 100%
    );
    border: 1px solid rgba(124, 58, 237, 0.45);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reglement-banner:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.reglement-banner-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.12),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.reglement-banner-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 10px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.5));
    transition: filter 0.3s ease;
}

.reglement-banner:hover .reglement-banner-icon {
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.8));
}

.reglement-banner-icon svg {
    width: 22px;
    height: 22px;
}

.reglement-banner-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.reglement-banner-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.reglement-banner-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.reglement-banner-arrow {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.reglement-banner:hover .reglement-banner-arrow {
    transform: translateX(5px);
}

.placeholder-box {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(124, 58, 237, 0.1);
    border: 2px dashed rgba(124, 58, 237, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ===========================
   ROSTER SECTION
   =========================== */
.roster-section {
    background: var(--bg-darker);
}

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

.team-card {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(10, 10, 15, 0.9) 100%
    );
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-primary);
}

.team-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-logo {
    margin: 0 auto;
}

.placeholder-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.2);
    border: 2px dashed rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.mystery-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

.team-players {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Pyramide : 1er joueur centré en haut, 2 joueurs en bas */
.team-players .player-card:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 0.625rem);
}

.player-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 160px;
    height: 100%;
}

.player-card:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
    flex-shrink: 0;
}

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

.player-info {
    text-align: center;
    width: 100%;
}

.player-pseudo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.player-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Joueurs mystère */
.player-card.mystery {
    cursor: default;
    opacity: 0.7;
}

.player-card.mystery:hover {
    transform: none;
    background: rgba(10, 10, 15, 0.6);
    box-shadow: none;
}

.mystery-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    border: 2px dashed rgba(124, 58, 237, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mystery-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    line-height: 1.3;
}

.team-teaser {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
}

/* ===========================
   PLAYER MODAL
   =========================== */
.player-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.player-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.2) 0%,
        rgba(10, 10, 15, 0.95) 50%
    );
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
    animation: scaleIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(124, 58, 237, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.modal-avatar {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

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

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-pseudo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
    letter-spacing: 2px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.detail-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.detail-value ul {
    list-style: none;
    padding-left: 0;
}

.detail-value ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.detail-value ul li:last-child {
    border-bottom: none;
}

.detail-value ul li::before {
    content: '▸ ';
    color: var(--primary-color);
    font-weight: bold;
}

.detail-item.signature blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-color);
    padding: 1rem;
    border-left: 3px solid var(--accent-color);
    background: rgba(236, 72, 153, 0.1);
    border-radius: 5px;
}

/* ===========================
   LIVE / SOCIAL SECTION
   =========================== */
.live-section {
    background: var(--bg-dark);
}

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

.social-card {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(10, 10, 15, 0.8) 100%
    );
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-primary);
}

.social-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.social-card.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.5);
}

.social-card.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.5);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-card.youtube .social-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.social-card.twitch .social-icon {
    background: rgba(145, 70, 255, 0.2);
    color: #9146ff;
}

.social-card.twitter .social-icon {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
}

.social-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */
.newsletter-section {
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.15) 0%,
        var(--bg-darker) 50%,
        rgba(236, 72, 153, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.newsletter-form {
    margin-bottom: 3rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transform: scale(1.02);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    padding: 1.25rem 3rem;
    white-space: nowrap;
    border-radius: 50px;
    font-size: 1.1rem;
}

.newsletter-social-proof {
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    display: inline-block;
    animation: pulse-glow 3s ease-in-out infinite;
}

.social-proof-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.subscriber-count {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
    text-shadow: var(--glow-primary);
}

.newsletter-cta-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5),
                0 0 40px rgba(236, 72, 153, 0.3);
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.7),
                0 0 60px rgba(236, 72, 153, 0.5);
    background: #f472b6;
}

/* ===========================
   FORMULAIRE COMPLET (Page Rejoindre)
   =========================== */
.join-section {
    background: linear-gradient(
        180deg,
        var(--bg-darker) 0%,
        var(--bg-dark) 100%
    );
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    box-shadow: var(--glow-primary);
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.radio-label:hover {
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--glow-primary);
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4));
}

.footer-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
    transform: scale(1.05);
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

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

.footer-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* ===========================
   STICKY BOTTOM BANNER
   =========================== */
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.97) 0%,
        rgba(124, 58, 237, 0.15) 100%
    );
    border-top: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(12px);
    padding: 1.25rem 2rem;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 30px rgba(124, 58, 237, 0.2);
}

.sticky-banner.is-visible {
    transform: translateY(0);
}

.sticky-banner.is-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.sticky-banner-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.08),
        transparent
    );
    animation: shimmer 4s infinite;
    pointer-events: none;
}

.sticky-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2.5rem;
}

.sticky-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.sticky-banner-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.sticky-banner-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.sticky-banner-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-banner-btn--newsletter {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(124, 58, 237, 0.6);
}

.sticky-banner-btn--newsletter:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.sticky-banner-btn--pro {
    background: var(--accent-color);
    color: var(--text-primary);
    border: 1px solid transparent;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
    animation: banner-btn-pulse 2.5s ease-in-out infinite;
}

.sticky-banner-btn--pro:hover {
    background: #f472b6;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
    transform: translateY(-2px);
    animation-play-state: paused;
}

@keyframes banner-btn-pulse {
    0%, 100% {
        background: #ec4899;
        box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    }
    50% {
        background: #be185d;
        box-shadow: 0 0 25px rgba(236, 72, 153, 0.7);
    }
}

.sticky-banner-close {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.sticky-banner-close:hover {
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .sticky-banner {
        padding: 1rem 1.25rem;
    }

    .sticky-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-right: 2rem;
    }

    .sticky-banner-title {
        font-size: 0.9rem;
        white-space: normal;
    }

    .sticky-banner-actions {
        width: 100%;
    }

    .sticky-banner-btn {
        flex: 1;
        text-align: center;
        padding: 0.65rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sticky-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(124, 58, 237, 0.5),
                     0 0 40px rgba(124, 58, 237, 0.3),
                     0 0 60px rgba(124, 58, 237, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.7),
                     0 0 60px rgba(124, 58, 237, 0.5),
                     0 0 90px rgba(124, 58, 237, 0.3);
    }
}

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

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

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .modal-body {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-avatar {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(124, 58, 237, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-cta {
        flex-direction: column;
    }

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

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

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-avatar {
        width: 200px;
        height: 200px;
    }

    .cta-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-cta-link .btn {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        white-space: normal !important;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

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

    .team-players {
        grid-template-columns: 1fr;
    }

    .team-players .player-card:first-child {
        grid-column: auto;
        justify-self: auto;
        width: 100%;
    }

    .cta-title {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .newsletter-cta-link .btn {
        font-size: 0.8rem;
        padding: 0.9rem 1.25rem;
        white-space: normal !important;
        line-height: 1.4;
        text-align: center;
        max-width: 100%;
        display: inline-block;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .newsletter-cta-link {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}
