body.sb-scroll-lock {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate.is-hidden {
    display: none;
}

.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 22, 0.55);
    backdrop-filter: blur(4px);
}

.age-gate-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: var(--sb-dark-soft);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--sb-radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--sb-shadow), 0 0 60px rgba(20, 184, 166, 0.15);
}

.age-gate-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 50%;
    color: var(--sb-teal-light);
    font-size: 28px;
}

.age-gate-title {
    font-family: var(--sb-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--sb-white);
    margin-bottom: 12px;
}

.age-gate-text {
    font-size: 14px;
    color: var(--sb-gray-300);
    line-height: 1.65;
    margin-bottom: 28px;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.age-gate-btn {
    font-family: var(--sb-font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--sb-radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.age-gate-btn-accept {
    background: var(--sb-teal);
    color: var(--sb-dark);
}

.age-gate-btn-accept:hover {
    background: var(--sb-teal-light);
    transform: translateY(-1px);
}

.age-gate-btn-decline {
    background: transparent;
    color: var(--sb-gray-300);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.age-gate-btn-decline:hover {
    border-color: rgba(244, 63, 94, 0.4);
    color: var(--sb-rose);
}

.age-gate-restricted .age-gate-icon {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.25);
    color: var(--sb-rose);
}

.age-gate-panel {
    display: none;
}

.age-gate-panel.is-active {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    background: var(--sb-dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--sb-radius-lg);
    padding: 20px 24px;
    box-shadow: var(--sb-shadow);
}

.cookie-banner-text {
    flex: 1;
    min-width: 240px;
    font-size: 13px;
    color: var(--sb-gray-300);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--sb-teal-light);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    font-family: var(--sb-font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--sb-radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-btn-accept {
    background: var(--sb-teal);
    color: var(--sb-dark);
}

.cookie-btn-accept:hover {
    background: var(--sb-teal-light);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--sb-gray-300);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    color: var(--sb-white);
}
