:root {
    --bg: #0b0b10;
    --card: #141420;
    --pink: #ff6fae;
    --purple: #9b6cff;
    --text: #f4f4f8;
    --muted: #b2b2c5;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

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

.text-link {
    color: inherit;          /* même couleur que le texte */
    text-decoration: none;   /* pas de soulignement */
    font-weight: inherit;    /* même graisse */
    cursor: pointer;
}

.text-link:visited,
.text-link:hover,
.text-link:active {
    color: inherit;
    text-decoration: none;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1c1025, var(--bg));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(145deg, #161625, #0f0f1a);
    border-radius: 28px;
    padding: 50px 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* TITRES */
h1 {
    font-size: clamp(2.6rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--muted);
    font-size: 1.15rem;
    margin-bottom: 50px;
}

/* COUNTDOWN */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}

.time-box {
    background: radial-gradient(circle at top, #1f1f35, #121222);
    border-radius: 22px;
    padding: 30px 15px;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 18px 40px rgba(0,0,0,0.8);
}

.number {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--pink);
}

.label {
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* INFOS */
.info {
    max-width: 600px;
    margin: 0 auto;
    background: #10101a;
    border-radius: 18px;
    padding: 25px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.info h2 {
    color: var(--purple);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info p {
    margin: 8px 0;
    font-size: 1rem;
}

footer {
    margin-top: 40px;
    color: var(--muted);
    font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}
