#marseem-vip-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#marseem-vip-popup {
    background: #fff;
    padding: 20px 20px 20px 20px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
}

/* Headings inside the popup */
#marseem-vip-popup h1,
#marseem-vip-popup h2,
#marseem-vip-popup h3,
#marseem-vip-popup h4,
#marseem-vip-popup h5,
#marseem-vip-popup h6 {
    color: #484b4b;
    font-family: Oswald, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 1.35;
}

#marseem-vip-popup h2 {
    font-size: 28px;          /* adjust size */
    margin-top: 30px;         /* space ABOVE the title */
    margin-bottom: 15px;      /* space BELOW the title */
}

.marseem-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;  /* center content horizontally */
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.marseem-input-wrapper .prefix {
    background: #f4f4f4;
    padding: 12px;
    font-weight: bold;
    border-right: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
}

.marseem-input-wrapper input {
    flex: 1;
    padding: 10px;
    border: 0;
    outline: none;
    border-radius: 0 6px 6px 0;
    text-align: center;          /* center digits inside input */
    min-width: 80px;             /* optional: ensures input has visible width */
}

#marseem-apply-btn {
    margin-top: 12px;
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#marseem-vip-message {
    margin-top: 15px;
    font-weight: bold;
}

/* Desktop: button beside input */
@media (min-width: 800px) {
    #marseem-vip-popup {
        max-width: 500px;
    }

    .marseem-input-wrapper {
        width: 70%;
        margin: 0 auto;
        display: inline-flex;
    }

    #marseem-apply-btn {
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
    }
}

/* Mobile/tablet: button below */
@media (max-width: 799px) {
    #marseem-apply-btn {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
}
/* Floating circular countdown */
#dream-countdown {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 10001;
    pointer-events: none;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    opacity: 0; /* hidden by default, JS will fade in */
    transition: opacity 1s linear;
}

#dream-countdown svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

#dream-countdown circle {
    fill: none;
    stroke-width: 3;
}

#dream-countdown circle.bg {
    stroke: rgba(255,255,255,0.2);
}

#dream-countdown circle.progress {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 157; /* 2 * PI * r (r=25) */
    stroke-dashoffset: 157;
    transition: stroke-dashoffset 1s linear;
}
