/* ==========================================================================
   Fekete Dáma — age-gate.css
   18+ modal — styling only. Display controlled by JS (inline style), never CSS.
   Gold accent theme, square buttons (radius 2px), dark backdrop.
   ========================================================================== */

.fd-age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 16, 19, 0.96);
    padding: var(--s-24);
    align-items: center;
    justify-content: center;
    /* display set by JS */
}

.fd-age-gate__box {
    width: 100%;
    max-width: 480px;
    padding: var(--s-48) var(--s-32);
    background: var(--c-surface);
    border: 1px solid var(--c-accent);
    border-top: 2px solid var(--c-accent);
    border-radius: var(--r-md);
    text-align: center;
    position: relative;
}

.fd-age-gate__box::before {
    content: '♠';
    display: block;
    font-size: 2.25rem;
    color: var(--c-accent);
    margin-bottom: var(--s-16);
    line-height: 1;
}

.fd-age-gate__title {
    font-family: var(--f-heading);
    font-size: 1.75rem;
    color: var(--c-white);
    margin-bottom: var(--s-16);
    font-weight: 600;
}

.fd-age-gate__text {
    color: var(--c-text-dim);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: var(--s-32);
}

.fd-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: var(--s-12);
}
@media (min-width: 480px) {
    .fd-age-gate__actions { flex-direction: row; justify-content: center; }
}

.fd-age-gate__actions .fd-btn { flex: 1; }
