/* Variables - Thème Café */
:root {
    --bg-dark: #231815;       /* Noir café intense */
    --card-bg: #3E2723;       /* Marron chocolat */
    --accent: #D4A373;        /* Caramel / Latté */
    --accent-hover: #c88f58;  /* Caramel foncé */
    --text-light: #FAEDCD;    /* Crème */
    --text-muted: #D7CCC8;    /* Beige grisé */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Petit motif de fond léger (optionnel) */
    background-image: radial-gradient(#3E2723 1px, transparent 1px);
    background-size: 30px 30px;
}

.maintenance-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 500px;
    width: 90%;
    border-top: 5px solid var(--accent);
}

/* --- ANIMATION CAFE --- */
.coffee-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem auto;
}

.coffee-cup {
    width: 80px;
    height: 80px;
    stroke: var(--accent);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.steam {
    position: absolute;
    width: 6px;
    height: 25px;
    background: var(--accent);
    border-radius: 10px;
    bottom: 60px;
    opacity: 0;
    animation: rise 2s infinite ease-in-out;
}

.steam-1 { left: 40%; animation-delay: 0.2s; }
.steam-2 { left: 50%; animation-delay: 0.6s; }
.steam-3 { left: 60%; animation-delay: 0.4s; }

@keyframes rise {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-30px) scaleX(2); opacity: 0; }
}

/* --- TEXTES --- */
h1 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* --- BADGE STATUT --- */
.status-container {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 163, 115, 0.1); /* Caramel transparent */
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 163, 115, 0.3);
    margin-bottom: 2rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 163, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }
}

.status-text {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- BOUTON --- */
.discord-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
}

.discord-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}
