:root {
    --primary-color: #6366f1;
    --text-color: #ffffff;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

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

.container {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.title span {
    color: var(--primary-color);
}

.description {
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* Countdown Clock Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.time-block {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.time-block p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    color: var(--primary-color);
}

/* Form Styles */
.notify-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

button {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

@media (max-width: 600px) {
    .title { font-size: 2.5rem; }
    .countdown-container { gap: 10px; }
    .time-block { min-width: 70px; padding: 10px; }
    .time-block span { font-size: 1.5rem; }
    .notify-form { flex-direction: column; }
}
