/* --- Global Styles & Resets --- */
:root {
    --primary-color: #007BFF; /* A confident, trustworthy blue */
    --text-color: #F0F0F0;
    --text-secondary-color: #a0a0a0;
    --bg-color: #121212;
    --card-bg-color: #1E1E1E;
    --border-color: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.1), transparent 30%), 
                      radial-gradient(circle at 80% 90%, rgba(0, 123, 255, 0.08), transparent 40%);
    display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 2rem;
}

/* --- Main Container --- */
.container { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 100%; max-width: 750px; gap: 2rem; }

/* --- Header & Logo --- */
.logo { font-size: clamp(3rem, 12vw, 6rem); font-weight: 800; letter-spacing: -3px; line-height: 1; }
.logo .brand { color: var(--text-color); }
.logo .domain { color: var(--primary-color); font-weight: 600; }
.tagline { font-size: clamp(1.1rem, 4vw, 1.5rem); font-weight: 400; color: var(--text-secondary-color); margin-top: 0.5rem; }

/* --- Main Content & Countdown --- */
main h2 { font-weight: 600; font-size: 1.2rem; color: var(--text-secondary-color); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.countdown { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.time-box { background: var(--card-bg-color); border: 1px solid var(--border-color); border-radius: 12px; padding: 1rem 1.5rem; min-width: 110px; }
.time-box span { display: block; font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 800; line-height: 1; }
.time-box small { font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary-color); }

/* --- Contact Section --- */
.signup-section { background: var(--card-bg-color); border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; width: 100%; }
.signup-section h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.signup-section p { font-weight: 400; color: var(--text-secondary-color); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === NEW STYLE FOR THE CONTACT BUTTON === */
.email-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.email-button:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
}

/* --- Footer --- */
footer { opacity: 0.6; margin-top: 1rem; }
.social-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.social-links a { color: var(--text-secondary-color); font-size: 1.3rem; transition: color 0.3s ease, transform 0.3s ease; }
.social-links a:hover { color: var(--primary-color); transform: translateY(-3px); }
.copyright { font-size: 0.8rem; font-weight: 400; color: var(--text-secondary-color); }

/* --- Responsive Design --- */
@media (max-width: 600px) {
    .countdown { gap: 0.75rem; }
    .time-box { padding: 0.8rem; min-width: 70px; }
}