/* --- Design futuriste avec effet néon cyan --- */

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #101820 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    max-width: 600px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease;
}

h1 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 1rem;
}

.coming-soon {
    font-size: 1.3rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.teaser {
    font-size: 0.95rem;
    color: #aaa;
    font-style: italic;
}

footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}
