/* ========================================
   1. GLOBAL STYLES & VARIABLES
   ======================================= */
:root {
    /* Defined the premium, subtle dark mode aesthetic */
    --color-bg: #0a0a0a; /* Near Black - Very deep */
    --color-text: #e0e0e0; /* Soft White */
    --color-accent: #3498db; /* Medium Sky Blue (Easy to change!) */
    --padding-section: 2rem 1rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    /* Ensures the content is perfectly centered vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
}

/* The main wrapper */
.container {
    max-width: 700px; /* Perfect width for readability */
    text-align: center;
    /* Initial opacity for the animation effect */
    opacity: 0;
    animation: fadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}

/* ========================================
   2. TYPOGRAPHY & LAYOUT
   ======================================= */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--color-accent); /* Use accent color for branding */
}

.main-content {
    padding: 0 1rem;
}

/* Tagline: A subtle, anticipatory phrase */
.coming-soon-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 10px;
}

/* Headline: Large and impactful */
.headline {
    font-size: 4rem;
    font-weight: 900; /* Super bold */
    margin-bottom: 1rem;
    letter-spacing: -2px; /* Tighter spacing for punchy look */
    line-height: 1.1;
}

/* Description: Explains the value proposition */
.description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ========================================
   3. COUNTDOWN TEASER
   ============================================= */
.date-teaser {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block; /* Keeps the divider centered */
}

.date-text {
    font-size: 1.1em;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 10px;
}

.date-text span {
    font-weight: 600;
    margin-right: 15px;
}

/* 
* ANIMATION (Optional: Adding a subtle glow/pulse to the countdown text
*/
.date-text span:first-child {
    animation: pulse 2s infinite ease-in-out;
}


/* 
* KEYFRAMES FOR ANIMATION 
*/
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

