/* =============================================
   FF ESPORT-CI — STYLE.CSS
   Design : Cyber / Militaire — Bleu Néon & Noir
   ============================================= */

/* ===== VARIABLES ===== */
:root {
    --primary: #00d4ff;
    --primary-dim: rgba(0, 212, 255, 0.15);
    --primary-glow: rgba(0, 212, 255, 0.4);
    --accent: #ff6b00;
    --accent-dim: rgba(255, 107, 0, 0.15);
    --success: #00ff88;
    --danger: #ff2244;
    --whatsapp: #25D366;

    --bg: #050810;
    --bg-2: #080d1a;
    --bg-card: rgba(10, 18, 35, 0.9);
    --bg-card-hover: rgba(15, 25, 48, 0.95);

    --border: rgba(0, 212, 255, 0.15);
    --border-strong: rgba(0, 212, 255, 0.35);

    --text: #e8edf5;
    --text-dim: #7a8aaa;
    --text-muted: #3a4a6a;

    --header-h: 68px;

    --font-display: 'Teko', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea {
    font-family: var(--font-body);
    outline: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== INTRO SCREEN ===== */
#introScreen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#introScreen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-inner {
    position: relative;
    text-align: center;
    padding: 40px;
}

.intro-grid-lines {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.intro-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.intro-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(0, 212, 255, 0.1);
    animation: introPulse 2s ease-in-out infinite;
}

@keyframes introPulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 50px var(--primary-glow), 0 0 100px rgba(0, 212, 255, 0.15); }
}

.intro-scan {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: introScan 2s linear infinite;
    border-radius: 50%;
}

@keyframes introScan {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.intro-codename {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 10vw, 80px);
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 10px;
}

.intro-title span {
    color: var(--primary);
}

.intro-sub {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intro-bar {
    width: 280px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin: 20px auto 12px;
    border-radius: 2px;
    overflow: hidden;
}

.intro-progress {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--primary);
}

.intro-loading {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(5, 8, 16, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    z-index: 1000;
    transition: border-color 0.3s;
}

.site-header.scrolled {
    border-bottom-color: var(--border-strong);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.header-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.nav-link:hover, .nav-link.active-link {
    color: var(--primary);
    background: var(--primary-dim);
    border-color: var(--border);
}

.nav-link i.fa-chevron-down {
    font-size: 9px;
    transition: transform 0.2s;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link { cursor: pointer; }

.dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.05);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-panel { display: block; }
.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dropdown-panel a:last-child { border-bottom: none; }

.dropdown-panel a:hover {
    color: var(--primary);
    background: var(--primary-dim);
    padding-left: 24px;
}

.dropdown-panel a i {
    width: 16px;
    color: var(--primary);
    opacity: 0.6;
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-left: auto;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border-strong);
    z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 212, 255, 0.03);
}

.mobile-menu-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary);
}

.mobile-menu-header span {
    font-family: var(--font-display);
    font-size: 16px;
    color: white;
    letter-spacing: 1px;
    flex: 1;
}

.mobile-menu-header button {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-menu-header button:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.mobile-nav {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.mobile-nav-item:hover {
    color: var(--primary);
    background: var(--primary-dim);
    border-color: var(--border);
}

.mobile-nav-item i { width: 18px; color: var(--primary); }

/* Accordion mobile */
.mobile-accordion { border-radius: 8px; overflow: hidden; }

.mobile-acc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-acc-title:hover, .mobile-accordion.open .mobile-acc-title {
    color: var(--primary);
    background: var(--primary-dim);
    border-color: var(--border);
}

.mobile-acc-title span { display: flex; align-items: center; gap: 12px; }
.mobile-acc-title span i { width: 18px; color: var(--primary); }

.acc-icon { transition: transform 0.3s; font-size: 11px; }
.mobile-accordion.open .acc-icon { transform: rotate(90deg); }

.mobile-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-accordion.open .mobile-acc-body { max-height: 300px; }

.mobile-acc-body a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-dim);
    font-size: 13px;
    border-left: 1px solid var(--border);
    border-radius: 0 6px 6px 0;
    transition: all 0.2s;
    margin: 2px 0;
}

.mobile-acc-body a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--primary-dim);
    padding-left: 20px;
}

.mobile-acc-body a i { width: 16px; opacity: 0.6; color: var(--primary); }

