:root {
    --bg-dark: #0D0C1D;
    --bg-card: #161B33;
    --accent: #A69CAC;
    --text-highlight: #F1DAC4;
    --text-white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- TYPOGRAPHIE --- */
h1 { font-size: 3.5rem; font-weight: 700; color: var(--text-highlight); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2.5rem; color: var(--text-white); margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.5rem; color: var(--text-highlight); margin-bottom: 10px; }
h4 { font-size: 1.2rem; color: var(--text-white); margin-bottom: 5px; }
p { color: var(--accent); font-size: 1.1rem; font-weight: 300; margin-bottom: 15px; }
strong { color: var(--text-white); font-weight: 600; }
a { text-decoration: none; color: inherit; }

/* --- ICONS --- */
.feature-icon { font-size: 2.5rem; color: var(--text-highlight); margin-bottom: 20px; }
.contact-icon { font-size: 3rem; color: var(--text-highlight); margin-bottom: 15px; }
.quote-icon { font-size: 3rem; opacity: 0.8; margin-bottom: 25px; color: var(--text-highlight); }

/* --- UTILITAIRES D'AFFICHAGE --- */
/* Ces classes gèrent ce qui est visible ou non selon l'écran */
.mobile-only { display: none; } 
.desktop-only { display: flex; } 

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(13, 12, 29, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(166, 156, 172, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-highlight);
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

/* --- BARRE DE RECHERCHE (PC) --- */
.search-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
}

.search-container input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(166, 156, 172, 0.2);
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-container input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-highlight);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 0.9rem;
    pointer-events: none;
}

/* --- GROUPE DROITE (LIENS + SOCIALS) --- */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--text-highlight);
}

/* Boutons Sociaux */
.nav-socials {
    display: flex;
    gap: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
}

.social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.discord-nav { color: #5865F2; }
.whatsapp-nav { color: #25D366; }
.social-btn:hover { background: rgba(255, 255, 255, 0.15); transform: scale(1.1); }

/* --- BURGER MENU --- */
.burger { display: none; cursor: pointer; z-index: 1002; }
.burger div { width: 25px; height: 3px; background-color: var(--text-highlight); margin: 5px; transition: all 0.3s ease; border-radius: 2px; }

/* --- HERO SECTION --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 120px 10% 50px; gap: 50px; }
.hero-content { flex: 1; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

.cta-button {
    display: inline-block; margin-top: 30px; padding: 16px 45px;
    background-color: var(--text-highlight); color: var(--bg-dark);
    font-weight: 700; border-radius: 50px; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(241, 218, 196, 0.2); border: none;
    cursor: pointer; font-size: 1rem;
}
.cta-button:hover { transform: scale(1.05); background-color: #fff; box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3); }

/* --- MARQUEE --- */
.marquee-wrapper { background-color: var(--bg-card); padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(166, 156, 172, 0.1); border-bottom: 1px solid rgba(166, 156, 172, 0.1); }
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; display: flex; align-items: center; }
.marquee-content img { max-height: 40px; width: auto; margin: 0 40px; object-fit: contain; filter: grayscale(100%) brightness(100); opacity: 0.7; transition: var(--transition); }
.marquee-content img:hover { opacity: 1; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SECTIONS --- */
.features { padding: 100px 10%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; text-align: left; }
.feature-card { background: var(--bg-card); padding: 40px; border-radius: 24px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.03); }
.feature-card:hover { transform: translateY(-10px); border-color: rgba(166, 156, 172, 0.3); }

.how-it-works { padding: 100px 10%; text-align: center; background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%); }
.steps-container { display: flex; justify-content: space-between; margin-top: 50px; gap: 30px; flex-wrap: wrap; }
.step { flex: 1; min-width: 250px; padding: 20px; }
.step-number { font-size: 3rem; font-weight: 700; color: rgba(241, 218, 196, 0.2); margin-bottom: 10px; }

