.age-gate-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(11,17,32,0.95); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.age-gate-card {
    width: 100%; max-width: 460px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.age-gate-logo { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 28px; }
.age-gate-title { text-align: center; font-size: 24px; margin-bottom: 8px; }
.age-gate-desc { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.age-gate-alert {
    padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px;
    font-size: 13px; font-weight: 500;
}
.age-gate-alert.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--error); }
.age-gate-alert.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: var(--success); }
.age-gate-form .password-wrap { position: relative; }
.age-gate-form .password-toggle {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-muted); cursor: pointer;
    padding: 4px; transition: color var(--transition);
}
.age-gate-form .password-toggle:hover { color: var(--text-heading); }
.checkbox-label {
    display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px;
    cursor: pointer; font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
    accent-color: var(--accent); cursor: pointer;
}
.checkbox-label strong { color: var(--text-heading); }
#registerCheckboxes { margin: 20px 0; }
.age-gate-form .btn { margin-top: 8px; }
.age-gate-switch {
    text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted);
}
.link-btn {
    background: none; border: none; color: var(--accent); cursor: pointer;
    font-size: 14px; font-weight: 600; transition: color var(--transition);
}
.link-btn:hover { color: var(--accent-hover); }
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
