/* ===== Welcome Offer: overlay ===== */

.wo-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.wo-overlay.hidden {
    display: none;
}

/* ===== Карточка ===== */

.wo-shell {
    width: min(620px, 94vw);
    max-height: calc(100dvh - 40px);
    background: radial-gradient(160% 160% at 0% 0%,
    #8a2158 0%,
    #220818 40%,
    #050307 100%);
    color: #ffffff;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    box-shadow:
            0 18px 60px rgba(0, 0, 0, 0.9),
            0 0 36px rgba(255, 47, 146, 0.32);
    padding: 22px 20px 20px;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* лёгкая анимация появления */
.wo-overlay[aria-hidden="false"] .wo-shell {
    animation: wo-pop .22s ease-out;
}

@keyframes wo-pop {
    from { opacity: 0; transform: translateY(10px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Крестик ===== */

.wo-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.85);
}

.wo-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ===== Заголовок ===== */

.wo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.wo-gift {
    font-size: 22px;
}

.wo-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.96;
}

/* ===== “1,000 COINS FREE” ===== */

.wo-free {
    margin: 4px 0 6px;
    padding: 10px 16px;
    border-radius: 18px;
    background: linear-gradient(90deg, #ff79ff, #b87dff);
    color: #1b0e23;
    font-weight: 800;
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(255, 121, 255, 0.4);
}

/* подпись “2,099 coins for …” */

.wo-sub {
    margin: 6px 0 16px;
    text-align: center;
    font-size: 15px;
    opacity: 0.95;
}

.wo-price {
    color: #ff8bd1;
    font-weight: 700;
}

/* ===== Таймер ===== */

.wo-timer-card {
    border-radius: 18px;
    padding: 14px 12px;
    margin: 0 2px 18px;
    background: linear-gradient(180deg,
    rgba(255, 210, 120, 0.22),
    rgba(80, 60, 22, 0.8));
    border: 1px solid rgba(255, 239, 173, 0.75);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.wo-timer-title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffefb8;
    margin-bottom: 4px;
}

.wo-timer {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.12em;
    color: #ff46b6;
}

/* ===== Список фич ===== */

.wo-features {
    display: grid;
    gap: 10px;
    margin: 10px 0 18px;
}

.wo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(7, 5, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.85);
    font-size: 15px;
}

.wo-feature span:first-child {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


.wo-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
}

.wo-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.07s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.wo-btn:active {
    transform: translateY(1px) scale(0.99);
}

/* Claim */

.wo-btn.primary {
    background: linear-gradient(90deg, #ff4eb6, #b86bff);
    color: #ffffff;
    box-shadow: 0 14px 36px rgba(255, 78, 182, 0.45);
}

/* Skip */

.wo-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #e9dfff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
}
