/* Global Styles */
:root {
    --primary-color: #1a1a1a;   /* Deep Charcoal - High Contrast */
    --accent-color: #b71c1c;    /* Retro Red - Contrast */
    --bg-color: #ffffff;
    --font-primary: 'Roboto', sans-serif;
    --font-typewriter: 'Courier Prime', monospace;
    --font-serif: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--primary-color);
    height: 100vh;
    overflow: hidden; /* Prevent scrolling for the full-screen effect */
    display: flex;
    flex-direction: column;
    position: relative;
    /* Soft B&W Image Fallback - Since image generation failed, we use a stylish gradient */
    background: radial-gradient(circle at center, #f5f5f5 0%, #e0e0e0 100%); 
}

/* Background Image Handling */
/* Uncomment and add your image path to use a real image */
/* 
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3; 
    filter: grayscale(100%);
    z-index: -1;
}
*/

/* Main Content Container */
.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 2rem;
    gap: 3rem;
}

/* Typewriter Section */
.typewriter-container {
    min-height: 80px; /* Space reserved for text */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

#typewriter-text {
    font-family: var(--font-typewriter);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.4;
}

.cursor {
    font-family: var(--font-typewriter);
    font-size: 1.5rem;
    animation: blink 0.8s infinite;
    margin-left: 2px;
    color: var(--primary-color);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Countdown Section */
.countdown-container {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 2rem 0;
    width: 100%;
    max-width: 800px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.time-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-segment span:first-child {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.time-segment .label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    color: var(--primary-color);
}

/* Branding Section */
.branding-container h1 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    #typewriter-text {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 1.5rem;
    }
    
    .time-segment span:first-child {
        font-size: 2.5rem;
    }
    
    .branding-container h1 {
        font-size: 1.8rem;
    }
}