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

:root {
    --bg-1: #0f0c29;
    --bg-2: #302b63;
    --bg-3: #24243e;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --card: rgba(255,255,255,0.05);
    --border: rgba(255,255,255,0.1);
}

html, body {
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
    color: var(--text);
    overflow-x: hidden;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: drift 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: #7c3aed; top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #2563eb; bottom: -50px; right: -50px; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: #db2777; top: 40%; left: 50%; animation-delay: -14s; }

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.1); }
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--accent-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 30%, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.countdown-item {
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    min-width: 90px;
}
.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 0.4rem;
}

.progress-wrap {
    width: 100%;
    max-width: 440px;
    margin-bottom: 3rem;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.progress-bar-bg {
    height: 6px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 100px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    width: 100%;
    margin-bottom: 3rem;
}
.notify-form input[type="email"] {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    outline: none;
    transition: border-color 0.2s;
}
.notify-form input[type="email"]:focus { border-color: var(--accent-light); }
.notify-form input::placeholder { color: var(--muted); }
.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.btn-primary:hover { background: #6d28d9; transform: translateY(-1px); }

footer {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}
.admin-link {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
}
.admin-link:hover { color: rgba(255,255,255,0.5); }