.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.mobile-menu-footer p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== MAIN CONTENT ===== */
#mainContent {
    margin-top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
}

/* ===== PAGES ===== */
.page {
    display: none;
}

.page.active {
    display: block;
    animation: pageIn 0.3s ease;
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 24px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    background: var(--primary-dim);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 96px);
    font-weight: 700;
    line-height: 0.95;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title-accent {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 40px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    border-radius: 4px;
    display: inline-flex;
}

.stat-item { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Decoration */
.hero-decoration { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.06);
}

.c1 {
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.c2 {
    width: 900px; height: 900px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.deco-corner {
    position: absolute;
    width: 30px; height: 30px;
}

.deco-corner.tl { top: 20px; left: 20px; border-top: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.deco-corner.tr { top: 20px; right: 20px; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.deco-corner.bl { bottom: 20px; left: 20px; border-bottom: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.deco-corner.br { bottom: 20px; right: 20px; border-bottom: 2px solid var(--primary); border-right: 2px solid var(--primary); }

/* ===== PAGE HEADER ===== */
.page-header {
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.page-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
}

.page-breadcrumb {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.page-title span { color: var(--primary); }

.page-desc {
    color: var(--text-dim);
    font-size: 15px;
    max-width: 600px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: #050810;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    background: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: var(--primary-dim);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TITLE ===== */
.section-title-wrap { margin: 40px 0 20px; }
.section-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* ===== FORMS ===== */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.form-card-lg { max-width: 700px; margin: 0 auto; }

.form-section-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-field label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field input,
.form-field select {
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    width: 100%;
}

.form-field input::placeholder { color: var(--text-muted); }

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.form-field select option {
    background: var(--bg-2);
    color: var(--text);
}

.phone-input-wrap {
    display: flex;
    gap: 8px;
}

.phone-input-wrap select {
    width: auto;
    min-width: 110px;
    flex-shrink: 0;
}

.phone-input-wrap input { flex: 1; }

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ===== LOADING ===== */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TOURNOI ===== */
.tournoi-featured {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 40px;
    overflow: hidden;
}

.tournoi-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.tf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.tf-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.tf-type {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tf-date {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tf-date i { color: var(--primary); }

.tf-desc {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.tf-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.tf-detail-item { display: flex; flex-direction: column; gap: 4px; }

.td-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.td-value {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Tournoi à venir */
.tournoi-upcoming { display: flex; flex-direction: column; gap: 12px; }

.tu-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.2s;
}

.tu-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.tu-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.tu-info { flex: 1; }

.tu-info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tu-info p {
    font-size: 13px;
    color: var(--text-dim);
}

.tu-status {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

/* ===== GUILDES ===== */
.guildes-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 2px;
}

#guildes-count { color: var(--primary); font-size: 18px; font-family: var(--font-display); }

.guildes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.guilde-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.guilde-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
}

.guilde-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.guilde-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: inline-block;
}

.guilde-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.guilde-chef {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.guilde-chef strong { color: var(--primary); }

.guilde-actions {
    display: flex;
    gap: 8px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--whatsapp);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-wa::before { content: '\f232'; font-family: 'Font Awesome 6 Brands'; }
.btn-wa:hover { background: #1ea952; transform: translateY(-2px); }

.btn-defi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-defi:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

/* ===== ACTUALITÉS ===== */
.actu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
}

.news-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.news-thumb {
    height: 180px;
    background: var(--bg-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, var(--bg-2), rgba(0, 212, 255, 0.05));
    color: var(--border-strong);
}

.news-body { padding: 20px; }

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.news-category {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.news-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.news-resume {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-extra {
    padding: 12px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--primary);
}

.btn-news {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-dim);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-news:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}

/* ===== COMMUNAUTÉ ===== */
.commu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.commu-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s;
    color: var(--text);
}

.commu-card:not(.commu-card-soon):hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.commu-card-soon { opacity: 0.5; cursor: not-allowed; }

.commu-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.1); color: var(--whatsapp); border-color: rgba(37, 211, 102, 0.3); }
.contact-icon { background: var(--primary-dim); color: var(--primary); border-color: var(--border-strong); }
.discord-icon { background: rgba(88, 101, 242, 0.1); color: #5865F2; border-color: rgba(88, 101, 242, 0.2); }
.tiktok-icon { background: rgba(255, 0, 80, 0.1); color: #ff0050; border-color: rgba(255, 0, 80, 0.2); }

.commu-card-info { flex: 1; }

.commu-card-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.commu-card-info p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 8px;
}

.commu-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: 2px;
}

.soon-tag { color: var(--text-muted); border-color: var(--text-muted); }

.commu-arrow { color: var(--text-muted); transition: all 0.2s; }
.commu-card:not(.commu-card-soon):hover .commu-arrow { color: var(--primary); transform: translateX(4px); }

/* ===== RÈGLEMENT ===== */
.reglement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.reglement-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}

.reg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.reg-header i {
    font-size: 20px;
    color: var(--primary);
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
}

.reg-intro {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.reg-intro strong { color: var(--primary); }

.reg-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reg-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

.reg-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.reg-list li .red-icon { color: var(--danger); }
.reg-list li strong { color: var(--text); }

.reglement-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.reglement-notice i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* ===== VISION ===== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.vision-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.vision-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.vision-card:hover::after { transform: scaleX(1); }

.vision-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.vision-card:hover .vision-icon {
    border-color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.vision-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.vision-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== MAJ TIMELINE ===== */
.maj-timeline {
    position: relative;
    padding-left: 30px;
}

.maj-timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 0; bottom: 0;
    width: 1px;
    background: var(--border);
}

.maj-item {
    position: relative;
    margin-bottom: 32px;
}

.maj-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
}

.maj-item.new .maj-dot {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.maj-item.upcoming .maj-dot {
    border-color: var(--accent);
}

.maj-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s;
}

.maj-item.new .maj-content { border-color: rgba(0, 212, 255, 0.2); }

.maj-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.maj-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    background: var(--primary-dim);
}

.upcoming-tag {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
}

.maj-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.maj-content h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.maj-content p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.maj-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.maj-content ul li {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== SPONSORS / SUPPORT ===== */
.sponsors-empty {
    text-align: center;
    padding: 80px 40px;
    border: 1px dashed var(--border);
    border-radius: 8px;
}

.sponsors-empty-icon {
    font-size: 48px;
    color: var(--border-strong);
    margin-bottom: 20px;
}

.sponsors-empty h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.sponsors-empty p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 28px;
    color: var(--text);
    transition: all 0.25s;
}

.support-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.support-card i {
    font-size: 36px;
    color: var(--primary);
}

.support-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
}

.support-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ===== MODAL DÉFI ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}

.modal-box {
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.05);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 212, 255, 0.03);
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title-wrap i { color: var(--primary); font-size: 18px; }

.modal-title-wrap h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
}

