* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

header {
    margin-top: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #6366f1;
}

.content {
    max-width: 700px;
    margin: 3rem 0;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content h1 span {
    color: #6366f1;
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.time-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.time-box small {
    font-size: 0.85rem;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Form Styles */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.notify-form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.notify-form button {
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    background: #6366f1;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.notify-form button:hover {
    background: #4f46e5;
}

/* Footer Styles */
footer {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

footer p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content h1 { font-size: 2.5rem; }
    .countdown { gap: 0.5rem; }
    .time-box { min-width: 75px; padding: 1rem 0.5rem; }
    .time-box span { font-size: 1.8rem; }
    .notify-form { flex-direction: column; }
    .notify-form button { width: 100%; }
}
