:root {
    --primary: #ff6600;    /* Orange Free Fire */
    --bg-dark: #0a0a0a;   /* Noir profond */
    --card-bg: #151515;   /* Gris foncé pour les blocs */
    --text-main: #ffffff;
    --text-dim: #aaaaaa;  /* Gris pour les textes moins importants */
    --accent: #25D366;    /* Vert WhatsApp */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .font-orbitron {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header & Navbar */
.main-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.logo-area img { height: 45px; }
.text-primary { color: var(--primary); }

.desktop-nav { display: flex; gap: 30px; }
.nav-item { position: relative; }
.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-item a:hover { color: var(--primary); }

/* Menus Déroulants (Dropdown) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 180px;
    border-top: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    padding: 10px 20px;
    display: block;
    font-size: 0.8rem;
}
.dropdown-content a:hover { background: rgba(255, 102, 0, 0.1); }

.mobile-menu-btn {
    display: none; /* On s'occupera du mobile plus tard */
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Container principal pour compenser la hauteur du header fixe */
#main-content {
    margin-top: 70px; /* Ajuste selon la taille de ta navbar */
}

.page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page.active {
    display: block;
}

/* Composant Hero Banner */
.hero-banner {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images8.alphacoders.com/105/1057774.jpg'); /* Image Free Fire de qualité */
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    margin: 15px 0;
    font-weight: 900;
}

/* Boutons Composants */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-main {
    background: var(--primary);
    color: black;
    border: none;
    padding: 15px 35px;
    font-family: 'Orbitron';
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    font-family: 'Orbitron';
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--primary); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header de page style MEA */
.page-header-premium {
    text-align: center;
    padding: 60px 0 40px;
}
.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}
.header-desc {
    color: #888;
    font-size: 1.1rem;
}

/* Grille de cartes */
.vision-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Composant Carte Premium */
.vision-card-premium {
    background: #111; /* Fond sombre */
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vision-card-premium i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: 0.4s;
}

.vision-card-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.vision-card-premium p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Effet de lueur orange au survol */
.vision-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: linear-gradient(145deg, #151515, #0a0a0a);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
}

.vision-card-premium:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--primary);
}

/* Petit détail : la ligne brillante invisible qui s'active au hover */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.vision-card-premium:hover .card-glow {
    transform: translateX(100%);
}

/* Container Principal Hero */
.hero-gaming {
    position: relative;
    height: 100vh; /* Prend tout l'écran */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images8.alphacoders.com/105/1057774.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
}

/* Badge Live */
.badge-live {
    display: inline-block;
    background: rgba(255, 102, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Titre avec effet de lueur (Glow) */
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Taille adaptative */
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-glow {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.6), 0 0 40px rgba(255, 102, 0, 0.4);
}

.hero-lead {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Boutons Gaming */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--primary);
    color: black;
    border: none;
    padding: 18px 35px;
    font-family: 'Orbitron';
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.btn-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.6);
}

.btn-sub {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 35px;
    font-family: 'Orbitron';
    font-weight: 900;
    cursor: pointer;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.btn-sub:hover {
    background: white;
    color: black;
}

/* Animation Pulse pour le badge */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}
.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Style du fond de la page Vision */
#page-but {
    position: relative;
    background-color: #050505; /* Noir très profond */
    background-image: 
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.05), transparent);
    min-height: 100vh;
    overflow: hidden;
}

/* Overlay de texture (Optionnel : petit quadrillage gaming) */
.vision-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 102, 0, 0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255, 102, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Header de la section */
.section-header-gaming {
    text-align: center;
    margin-bottom: 60px;
}

.text-glow-orange {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    margin-bottom: 15px;
}

.header-bar {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--primary);
}