.why-cheap { padding: 100px 10%; display: flex; align-items: center; gap: 60px; background-color: var(--bg-card); }
.why-image { flex: 1; }
.why-image img { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.why-content { flex: 1; }
.text-link { color: var(--text-highlight); font-weight: 600; margin-top: 10px; display: inline-block; border-bottom: 1px solid transparent; transition: var(--transition); }
.text-link:hover { border-color: var(--text-highlight); }

.statement { padding: 120px 20%; text-align: center; background: var(--bg-dark); }

/* --- OFFERS --- */
.offers-hero { padding: 150px 10% 50px; text-align: center; }
.offers-banner-img { margin-top: 40px; width: 100%; height: 300px; overflow: hidden; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.offers-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.offers-grid { padding: 50px 10% 120px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.offer-card { background: var(--bg-card); border-radius: 24px; overflow: hidden; transition: var(--transition); border: 1px solid rgba(166, 156, 172, 0.1); display: flex; flex-direction: column; height: 100%; }
.offer-card:hover { transform: translateY(-5px) scale(1.01); border-color: var(--text-highlight); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.card-image { width: 100%; height: 220px; overflow: hidden; flex-shrink: 0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .card-image img { transform: scale(1.1); }
.card-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.desc { flex-grow: 1; margin-bottom: 25px; font-size: 0.95rem; opacity: 0.8; }
.buy-btn { display: block; width: 100%; padding: 14px; text-align: center; border: 1px solid var(--text-highlight); color: var(--text-highlight); border-radius: 12px; font-weight: 600; transition: var(--transition); margin-top: auto; }
.buy-btn:hover { background: var(--text-highlight); color: var(--bg-dark); }

/* --- CONTACT --- */
.contact-section { padding: 180px 10% 100px; text-align: center; }
.contact-methods { display: flex; justify-content: center; gap: 30px; margin-top: 60px; flex-wrap: wrap; margin-bottom: 80px; }
.contact-card { background: var(--bg-card); padding: 40px 30px; border-radius: 24px; width: 300px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; }
.contact-card:hover { border-color: var(--text-highlight); transform: translateY(-10px); }
.form-container { max-width: 600px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); text-align: left; }
.form-container h2 { text-align: center; margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; }
.input-group input { width: 50%; }
input, textarea { background: rgba(13, 12, 29, 0.5); border: 1px solid rgba(166, 156, 172, 0.2); padding: 15px; border-radius: 12px; color: var(--text-white); font-family: inherit; font-size: 1rem; outline: none; transition: var(--transition); width: 100%; }
input:focus, textarea:focus { border-color: var(--text-highlight); background: rgba(13, 12, 29, 0.8); }
.form-btn { width: 100%; margin-top: 10px; }

/* --- FOOTER --- */
footer { background-color: var(--bg-card); padding: 60px 10%; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-size: 1.5rem; font-weight: 700; color: var(--text-highlight); cursor: pointer; }
.footer-icons { display: flex; gap: 20px; align-items: center; font-size: 2rem; color: var(--accent); margin-top: 10px; }
.separator { font-size: 1.5rem; opacity: 0.3; }
.footer-icons i { transition: var(--transition); }
.footer-icons i:hover { color: var(--text-highlight); transform: translateY(-3px); }

/* --- ANIMATIONS --- */
.fade-in { animation: fadeIn 1s ease-out; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ========================================= */
/* --- RESPONSIVE FIXES (MOBILE) --- */
/* ========================================= */
@media screen and (max-width: 960px) {
    /* 1. FORCE LE MASQUAGE DES ÉLÉMENTS PC SUR MOBILE */
    /* Cela va nettoyer la barre du haut */
    .desktop-only,
    .search-container.desktop-only,
    .nav-socials.desktop-only { 
        display: none !important; 
    }

    /* 2. Réglage de la taille du titre H1 pour qu'il rentre */
    h1 { 
        font-size: 2.8rem; 
        line-height: 1.2;
    }

    /* 3. Activation des éléments Mobile uniquement */
    .mobile-only { 
        display: block !important; 
        width: 100%; 
    }

    /* Le menu déroulant (Drawer) */
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Contenu aligné vers le haut */
        padding-top: 120px; /* Espace pour ne pas chevaucher le logo */
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1001; /* En dessous du logo/burger */
    }

    .nav-links li { 
        opacity: 0; 
        margin: 15px 0; 
        width: 80%; /* Largeur des éléments internes */
        text-align: center;
    }

    /* Style spécifique pour la recherche DANS le menu mobile */
    .mobile-search-container {
        position: relative;
        width: 100%;
        margin-bottom: 30px; /* Espace sous la recherche */
    }
    .mobile-search-container input {
        width: 100%;
        padding: 15px 15px 15px 45px; /* Plus grand pour le doigt */
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
        border-radius: 12px;
        font-size: 1rem;
    }
    .mobile-search-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent);
        font-size: 1.1rem;
    }

    /* Style pour les réseaux DANS le menu mobile */
    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 30px;
    }
    .mobile-socials .social-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        border-radius: 15px; /* Plus carré sur mobile */
    }

    /* Gestion du Burger et Logo */
    .burger { display: block; z-index: 1002; }
    .nav-active { transform: translateX(0%); }
    
    /* Animation Burger */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    
    /* Autres fixes responsive */
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { width: 100%; }
    .hero-image { width: 100%; margin-top: 40px; }
    .why-cheap { flex-direction: column; }
    .why-image { margin-bottom: 30px; }
    .input-group { flex-direction: column; gap: 20px; }
    .input-group input { width: 100%; }
}

