.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    padding: 0.8rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    pointer-events: auto;
    width: min(960px, calc(100vw - 1rem));
    background: rgba(18, 18, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    padding: 0.85rem 0.95rem;
    display: flex;
    gap: 0.9rem;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-banner__text {
    margin: 0;
    color: #e9e9ee;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-banner__link {
    color: #ff99cc;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 0.25rem;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: none;
    border-radius: 8px;
    min-height: 40px;
    padding: 0.52rem 0.9rem;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.cookie-banner__btn--primary {
    color: #1a0a14;
    background: linear-gradient(135deg, #ff99cc, #f34ea1);
}

.cookie-banner__btn--secondary {
    color: #f5f5f7;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 760px) {
    .cookie-banner {
        padding: 0.6rem;
    }

    .cookie-banner__inner {
        display: block;
        padding: 0.8rem;
    }

    .cookie-banner__text {
        margin-bottom: 0.65rem;
        font-size: 0.85rem;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
}