.modal-close {
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-dim);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.modal-body { padding: 24px; }

.defi-target {
    text-align: center;
    padding: 16px;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 20px;
}

.defi-target-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.defi-target-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    letter-spacing: 2px;
}

/* ===== TOAST ===== */
#toastContainer {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.1);
    animation: toastIn 0.3s ease, toastOut 0.3s ease 3s forwards;
    max-width: 320px;
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    margin-top: 60px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

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

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 14px;
    transition: all 0.2s;
}

.footer-social a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-dim);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-bottom strong { color: var(--primary); }

/* ===== LISTE JOUEURS ===== */
.joueurs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.toolbar-count {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 2px;
}

.toolbar-count span {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary);
    margin-right: 6px;
}

.toolbar-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.toolbar-filters select {
    background: rgba(0,212,255,0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.toolbar-filters select:focus {
    border-color: var(--primary);
    outline: none;
}

.toolbar-filters select option { background: var(--bg-2); }

.view-toggle {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover { color: var(--primary); background: var(--primary-dim); }
.view-btn.active { color: var(--primary); background: var(--primary-dim); }

/* Grille joueurs */
.joueurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    transition: all 0.3s;
}

.joueurs-grid.list-view {
    grid-template-columns: 1fr;
}

.joueur-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.joueur-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.joueurs-grid.list-view .joueur-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    transform: none !important;
}

.joueur-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--border);
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    transition: border-color 0.2s;
}

.joueur-card:hover .joueur-avatar { border-color: var(--primary); }

.joueurs-grid.list-view .joueur-avatar {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.joueur-info { flex: 1; }

.joueur-role-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2px 8px;
    border: 1px solid var(--border);
    border-radius: 2px;
    margin-bottom: 8px;
}

