:root {
    --primary-gold: #D4AF37;
    --accent-blue: #0070f3;
    --bg-dark: #09090b;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image & Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/bg.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    animation: slowZoom 40s linear infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(9, 9, 11, 0.7) 100%);
    z-index: -1;
}

@keyframes slowZoom {
    from { transform: scale(1.0); }
    to { transform: scale(1.15); }
}

/* Main Layout */
.hero-container {
    max-width: 900px;
    width: 95%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.logo span {
    color: var(--accent-blue);
}

/* Content Card */
.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 5rem 4rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.badge {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 100px;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, #FFF 0%, #AAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}


.subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Countdown */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
}

.number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1rem;
}

/* Form */
.notify-form {
    max-width: 450px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.25rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.02);
    background: #f4f4f5;
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.875rem;
    height: 1.2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    animation: fadeIn 2s ease 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .content-card { padding: 3rem 1.5rem; }
    .countdown-grid { gap: 0.75rem; }
    .number { font-size: 1.75rem; }
    .input-group { flex-direction: column; background: transparent; border: none; padding: 0; }
    .input-group input { 
        background: rgba(255,255,255,0.05); 
        border: 1px solid var(--glass-border);
        border-radius: 100px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
}
