.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
}

.age-gate-box {
    max-width: 440px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    background: var(--card-bg, #1a1a1a);
    border: 1px solid var(--border-color, #333);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-icon {
    font-size: 3rem;
    color: var(--accent-color, #d4af37);
    margin-bottom: 1rem;
}

.age-gate-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--text-primary, #fff);
}

.age-gate-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary, #aaa);
    margin: 0 0 1.5rem;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-gate-btn {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.age-gate-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.age-gate-btn-confirm {
    background: linear-gradient(135deg, var(--accent-color, #d4af37) 0%, #f0c952 100%);
    color: #1a1a1a;
}

.age-gate-btn-decline {
    background: transparent;
    color: var(--text-secondary, #888);
    border: 1px solid var(--border-color, #444);
}

html.age-gate-active {
    overflow: hidden;
}

.age-gate-denied[hidden] {
    display: none;
}

.age-gate-box-denied {
    border-color: rgba(220, 53, 69, 0.4);
}

.age-gate-icon-denied {
    color: #dc3545;
}

.age-gate-denied-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary, #fff);
    margin: 0;
}
