.fda-teaser-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 8, 14, 0.93);
    opacity: 0;
    transition: opacity 0.4s ease;
    font-family: 'Montserrat', sans-serif;
}
.fda-teaser-overlay.is-visible {
    opacity: 1;
}

.fda-teaser-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.fda-teaser-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.1em;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.fda-teaser-close:hover {
    background: rgba(255,255,255,0.18);
}

.fda-teaser-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    text-align: center;
    color: #fff;
    background-color: #0D1A26;
    border-radius: 16px;
    outline: solid #ffffff4f 3px;
    outline-offset: -3px;
    box-shadow: 0px 20px 60px -10px rgba(0,0,0,0.7), 0px 0px 40px -5px rgb(255 120 0 / 45%);
    padding: 78px 30px 34px;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(.2,.8,.3,1.2) 0.15s;
}
.fda-teaser-overlay.is-visible .fda-teaser-box {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fda-teaser-logo {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 260px;
    width: 78%;
    height: auto;
    margin: 0;
    z-index: 2;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.55));
}

.fda-teaser-title {
    font-family: "Amarante", serif;
    text-transform: uppercase;
    font-size: 1.6em;
    line-height: 1.2;
    margin: 0 0 14px;
}
.fda-teaser-text {
    font-size: 1em;
    opacity: 0.9;
    margin: 0 0 22px;
    line-height: 1.5;
}
.fda-teaser-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.fda-teaser-countdown > div {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 4px;
}
.fda-teaser-countdown-num {
    display: block;
    font-family: "Amarante", serif;
    font-size: 1.5em;
}
.fda-teaser-countdown-label {
    display: block;
    font-size: 0.7em;
    opacity: 0.7;
    text-transform: uppercase;
}
.fda-teaser-cta {
    display: inline-block;
    text-align: center;
    background: radial-gradient(120% 160% at 30% 0%, #ffcf70 0%, #ff9d2e 30%, #f2760f 60%, #c94e05 100%);
    color: #fff;
    font-family: "Amarante", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.05em;
    padding: 15px 38px;
    border-radius: 999px;
    text-decoration: none;
    outline: solid 2px #ffffff4f;
    outline-offset: -2px;
    box-shadow: 0px 0px 26px -3px rgb(255 120 0 / 65%);
}
.fda-teaser-cta:hover {
    filter: brightness(1.1);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 480px) {
    .fda-teaser-box {
        padding: 66px 22px 28px;
    }
    .fda-teaser-logo {
        top: -50px;
        max-width: 200px;
    }
    .fda-teaser-title {
        font-size: 1.35em;
    }
    .fda-teaser-close {
        top: 14px;
        right: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fda-teaser-overlay,
    .fda-teaser-box {
        transition: opacity 0.3s ease;
        transform: none !important;
    }
}