/* Style des Cartes (Composants) */
.but-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.but-card {
    background: rgba(20, 20, 20, 0.6); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Effet de verre */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.but-card i {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.but-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.but-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Effet au survol */
.but-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(255, 102, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Couleurs spécifiques Communauté */
:root {
    --whatsapp: #25D366;
}

.text-glow-green {
    color: var(--whatsapp);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    text-align: center;
}

.green-bar {
    background: var(--whatsapp) !important;
    box-shadow: 0 0 10px var(--whatsapp) !important;
}

/* Grande Carte Sociale */
.social-hero-card {
    background: linear-gradient(145deg, #0f0f0f, #050505);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.wa-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.wa-icon-container {
    font-size: 5rem;
    color: var(--whatsapp);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.4));
}

.social-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.social-content p {
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

/* Bouton WhatsApp Style MEA */
.btn-whatsapp-premium {
    background: var(--whatsapp);
    color: black;
    border: none;
    padding: 18px 45px;
    border-radius: 8px;
    font-family: 'Orbitron';
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* Cartes d'avantages */
.commu-card i {
    color: var(--whatsapp) !important;
}

.commu-card:hover {
    border-color: var(--whatsapp) !important;
    background: rgba(37, 211, 102, 0.05) !important;
}

/* Animation de flottement pour l'icône */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out;
}

/* FOOTER PREMIUM */
.main-footer {
    background: #080808;
    border-top: 1px solid #222;
    padding-top: 60px;
    margin-top: 50px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-column h4 {
    color: #fff;
    font-family: 'Orbitron';
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.5;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Réseaux Sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #151515;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.4s;
    border: 1px solid #222;
}

.social-links a:hover {
    background: var(--primary);
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Bas du footer */
.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #111;
    color: #555;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column p {
        margin: 0 auto;
    }
    .social-links {
        justify-content: center;
    }
    .footer-column ul li a {
        justify-content: center;
    }
}

/* Container principal Support */
.support-card-premium {
    background: linear-gradient(145deg, #111, #080808);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Effet Radar sur l'icône */
.support-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon-wrapper i {
    font-size: 4rem;
    color: var(--primary);
    z-index: 2;
}

.radar-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Boite d'action WhatsApp */
.support-action-box {
    background: rgba(255, 102, 0, 0.03);
    border: 1px dashed rgba(255, 102, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.btn-support-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: black;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: 'Orbitron';
    font-weight: 900;
    margin-top: 20px;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.btn-support-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

/* Features grid */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.feature-item {
    background: #0d0d0d;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.feature-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature-item span {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.feature-item:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.02);
}

/* Couleurs Globales Or */
:root {
    --gold: #FFD700;
    --gold-dark: #b8860b;
}

.text-glow-gold {
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.gold-bar {
    background: var(--gold) !important;
    box-shadow: 0 0 10px var(--gold);
}

/* Grille */
.grid-layout-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Cartes Sponsors */
.sponsor-card-new {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
}

.sponsor-card-new .icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    margin-top: 25px;
    text-align: left;
    padding-left: 0;
}

.benefit-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li i {
    color: var(--gold);
}

/* Carte Active (Or) */
.active-gold {
    border: 2px solid var(--gold) !important;
    transform: scale(1.03);
    background: linear-gradient(145deg, #151515, #0a0a0a);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: black;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 5px;
}

/* Contact Pro Box */
.contact-pro-box-premium {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
}

.contact-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-icon i {
    font-size: 3rem;
    color: var(--gold);
}

.contact-text {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.btn-sponsor-gold {
    background: var(--gold);
    color: black;
    border: none;
    padding: 15px 30px;
    font-family: 'Orbitron';
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sponsor-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.eligibility-col {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #222;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.eligibility-col:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.eligibility-col h3 {
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.eligibility-col h3 i {
    color: var(--primary);
}

.subtitle {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 25px;
    font-style: italic;
}

/* Items de check */
.check-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0a0a0a;
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    transition: 0.3s;
}

.check-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.check-item span {
    color: #bbb;
    font-size: 0.95rem;
}

.check-item strong {
    color: #fff;
}

.check-item:hover {
    background: #151515;
    transform: translateX(5px);
}

/* Style spécial pour règles tournois (Rouge pour l'anti-triche) */
.tournament-rules .check-item {
    border-left-color: var(--gold);
}

.check-item.red {
    border-left-color: #ff4444;
}
.check-item.red i {
    color: #ff4444;
}

@media (max-width: 768px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

.news-date-small {
    font-size: 0.7rem;
    color: #555;
    float: right;
}

.btn-read-mini {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 15px;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-read-mini:hover {
    background: var(--primary);
    color: black;
}

/* Card d'enregistrement */
.registration-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-header-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row-wa {
    display: flex;
    gap: 15px;
}

/* Inputs Premium */
.input-group-premium {
    position: relative;
    background: #080808;
    border: 1px solid #333;
    border-radius: 8px;
    flex: 1;
}

.input-group-premium i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-group-premium input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 15px 15px 45px;
    color: #fff;
    outline: none;
}

.select-premium {
    background: #080808;
    border: 1px solid #333;
    color: #fff;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
}

/* Bouton Certification */
.btn-certify {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), #ff8c00);
    color: black;
    border: none;
    padding: 18px;
    margin-top: 20px;
    font-family: 'Orbitron';
    font-weight: 900;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-certify:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

/* Header de la liste */
.list-section-header {
    margin-bottom: 30px;
}

.small-bar {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin-top: 10px;
}

/* Grille de déploiement des cartes */
.guildes-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-row-wa { flex-direction: column; }
}

#modalDefi input, #modalDefi select {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
}

#modalDefi label {
    display: block;
    margin-top: 10px;
    font-size: 0.8em;
    color: var(--primary);
    text-transform: uppercase;
}

/* --- DESIGN DU MODAL DE DÉFI --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px); /* Floute l'arrière-plan */
    z-index: 2000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 450px;
    width: 100%;
    margin: auto;
    background: #0d0d0d !important;
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

.modal-header {
    background: linear-gradient(90deg, var(--primary), #ff8c00);
    padding: 20px;
    text-align: center;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    color: black;
    font-size: 1.2rem;
}

.btn-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: black;
    font-size: 2rem;
    cursor: pointer;
}

.modal-body {
    padding: 25px;
}

.target-badge {
    background: rgba(255, 102, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.target-badge .label {
    font-size: 0.7rem;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.target-badge p {
    font-family: 'Orbitron';
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.btn-send-defi {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 18px;
    margin-top: 25px;
    font-family: 'Orbitron';
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-send-defi:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

#modalDefi {
    display: none !important;
}

/* Overlay avec flou */
.modal-overlay {
    display: none; /* AJOUTE CETTE LIGNE POUR CACHER AU DÉBUT */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center; 
    justify-content: center;
}

/* Carte du Modal */
.modal-card {
    background: #0a0a0a;
    width: 90%;
    max-width: 450px;
    border: 1px solid #333;
    border-top: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
    position: relative;
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Header */
.modal-header-cyber {
    background: #151515;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.header-content i { color: var(--primary); margin-right: 10px; font-size: 1.2rem; }
.header-content h3 { font-family: 'Orbitron'; font-size: 1rem; letter-spacing: 2px; margin: 0; }

.close-cyber {
    background: none; border: none; color: #666; font-size: 2rem; cursor: pointer;
    transition: 0.3s;
}
.close-cyber:hover { color: var(--primary); }

/* Zone Versus */
.modal-inner { padding: 25px; }

.versus-container {
    background: rgba(255, 102, 0, 0.05);
    padding: 20px;
    border: 1px dashed rgba(255, 102, 0, 0.3);
    text-align: center;
    margin-bottom: 25px;
}

.vs-label { font-size: 0.65rem; color: #888; letter-spacing: 3px; display: block; margin-bottom: 5px; }
.vs-name { font-family: 'Orbitron'; font-size: 1.4rem; color: #fff; text-shadow: 0 0 10px var(--primary); }

/* Style des champs de saisie dans le modal */
.form-cyber select, 
.form-cyber input[type="date"], 
.form-cyber input[type="time"] {
    width: 100%;
    background: #1a1a1a; /* Un peu plus clair pour voir le champ */
    border: 1px solid #333;
    color: white;
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    margin-top: 5px;
    display: block;
}

.form-cyber input:focus, .form-cyber select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

/* Force l'affichage des icônes de calendrier/heure sur certains navigateurs */
::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Rend l'icône blanche */
    cursor: pointer;
}

/* --- CORRECTIF FORMULAIRE MODAL --- */
.input-row {
    display: flex !important; /* Force l'alignement côte à côte */
    gap: 10px;
    width: 100%;
}

.input-block {
    flex: 1; /* Donne la même largeur aux deux colonnes */
    min-width: 0; /* Évite les débordements */
}

.form-cyber input[type="date"], 
.form-cyber input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    min-height: 45px; /* Assure une hauteur pour cliquer */
    cursor: text;
}

/* Rend l'icône de calendrier visible (blanche) */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
/* Bouton Envoyer */
.btn-launch-defi {
    width: 100%;
    background: var(--primary);
    color: black;
    border: none;
    padding: 15px;
    font-family: 'Orbitron';
    font-weight: bold;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: 0.3s;
}

.btn-launch-defi:hover {
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--primary);
}

.auth-box {
    max-width: 400px;
    margin: 50px auto;
    background: #111;
    padding: 30px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 186, 0, 0.1);
}

.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
}

.auth-tabs button {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.auth-tabs button.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.btn-google {
    width: 100%;
    padding: 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.separator {
    text-align: center;
    margin: 20px 0;
    color: #555;
    font-size: 0.8em;
}

/* --- DESIGN COMPLET DE LA PAGE AUTH/PROFIL --- */

/* Container Principal en Grille (Perso à gauche, Formulaire à droite) */
.auth-cyber-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

/* --- CÔTÉ PERSONNAGE --- */
.auth-char-side {
    position: relative;
    text-align: center;
}

.char-img {
    max-width: 90%;
    height: auto;
    /* Effet d'ombre portée pour détacher le perso */
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.4));
}

/* Bulle de dialogue stylée */
.char-speech {
    position: absolute;
    top: 0; /* Aligné avec le haut */
    right: -10px;
    background: rgba(255, 102, 0, 0.9); /* Fond orange semi-transparent */
    border: 2px solid white;
    padding: 12px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0; 
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10;
}


.char-speech i {
    color: var(--primary);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.char-speech p {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: black; /* Texte noir sur fond orange pour que ça "pop" */
    margin: 0;
}

/* --- CÔTÉ FORMULAIRE PREMIUM --- */
.auth-box-premium {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid #222;
    border-top: 3px solid var(--primary); /* Ligne orange MEA */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    position: relative;
    overflow: hidden;
}

/* Header stylé */
.auth-header-cyber {
    text-align: center;
    margin-bottom: 30px;
}

.cyber-lines {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 10px;
    box-shadow: 0 0 10px var(--primary);
}

.auth-header-cyber h3 {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: #fff;
}

/* Onglets style Cyber */
.auth-tabs-cyber {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.auth-tabs-cyber button {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 12px;
    color: #888;
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
}

.auth-tabs-cyber button:hover {
    background: rgba(255, 102, 0, 0.05);
    border-color: rgba(255, 102, 0, 0.3);
    color: #fff;
}

.auth-tabs-cyber button.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

/* Inputs Cyber stylés */
.input-block-cyber {
    margin-bottom: 20px;
}

.input-block-cyber label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.input-block-cyber label i {
    margin-right: 5px;
}

.input-block-cyber input {
    width: 100%;
    background: #080808;
    border: 1px solid #222;
    padding: 15px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.input-block-cyber input:focus {
    outline: none;
    border-color: var(--primary);
    background: #111;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

/* Bouton Principal de validation Cyber */
.btn-auth-cyber {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), #ff8c00);
    color: black;
    border: none;
    padding: 18px;
    font-family: 'Orbitron';
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-auth-cyber:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

/* Séparateur Cyber */
.separator-cyber {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #555;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.separator-cyber::before,
.separator-cyber::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #222;
}

.separator-cyber::before { left: 0; }
.separator-cyber::after { right: 0; }

/* Bouton Google Cyber */
.btn-google-cyber {
    width: 100%;
    background: #fff;
    color: black;
    border: none;
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-google-cyber:hover {
    background: #eee;
    transform: scale(1.02);
}

/* Animation de flottement pour la bulle */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s infinite ease-in-out;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .auth-cyber-container {
        grid-template-columns: 1fr; /* Pile verticale */
        gap: 20px;
    }
    .auth-char-side {
        order: 2; /* Perso passe en bas sur mobile */
    }
    .char-speech {
        top: -30px;
        right: 50%;
        transform: translateX(50%);
        border-bottom-left-radius: 15px; /* Forme bulle normale */
    }
    .auth-box-premium {
        padding: 25px;
    }
}

.forgot-password-container {
    text-align: right;
    margin-top: 5px;
}

.forgot-link {
    color: var(--text-dim);
    font-size: 0.75rem;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.forgot-link:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
}

.tournoi-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.tournoi-container:hover img {
    transform: scale(1.02); /* Petit effet de zoom au survol */
}

/* Style pour les petits tags de points que j'ai mis dans le HTML précédent */
.tag-point {
    background: rgba(255, 187, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

/* ===== INTRO SCREEN ===== */
#intro-screen {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOutIntro 1s ease forwards;
    animation-delay: 4s;
}

/* LOGO */
.intro-logo img {
    width: 180px;
    animation: zoomGlow 2s ease-out, glitch 1.5s infinite;
}

/* TEXTE */
.intro-text {
    color: #ffbb00;
    font-family: 'Orbitron', sans-serif;
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 3px;
    animation: fadeText 2s ease-in-out;
}

/* ZOOM + GLOW */
@keyframes zoomGlow {
    0% {
        transform: scale(0.3);
        opacity: 0;
        filter: blur(10px);
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
        filter: blur(0);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px #ffbb00);
    }
}

/* GLITCH SIMPLE */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

/* FADE TEXT */
@keyframes fadeText {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* DISPARITION INTRO */
@keyframes fadeOutIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes glitch2 {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-1px, 1px); filter: hue-rotate(90deg); }
  80% { transform: translate(1px, -1px); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

.intro-logo img {
    animation: zoomGlow 2s ease-out, glitch2 1.2s infinite;
}

.intro-loader {
    width: 200px;
    height: 4px;
    background: #222;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.intro-loader .bar {
    width: 0%;
    height: 100%;
    background: #ffbb00;
    animation: loadbar 4s linear forwards;
}

@keyframes loadbar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.boot-text {
    color: #00ff99;
    font-size: 12px;
    margin-top: 10px;
    font-family: monospace;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeBoot 2s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeBoot {
    to { opacity: 1; }
}

@keyframes shake {
    0% { transform: translate(0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, 2px); }
    75% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

#intro-screen {
    animation: shake 0.3s ease;
}

#introScreen{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    animation: fadeOutIntro 3.5s ease forwards;
}

.intro-text{
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align:center;
    letter-spacing:2px;
    animation: zoomIntro 1.2s ease;
}

/* effet zoom */
@keyframes zoomIntro{
    from{
        transform: scale(0.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* disparition */
@keyframes fadeOutIntro{
    0%{opacity:1;}
    70%{opacity:1;}
    100%{
        opacity:0;
        visibility:hidden;
    }
}

#introScreen{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    animation: fadeOutIntro 3.5s ease forwards;
}

.intro-box{
    text-align:center;
}

/* LOGO PULSE */
.intro-logo{
    width:120px;
    height:auto;
    margin-bottom:20px;
    animation: pulseLogo 1.5s infinite;
    filter: drop-shadow(0 0 15px var(--primary));
}

/* TEXTE */
.intro-text{
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    letter-spacing:2px;
    animation: zoomIntro 1.2s ease;
}

/* PULSE LOGO */
@keyframes pulseLogo{
    0%{
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--primary));
    }
    50%{
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px var(--primary));
    }
    100%{
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--primary));
    }
}

/* zoom texte */
@keyframes zoomIntro{
    from{ transform: scale(0.7); opacity:0; }
    to{ transform: scale(1); opacity:1; }
}

/* disparition */
@keyframes fadeOutIntro{
    0%{opacity:1;}
    70%{opacity:1;}
    100%{
        opacity:0;
        visibility:hidden;
    }
}

/* ===== GUILDES GRID ===== */
.guildes-display-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ===== CARD GUILDE ULTRA PREMIUM ===== */
.guilde-card{
    position: relative;
    background: rgba(15,15,15,0.9);
    border: 1px solid rgba(255, 187, 0, 0.2);
    border-radius: 18px;
    padding: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* effet glow au hover */
.guilde-card:hover{
    transform: translateY(-8px);
    border: 1px solid var(--primary);
    box-shadow: 0 0 25px rgba(255, 187, 0, 0.4);
}

/* glow animé en fond */
.guilde-card::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background: radial-gradient(circle, rgba(255,187,0,0.15), transparent 60%);
    animation: rotateGlow 6s linear infinite;
    z-index:0;
}

@keyframes rotateGlow{
    from{ transform: rotate(0deg); }
    to{ transform: rotate(360deg); }
}

/* contenu au-dessus */
.guilde-content{
    position: relative;
    z-index: 2;
}

/* nom guilde */
.guilde-name{
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,187,0,0.4);
}

/* chef */
.guilde-chef{
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* badge leader */
.guilde-badge{
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.7rem;
    background: rgba(255,187,0,0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    margin-bottom: 10px;
}

/* boutons */
.guilde-actions{
    display:flex;
    gap:10px;
    margin-top: 15px;
}

.btn-wa{
    flex:1;
    background:#25D366;
    color:white;
    padding:10px;
    border-radius:10px;
    text-align:center;
    font-weight:bold;
    font-size:0.75rem;
    text-decoration:none;
}

.btn-defi{
    flex:1;
    border:1px solid var(--primary);
    color:var(--primary);
    background:transparent;
    padding:10px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
    font-size:0.75rem;
}

.update-card{
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,187,0,0.2);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.update-card:hover{
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255,187,0,0.3);
}

.update-card h3{
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.update-tag{
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,187,0,0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
}

.update-card p{
    color: #ccc;
    font-size: 0.9rem;
}

.update-card ul{
    margin-top: 10px;
    padding-left: 18px;
    color: #aaa;
    font-size: 0.85rem;
}

.update-card ul li{
    margin-bottom: 5px;
}

/* ===== GLOBAL RESPONSIVE CLEAN GAMING STYLE ===== */

@media (max-width: 900px) {

  .container {
    padding: 10px;
  }

  /* NAV MOBILE STYLE LIKE PRO SITES */
  .desktop-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  /* SECTIONS FULL WIDTH FLOW */
  .page {
    padding: 10px;
  }

  /* CARDS DEVENIR STACK MOBILE */
  .but-grid,
  .guildes-display-grid,
  .grid-layout-premium {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  /* HERO CLEAN MOBILE */
  .hero-content h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-lead {
    font-size: 14px;
    text-align: center;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns button {
    width: 100%;
  }

}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 22px;
  margin: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guildes-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

/* CARTE ULTRA GAMING */
.guilde-card {
  background: linear-gradient(145deg, #111, #000);
  border: 1px solid rgba(255,187,0,0.3);
  border-radius: 12px;
  padding: 15px;
  transition: 0.3s;
}

.guilde-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,187,0,0.4);
}

html {
  scroll-behavior: smooth;
}

.page {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ===== MOBILE MENU PRO GAMING ===== */

.mobile-menu{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 9999;
    transform: translateX(-100%);
    transition: 0.35s ease;
    overflow-y: auto;
    padding: 15px;
}

.mobile-menu.active{
    transform: translateX(0);
}

/* HEADER */
.mobile-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 20px;
}

.mobile-logo{
    width: 35px;
    height: 35px;
}

.mobile-header i{
    font-size: 22px;
}

/* SECTION */
.mobile-section{
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

/* TITRE */
.mobile-title{
    color: white;
    padding: 12px;
    background: #111;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron';
    display: flex;
    gap: 10px;
    align-items: center;
}

/* SOUS MENU */
.mobile-sub{
    display: none;
    flex-direction: column;
    margin-top: 8px;
    padding-left: 10px;
}

.mobile-sub a{
    color: #ccc;
    padding: 10px;
    border-left: 2px solid #333;
    margin: 3px 0;
    background: #0d0d0d;
    border-radius: 6px;
}

/* OPEN STATE */
.mobile-section.active .mobile-sub{
    display: flex;
}

.bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #222;
    z-index: 9999;
}

.bottom-nav .nav-item{
    color: #aaa;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    flex: 1;
}

.bottom-nav .nav-item i{
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
    color: white;
}

.bottom-nav .nav-item:active,
.bottom-nav .nav-item:hover{
    color: #ffbb00;
}

.bottom-nav .nav-item:hover i{
    color: #ffbb00;
}

body{
    padding-bottom: 70px;
}