/* Fichier : style.css - Édition Empire ITAF 2026 */
:root {
    --primary-gold: #f3ba2f;    /* Or Binance */
    --diamond-glow: #e2e8f0;    /* Éclat Diamant */
    --dark-bg: #0b0e11;         /* Fond sombre profond */
    --card-bg: #1e2329;         /* Fond de la carte */
    --text-main: #eaecef;
    --text-muted: #b7bdc6;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.card {
    background: var(--card-bg);
    width: 90%;
    max-width: 420px;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 186, 47, 0.1);
    text-align: center;
    border: 1px solid rgba(243, 186, 47, 0.2);
    position: relative;
    overflow: hidden;
}

/* Ligne d'or en haut de la carte */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f3ba2f, #ffecb3, #f3ba2f);
}

h1 {
    color: var(--primary-gold);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.vision {
    font-style: italic;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Boîte de statistiques Or et Diamant */
.stats {
    background: rgba(243, 186, 47, 0.05);
    border: 1px solid rgba(243, 186, 47, 0.3);
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-gold);
    box-shadow: inset 0 0 10px rgba(243, 186, 47, 0.05);
}

button {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* Boutons principaux avec effet dégradé Or */
#connectButton, #buyButton {
    background: linear-gradient(135deg, #f3ba2f 0%, #dba82a 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(243, 186, 47, 0.3);
}

#connectButton:hover, #buyButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 186, 47, 0.5);
    filter: brightness(1.1);
}

/* Boutons secondaires type Diamant/Acier */
.btn-secondary, #shopButton {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover, #shopButton:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

#status {
    font-size: 13px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-gold);
    opacity: 0.9;
}

/* Liens du bas */
footer a {
    color: var(--text-muted);
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary-gold);
}