.age-consent-locked {
    overflow: hidden !important;
}

.age-consent-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
}

.age-consent-card {
    width: 100%;
    max-width: 460px;
    background: var(--bg-white, #ffffff);
    border: 1px solid rgba(214, 230, 187, 0.55);
    border-radius: 24px;
    padding: 34px 30px 30px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
    color: var(--text-primary, #1a1a1a);
}

.age-consent-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 14px;
}

.age-consent-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 32px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-green, #d6e6bb), var(--primary-light, #c0d99f));
    color: var(--text-primary, #1a1a1a);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.age-consent-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.15;
    font-weight: 800;
}

.age-consent-card p {
    margin: 0 auto 10px;
    color: var(--text-secondary, #555555);
    line-height: 1.6;
    max-width: 370px;
}

.age-consent-note {
    font-weight: 600;
}

.age-consent-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.age-consent-accept,
.age-consent-leave {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.age-consent-accept {
    border: none;
    background: linear-gradient(135deg, var(--primary-green, #d6e6bb), var(--primary-light, #c0d99f));
    color: var(--text-primary, #1a1a1a);
    box-shadow: 0 10px 24px rgba(143, 176, 61, 0.22);
}

.age-consent-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(143, 176, 61, 0.28);
}

.age-consent-leave {
    border: 1px solid rgba(214, 230, 187, 0.65);
    color: var(--text-secondary, #555555);
    background: transparent;
}

.age-consent-leave:hover {
    color: var(--accent-dark, #8fb03d);
    background: rgba(214, 230, 187, 0.12);
}

@media (max-width: 480px) {
    .age-consent-card {
        padding: 28px 22px 24px;
    }
}