.joueur-pseudo {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: center;
}

.joueurs-grid.list-view .joueur-pseudo { text-align: left; font-size: 16px; }

.joueur-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.joueurs-grid.list-view .joueur-meta { justify-content: flex-start; }

.joueur-meta span { display: flex; align-items: center; gap: 4px; }
.joueur-meta i { color: var(--primary); opacity: 0.6; }

.joueur-niveau {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--primary);
}

/* ===== AUTH WALL ===== */
.auth-wall {
    text-align: center;
    padding: 80px 40px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-wall-icon {
    font-size: 48px;
    color: var(--border-strong);
    margin-bottom: 20px;
}

.auth-wall h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.auth-wall p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: #333;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.btn-google i { color: #ea4335; font-size: 18px; }

/* ===== PROFIL CARD ===== */
.profil-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.profil-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(0,212,255,0.03);
    border-bottom: 1px solid var(--border);
    position: relative;
    flex-wrap: wrap;
}

.profil-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.profil-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
    display: block;
}

.profil-avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    animation: ringPulse 3s ease-in-out infinite;
}

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

.profil-header-info { flex: 1; }

.profil-badge-wrap { margin-bottom: 8px; }

.profil-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    background: var(--primary-dim);
}

.profil-pseudo {
    font-family: var(--font-display);
    font-size: 32px;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.profil-uid {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.profil-uid i { color: var(--primary); margin-right: 4px; }

.profil-edit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.profil-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.profil-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.profil-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.ps-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ps-value {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary);
    letter-spacing: 1px;
}

.profil-actions {
    display: flex;
    gap: 12px;
    padding: 24px 32px;
    flex-wrap: wrap;
}

/* ===== WIZARD ===== */
.wizard-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 16px;
}

.wiz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.wiz-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wiz-step.active .wiz-step-dot {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 12px rgba(0,212,255,0.4);
}

.wiz-step.done .wiz-step-dot {
    border-color: var(--success);
    background: var(--success);
    color: var(--bg);
}

.wiz-step span {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wiz-step.active span { color: var(--primary); }

.wiz-step-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    min-width: 40px;
    margin-bottom: 22px;
}

.wizard-bar-wrap {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.wizard-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--primary);
}

.wiz-body { animation: pageIn 0.3s ease; }

/* Role picker */
.role-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.role-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: rgba(0,212,255,0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.role-option:hover {
    border-color: var(--border-strong);
    color: var(--primary);
    background: var(--primary-dim);
}

.role-option.selected {
    border-color: var(--primary);
    background: var(--primary-dim);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(0,212,255,0.1);
}

.role-icon { font-size: 22px; }

/* ===== SPONSORS DÉTAILLÉS ===== */
.sponsors-tiers { display: flex; flex-direction: column; gap: 40px; margin-bottom: 48px; }

.sponsor-tier {}

.tier-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.tier-or    { background: rgba(255,200,0,0.12); color: #ffc800; border: 1px solid rgba(255,200,0,0.3); }
.tier-argent{ background: rgba(180,180,200,0.12); color: #b4b4c8; border: 1px solid rgba(180,180,200,0.3); }
.tier-bronze{ background: rgba(200,120,60,0.12); color: #c87840; border: 1px solid rgba(200,120,60,0.3); }

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.sponsors-grid-sm {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Carte sponsor réelle */
.sponsor-card-real {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sponsor-card-real:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.sponsor-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    padding: 8px;
}

.sponsor-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
}

.sponsor-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.sponsor-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-dim);
    transition: all 0.2s;
}

.sponsor-link:hover { color: var(--primary); border-color: var(--primary); }

/* Slot vide */
.sponsor-empty-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 20px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.2s;
    cursor: pointer;
}

.sponsor-empty-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-dim);
}

.sponsor-empty-slot i { font-size: 20px; }
.sponsor-slot-sm { padding: 28px 16px; }

/* CTA partenaire */
.sponsor-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.sponsor-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.sponsor-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 36px;
}

.sponsor-cta-icon {
    font-size: 36px;
    color: var(--primary);
    padding-top: 4px;
}

.sponsor-cta-text h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sponsor-cta-text p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sponsor-avantages {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.avantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
}

.avantage-item i { color: var(--success); font-size: 12px; flex-shrink: 0; }

