.bg-cover {
    position: relative;
    background: url('/img/home_bg_crt.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    padding: 5vh 10vw;
}

/* SMOOTH OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeOverlay 1s ease-in-out forwards;
}

/* Fade-in effect */
@keyframes fadeOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* LOGO SIZE FIX - FORCED TO BE BIGGER */
.logo {
    width: 300px; /* Set a strong default size */
    max-width: 400px; /* Allow larger scaling on bigger screens */
    min-width: 250px; /* Prevent it from being too small */
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Force bigger logo on mobile */
@media (max-width: 768px) {
    .logo {
        width: 250px;
    }
}

/* Even bigger on large screens */
@media (min-width: 1200px) {
    .logo {
        width: 400px;
    }
}

/* Countdown text */
#countdown {
    font-size: 3rem; /* Bigger text */
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
