:root {
    --bg-black: #050505;
    --card-glass: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.1);
    --text-pure: #ffffff;
    --text-muted: #86868b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-pure);
    font-family: 'Inter', sans-serif;
    min-height: 200vh; /* Permet de défiler pour voir les animations */
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Étoiles statiques et élégantes */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 45px 45px;
    z-index: -1;
}

.main-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 100px 24px;
    text-align: center;
}

/* Typographie Professionnelle */
.welcome-text {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.brand-text {
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 800;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #fff 30%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

/* Boutons de Navigation */
.buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.boton-elegante {
    padding: 18px 36px;
    background: var(--card-glass);
    border: 1px solid var(--border-light);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.boton-elegante:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Cartes News */
.info-card {
    background: var(--card-glass);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    backdrop-filter: blur(15px);
}

.info-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-10px);
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Bouton Download */
.download-button {
    display: block;
    width: 100%;
    padding: 24px;
    background: linear-gradient(90deg, #222, #111);
    color: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.download-button:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 600px) {
    .buttons-container { flex-direction: column; }
    .brand-text { font-size: 3rem; }
}
