/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Subtle Animated Background Elements */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 2rem;
    width: 100%;
}

/* Header Styles */
.logo {
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6366f1; /* Modern Indigo */
}

/* Content Styles */
.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.content p {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

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

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

.time-box p {
    font-size: 0.8rem;
    color: #6366f1;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Subscription Form Styles */
.signup-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup-form input[type="email"]:focus {
    border-color: #6366f1;
}

.signup-form button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    background: #6366f1;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

/* Footer & Social Styles */
.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #a1a1aa;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.8rem;
    color: #71717a;
}

/* Responsive Scaling */
@media (max-width: 480px) {
    .content h1 { font-size: 2rem; }
    .countdown { gap: 0.75rem; }
    .time-box { min-width: 70px; padding: 0.75rem; }
    .time-box span { font-size: 1.5rem; }
    .signup-form { flex-direction: column; }
    .signup-form button { width: 100%; }
}
