/* Second sticky: CLAIM CTA (English casino page). Dark strip, shorter than promo-code bar. */

.sticky-claim {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: min(900px, calc(100% - 24px));
    min-height: 52px;
    /* Extra right padding: absolute close (26px + inset) + gap before CLAIM */
    padding: 10px 48px 10px 14px;
    background: linear-gradient(180deg, #141a2e 0%, #0b0f1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translate(-50%, 140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    box-sizing: border-box;
}

.sticky-claim.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-claim__close {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.sticky-claim__close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.sticky-claim__main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.sticky-claim__logo {
    width: 36px;
    height: 36px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.sticky-claim__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.sticky-claim__headline {
    margin: 0;
    color: #f8fafc;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.sticky-claim__legal {
    margin: 0;
    color: rgba(248, 250, 252, 0.45);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sticky-claim__cta-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 4px;
}

.sticky-claim__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    background: #005bff;
    color: #fff !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 91, 255, 0.45);
    white-space: nowrap;
}

.sticky-claim__cta:hover {
    background: #1a6dff;
    color: #fff !important;
}

@media (max-width: 640px) {
    .sticky-claim {
        left: 50%;
        right: auto;
        width: min(440px, calc(100% - 20px));
        transform: translate(-50%, 140%);
        flex-wrap: wrap;
        /* Симметричные поля: иначе большой padding-right «съедает» центр второй строки с CLAIM */
        padding: 10px 14px 12px 14px;
        gap: 10px;
    }

    .sticky-claim.is-visible {
        transform: translate(-50%, 0);
    }

    .sticky-claim__main {
        flex: 1 1 100%;
        min-width: 0;
        /* Место под крестик только в первой строке (текст не залезает под ×) */
        padding-right: 36px;
    }

    .sticky-claim__headline {
        font-size: 14px;
    }

    .sticky-claim__cta-wrap {
        flex: 1 1 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }

    .sticky-claim__cta {
        width: auto;
        min-width: 7.5rem;
        min-height: 42px;
        padding: 0 28px;
    }
}