.sponsor-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    min-width: 160px;
}

.sponsor-packs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.pack-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    border: 1px solid;
}

.pack-or     { color: #ffc800; border-color: rgba(255,200,0,0.3); background: rgba(255,200,0,0.06); }
.pack-argent { color: #b4b4c8; border-color: rgba(180,180,200,0.3); background: rgba(180,180,200,0.06); }
.pack-bronze { color: #c87840; border-color: rgba(200,120,60,0.3); background: rgba(200,120,60,0.06); }

/* ===== BIO PROFIL ===== */
.profil-bio-section {
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,212,255,0.02);
}

.profil-bio-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profil-bio-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    font-style: italic;
}

/* ===== TEXTAREA ===== */
.form-field textarea {
    background: rgba(0,212,255,0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.2s;
    width: 100%;
    resize: vertical;
    min-height: 80px;
}

.form-field textarea::placeholder { color: var(--text-muted); }

.form-field textarea:focus {
    border-color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 0 0 2px rgba(0,212,255,0.1);
    outline: none;
}

.field-hint {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: -4px;
}

/* ===== BOUTONS JOUEUR ===== */
.joueur-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
}

.joueurs-grid.list-view .joueur-card-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.btn-defi-joueur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-defi-joueur:hover {
    background: rgba(255,107,0,0.1);
    transform: translateY(-1px);
}

.btn-inviter-joueur {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-inviter-joueur:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
    transform: translateY(-1px);
}

/* Nav profil btn */
.nav-profil-btn {
    border: 1px solid var(--border) !important;
    background: var(--primary-dim) !important;
    color: var(--primary) !important;
    margin-left: 6px;
}

.mobile-profil-btn {
    border: 1px solid var(--border) !important;
    color: var(--primary) !important;
    background: var(--primary-dim) !important;
    margin-top: 8px;
}

/* ===== CALENDRIER ===== */
.cal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.cal-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cal-nav button {
    width: 32px; height: 32px;
    background: none;
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}

.cal-nav button:hover { background: var(--primary-dim); border-color: var(--primary); }

.cal-nav span {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    letter-spacing: 2px;
    min-width: 140px;
    text-align: center;
}

.cal-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.cal-grid-header span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-align: center;
    padding: 8px 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 32px;
}

.cal-day {
    min-height: 70px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px;
    position: relative;
    transition: all 0.2s;
}

.cal-day.other-month { opacity: 0.3; }

.cal-day.today {
    border-color: var(--primary);
    background: var(--primary-dim);
}

.cal-day.has-event { border-color: rgba(0,212,255,0.4); }

.cal-day-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cal-day.today .cal-day-num { color: var(--primary); font-weight: bold; }

.cal-event-dot {
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 2px;
    margin-bottom: 2px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
}

.cal-event-dot.type-tournoi { background: rgba(0,212,255,0.15); color: var(--primary); border-left: 2px solid var(--primary); }
.cal-event-dot.type-inscriptions { background: rgba(255,107,0,0.15); color: var(--accent); border-left: 2px solid var(--accent); }
.cal-event-dot.type-evenement { background: rgba(0,255,136,0.1); color: var(--success); border-left: 2px solid var(--success); }

/* Vue liste calendrier */
.cal-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.cal-list-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
    align-items: center;
}

.cal-list-item:hover { border-color: var(--border-strong); }

.cal-list-date {
    text-align: center;
    min-width: 60px;
    padding: 10px;
    background: var(--primary-dim);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    flex-shrink: 0;
}

.cal-list-date .day { font-family: var(--font-display); font-size: 28px; color: var(--primary); line-height: 1; }
.cal-list-date .month { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }

.cal-list-info { flex: 1; }

.cal-list-info h4 { font-family: var(--font-display); font-size: 18px; color: white; letter-spacing: 1px; margin-bottom: 4px; }
.cal-list-info p { font-size: 13px; color: var(--text-dim); }

.cal-list-type {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid;
    flex-shrink: 0;
}

/* Compte à rebours */
.countdowns-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; margin-bottom: 32px; }

.countdown-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
}

.countdown-card.phase-inscriptions::before { background: var(--accent); }
.countdown-card.phase-tournoi::before { background: var(--primary); }

