/* ===== Griff & Glow — Page en construction ===== */

:root {
    --bg-1: #0f0c29;
    --bg-2: #302b63;
    --bg-3: #24243e;
    --accent: #ffb86c;
    --accent-2: #ff79c6;
    --text: #f5f5f7;
    --text-dim: #b8b8c8;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    background: linear-gradient(-45deg, var(--bg-1), var(--bg-2), var(--bg-3), var(--bg-1));
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
    overflow-x: hidden;
}

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

/* Étoiles décoratives */
.stars {
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(2px 2px at 90% 60%, #fff, transparent),
        radial-gradient(1px 1px at 33% 80%, #fff, transparent);
    background-repeat: repeat;
    opacity: 0.35;
    animation: twinkle 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes twinkle {
    from { opacity: 0.2; }
    to   { opacity: 0.5; }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 640px;
    animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.logo {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    -webkit-text-fill-color: var(--text);
    font-weight: 300;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 184, 108, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 184, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 108, 0); }
}

h1 {
    font-size: clamp(1rem, 4.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.subtitle {
    color: var(--text-dim);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Barre de progression */
.progress {
    width: 100%;
    max-width: 340px;
    height: 8px;
    margin: 0 auto 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 999px;
    animation: load 2s ease forwards;
}

@keyframes load {
    from { width: 0; }
    to   { width: 65%; }
}

.progress-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* Formulaire de notification */
.notify {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.notify input {
    flex: 1 1 240px;
    max-width: 300px;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
}

.notify input::placeholder { color: var(--text-dim); }

.notify input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.notify button {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.notify button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 121, 198, 0.35);
}

.notify-message {
    font-size: 0.9rem;
    color: var(--accent);
    min-height: 1.2rem;
    margin-bottom: 2rem;
}

/* Réseaux sociaux */
.socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.socials a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.25s;
}

.socials a:hover { color: var(--accent); }

.footer {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}