/* ========================================= */
/* --- STYLES SPÉCIFIQUES PAGE PRODUIT --- */
/* ========================================= */

.product-hero {
    padding: 150px 10% 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.product-hero-content { flex: 1; }

.product-tag {
    background: rgba(241, 218, 196, 0.1);
    color: var(--text-highlight);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--text-highlight);
}

.product-trust {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--accent);
}

.product-trust i { color: var(--text-highlight); margin-right: 8px; }

.product-hero-image { flex: 1; display: flex; justify-content: center; }
.product-hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: rotate(3deg); /* Petit effet de style dynamique */
}

/* SECTION PRIX */
.pricing-section { padding: 50px 5% 100px; }
.section-title { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-highlight);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Carte mise en avant (Solo) */
.pricing-card.featured {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(241, 218, 196, 0.05) 100%);
    border: 1px solid var(--text-highlight);
    transform: scale(1.05);
    z-index: 2;
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-highlight);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pricing-header h3 { font-size: 1.5rem; color: var(--text-white); margin-bottom: 10px; }
.pricing-desc { font-size: 0.9rem; opacity: 0.7; min-height: 40px; }

.pricing-img {
    margin: 20px 0;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
}
.pricing-img img { width: 100%; height: 100%; object-fit: cover; }

/* Comparateur de prix */
.price-comparison {
    background: rgba(13, 12, 29, 0.5);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.real-price { display: flex; flex-direction: column; opacity: 0.5; font-size: 0.85rem; }
.real-price del { font-size: 1rem; }

.vyro-price { display: flex; flex-direction: column; text-align: right; color: var(--text-highlight); }
.vyro-price strong { font-size: 1.6rem; line-height: 1; }
.vyro-price small { font-size: 0.8rem; font-weight: 400; }

/* Liste avantages */
.benefits-list { list-style: none; margin-bottom: 30px; text-align: left; }
.benefits-list li { margin-bottom: 12px; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.benefits-list li i { color: #25D366; /* Vert validé */ margin-top: 4px; }
.benefits-list li.warning i { color: #F1C40F; /* Jaune attention */ }

/* Boutons Action Grid */
.action-buttons-full { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.action-buttons-full .buy-btn { width: 100%; margin: 0; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-discord { background: transparent; border-color: #5865F2; color: #5865F2; }
.btn-discord:hover { background: #5865F2; color: white; }
.btn-whatsapp { background: transparent; border-color: #25D366; color: #25D366; }
.btn-whatsapp:hover { background: #25D366; color: white; }

/* Bloc Info */
.info-block {
    background: var(--bg-card);
    padding: 80px 10%;
    margin: 0 5% 100px;
    border-radius: 30px;
    text-align: center;
}
.info-content { max-width: 800px; margin: 0 auto; }

/* Responsive Page Produit */
@media screen and (max-width: 960px) {
    .product-hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .product-hero-image img { transform: rotate(0deg); max-width: 100%; }
    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
}

/* ========================================= */
/* --- PAGE "SERVICE INDISPONIBLE" --- */
/* ========================================= */

.unavailable-hero {
    padding: 150px 10% 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.status-icon {
    font-size: 4rem;
    color: var(--text-highlight);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.status-text {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.divider-line {
    width: 50px;
    height: 3px;
    background-color: var(--text-highlight);
    margin: 40px auto;
    border-radius: 2px;
}

.sub-text {
    font-size: 1rem;
    margin-bottom: 50px;
}

/* CONTAINER POUR CENTRER LA GRILLE */
.alternatives-wrapper {
    padding: 0 5% 150px; /* Marges latérales réduites */
    display: flex;
    justify-content: center;
}

/* GRILLE ÉQUILIBRÉE */
.alternatives-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px; /* Limite la largeur totale pour que ce soit compact */
}

/* CARTES JUMELLES */
.alt-card {
    flex: 1; /* Force les deux cartes à prendre la même largeur */
    min-width: 300px; /* Largeur minimum avant de passer en colonne */
    max-width: 400px; /* Largeur maximum */
    display: flex;
    flex-direction: column;
}

/* AJUSTEMENTS INTERNES CARTE */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.top-row h2 {
    font-size: 1.3rem;
    margin: 0;
}

.badge {
    background-color: var(--text-highlight);
    color: var(--bg-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.old-price {
    text-decoration: line-through;
    color: var(--accent);
    font-size: 0.9rem;
    margin-left: 10px;
    font-weight: 400;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media screen and (max-width: 768px) {
    .unavailable-hero { padding-top: 120px; }
    .status-icon { font-size: 3rem; }
    /* Sur mobile, on empile */
    .alternatives-grid { flex-direction: column; align-items: center; }
    .alt-card { width: 100%; max-width: 100%; }
}