.cd-phase {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.phase-inscriptions .cd-phase { color: var(--accent); }
.phase-tournoi .cd-phase { color: var(--primary); }

.cd-titre { font-family: var(--font-display); font-size: 20px; color: white; letter-spacing: 2px; margin-bottom: 16px; }

.cd-timer {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.cd-block {
    text-align: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 12px;
    min-width: 50px;
}

.cd-num { font-family: var(--font-display); font-size: 28px; color: var(--primary); line-height: 1; display: block; }
.phase-inscriptions .cd-num { color: var(--accent); }
.cd-lbl { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 1px; }
.cd-sep { font-family: var(--font-display); font-size: 20px; color: var(--border-strong); margin-bottom: 12px; }

.cd-info { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

/* ===== ADMIN ===== */
.admin-auth-wall {
    text-align: center;
    padding: 80px 40px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.admin-auth-wall h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.admin-auth-wall p { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }

.admin-pin-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.admin-pin-wrap input {
    background: rgba(0,212,255,0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 16px;
    width: 220px;
    text-align: center;
    letter-spacing: 4px;
    transition: all 0.2s;
}

.admin-pin-wrap input:focus { border-color: var(--primary); outline: none; background: var(--primary-dim); }

.admin-auth-error {
    color: var(--danger);
    font-family: var(--font-mono);
    font-size: 12px;
    margin-top: 16px;
    letter-spacing: 1px;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
    flex-wrap: wrap;
}

.admin-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -1px;
}

.admin-tab:hover { color: var(--primary); }
.admin-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.admin-section-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 8px;
}

.admin-event-item h5 { font-family: var(--font-display); font-size: 16px; color: white; letter-spacing: 1px; margin-bottom: 4px; }
.admin-event-item p { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }

.btn-delete {
    background: none;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-delete:hover { background: rgba(255,34,68,0.1); }

.notif-info-box {
    display: flex;
    gap: 10px;
    padding: 14px;
    background: rgba(0,212,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-dim);
}

.notif-info-box i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.notif-types { display: flex; flex-direction: column; gap: 10px; }

.notif-type-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0,212,255,0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    color: var(--text-dim);
}

.notif-type-item:hover { border-color: var(--border-strong); color: var(--text); }
.notif-type-item input[type="radio"] { accent-color: var(--primary); }

.notif-preview {
    padding: 16px;
    background: rgba(37,211,102,0.05);
    border: 1px solid rgba(37,211,102,0.2);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
    white-space: pre-line;
    line-height: 1.8;
    margin-bottom: 16px;
    display: none;
}

.notif-preview.visible { display: block; }

/* Bouton admin discret */
.nav-admin-btn {
    opacity: 0.3;
    transition: opacity 0.2s !important;
}
.nav-admin-btn:hover { opacity: 1 !important; }

/* ===== COMING SOON ===== */
.coming-soon-box {
    text-align: center;
    padding: 80px 40px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.csb-icon {
    font-size: 48px;
    color: var(--border-strong);
    margin-bottom: 16px;
    animation: csb-pulse 2s ease-in-out infinite;
}

@keyframes csb-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.csb-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.coming-soon-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.coming-soon-box p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .burger-btn { display: flex; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }
    .form-grid { grid-template-columns: 1fr; }
    .reglement-grid { grid-template-columns: 1fr; }
    .tf-details { gap: 16px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { gap: 12px; }
    .tu-card { flex-wrap: wrap; }
    .form-actions { flex-direction: column; }
    .form-actions .btn-ghost,
    .form-actions .btn-primary { width: 100%; justify-content: center; }
    .cal-event-dot { display: none; }
    .cal-day { min-height: 40px; }
    .sponsor-cta-inner { grid-template-columns: 1fr; }
    .admin-tabs { gap: 0; }
    .admin-tab { padding: 10px 12px; font-size: 12px; }
    .countdowns-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .guildes-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
    .actu-grid { grid-template-columns: 1fr; }
    .commu-grid { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .deco-corner { display: none; }
    .cal-grid-header span { font-size: 8px; letter-spacing: 0; }
    .cd-timer { gap: 4px; }
    .cd-block { min-width: 42px; padding: 6px 8px; }
    .cd-num { font-size: 22px; }
    .role-picker { grid-template-columns: repeat(2, 1fr); }
    .admin-pin-wrap { flex-direction: column; align-items: center; }
    .admin-pin-wrap input { width: 100%; }
}
