* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0e0e0e;
    color: #fff;
}

.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
    ),
    url('../img/banner.jpg') center/cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero h1 {
    font-size: 3rem;
    color: #F28C28; /* orange TRIATALE */
    text-shadow: 0 0 10px rgba(242, 140, 40, 0.6);
}

.hero p {
    margin-top: 10px;
    color: #F28C28; /* même orange */
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(242, 140, 40, 0.5);
}


.btn {
    margin-top: 20px;
    padding: 15px 30px;
    background: #8a2be2; /* violet */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #6a1bbd; /* violet plus foncé */
    transform: scale(1.05);
}

footer {
    padding: 20px;
    background: #000;
    text-align: center;
    font-size: 0.9rem;
}

.top-buttons {
    position: fixed;
    top: 20px;
    right: 20px;

    display: flex;
    gap: 12px;
    z-index: 1000;
}

/* Bouton Vote (rouge) */
.vote-btn {
    padding: 12px 22px;
    background: #dc2626; /* rouge */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.vote-btn:hover {
    background: #991b1b;
    transform: scale(1.05);
}

/* Bouton Discord (violet) */
.discord-btn {
    padding: 12px 22px;
    background: #7c3aed;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.discord-btn:hover {
    background: #5b21b6;
    transform: scale(1.05);
}

.copy-message {
    margin-top: 15px;
    color: #F28C28; /* orange TRIATALE */
    font-weight: bold;
    display: none;
    text-shadow: 0 0 8px rgba(242, 140, 40, 0.6);
}

/* Bouton Boutique (haut gauche) */
.shop-btn {
    position: fixed;
    top: 20px;
    left: 20px;

    padding: 12px 22px;
    background: #F28C28; /* ORANGE TRIATALE */
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;

    transition: 0.3s ease;
    z-index: 1000;
}

.shop-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}

.shop-title {
    text-align: center;
    color: #F28C28;
}

.cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7c3aed;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

/* BARRE HAUTE */
.top-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BOUTIQUE */
.shop-btn,
.login-btn,
.user-box {
    padding: 10px 18px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;

    color: #f28c28;
    background: rgba(20,10,35,0.85);
    border: 2px solid #f28c28;

    box-shadow: 0 0 12px rgba(242,140,40,0.6);
}

/* USER CONNECTÉ */
.user-box {
    cursor: default;
}

/* BOUTONS DROITE */
.top-buttons {
    display: flex;
    gap: 12px;
}






