body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    /* Background image */
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
}

.overlay {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.45); /* darken for readability */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.small {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.countdown {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ffdd66;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}


.small a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.small a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Soft glow for all main text */
h1, h2, .small {
    text-shadow:
        /* existing soft dark glow */
        0 0 6px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.4),

        /* warm gold halo */
        0 0 8px rgba(255, 200, 80, 0.6),
        0 0 16px rgba(255, 180, 50, 0.4);
}


/* Mobile-friendly adjustments */
@media (max-width: 768px) {

    h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .countdown {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .small {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .content {
        padding: 20px;
        width: 90%;
    }

    .overlay {
        padding: 20px;
        text-align: center;
    }
}

/* Extra-small screens (phones under 400px wide) */
@media (max-width: 400px) {

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .countdown {
        font-size: 1.2rem;
    }

    .small {
        font-size: 0.85rem;
    }
}

