/* Minimal Countdown Overlay */
.countdown-overlay {
    position: absolute;
    bottom: 350px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.countdown-simple {
    font-family: 'Courier New', monospace;
    font-size: 7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 4px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: baseline;
    transition: opacity 0.3s ease;
}

.countdown-overlay:hover .countdown-simple {
    opacity: 0.9;
}

.countdown-sep {
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
}

/* You'll need to make sure your hero section has position: relative */
.hero {
    position: relative;
    /* Your existing hero styles here */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Add your background image here */
    /* background: url('your-background-image.jpg') center/cover no-repeat; */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-simple {
        font-size: 2rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .countdown-simple {
        font-size: 1.6rem;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
    
    .countdown-overlay {
        bottom: 30px;
    }
}

@media (max-width: 400px) {
    .countdown-simple {
        font-size: 1.4rem;
    }
    
    .countdown-sep {
        margin: 0 3px;
    }
}