/* waitsite.css — LES EXCELLENCES */

:root {
    --violet-electrical: #6e00ff;
    --pink-fuchsia: #ff00d4;
    --cyan-electrical: #00c3ff;
    --white: #ffffff;
    --black: #000000;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: var(--black);
    font-family: var(--font-primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.waitsite-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.waitsite-logo img {
    height: 75px;
    margin-bottom: 2rem;
}

.waitsite-title {
    font-size: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--violet-electrical), var(--cyan-electrical), var(--sky-light), var(--pink-fuchsia), var(--red), var(--sky-light));
    background-size: 150% 150%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientFlow 12s ease-in-out infinite;
    margin-bottom: 1rem;
}

.waitsite-subtext {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.8;
    margin-bottom: 3rem;
}

#countdown {
    background: linear-gradient(135deg, var(--cyan-electrical), var(--pink-fuchsia), var(--violet-electrical));
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientFlow 5s ease infinite;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 2rem;
}

.background-layers {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(110,0,255,0.25) 0%, rgba(0,195,255,0.05) 60%, transparent 100%);
    pointer-events: none;
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}