/* =========================================
   TON CODE D'ORIGINE (CONSERVÉ)
   ========================================= */
body {
    background-color: #120c18;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #08050a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.swipe-animation {
    display: inline-block;
    background: linear-gradient(
        to right, 
        #ff7800 0%, 
        #ff7800 40%, 
        #ffffff 50%, 
        #ff7800 60%, 
        #ff7800 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep 3s linear infinite;
}

@keyframes sweep {
    0% { background-position: 100% center; }
    100% { background-position: -100% center; }
}

.main-title {
    font-size: 85px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    margin-top: 50px;
    margin-bottom: 30px;
}

.hero {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: #ff7800;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(255, 120, 0, 0.3);
}

.badge {
    background: rgba(255, 120, 0, 0.1);
    color: #ffb066;
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 120, 0, 0.3);
    margin-bottom: 20px;
}

/* =========================================
   ÉLÉMENTS À AJOUTER (SHOWCASE, STATS, TRUST)
   ========================================= */

/* Le texte de description (Sous-titre) */
.subtitle {
    margin-top: 20px;
    color: #94a3b8;
    font-size: 19px;
    max-width: 750px;
    line-height: 1.6;
    text-align: center;
    font-weight: 700 !important; /* VERROUILLÉ GRAS */
    margin-bottom: 40px;
}

/* Liste des features (tokens, etc) */
.features-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 700 !important; /* VERROUILLÉ GRAS */
}

/* Bloc noir pour le futur GIF */
.showcase-placeholder {
    width: 90vw;
    max-width: 1000px;
    aspect-ratio: 16 / 10;
    background: #08050a;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    margin-bottom: 80px;
}



/* Section Statistiques */

.stat-card { text-align: center; }


.stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 700 !important; /* VERROUILLÉ GRAS */
    text-transform: none;
    letter-spacing: 0;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 700 !important; /* VERROUILLÉ GRAS */

/* --- NOUVEAUX ÉLÉMENTS ISOLÉS --- */

/* La ligne avec le point lumineux orange */



}