/* ================================================================
   Age Gate — Pulse Party House (Redesign 2026)
   ================================================================ */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
}

.age-gate.age-gate--hidden { display: none; }

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 32, 51, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.age-gate__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 24px;
    padding: 52px 44px 44px;
    max-width: 480px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Decorative accent bar at top */
.age-gate__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00A4A3, #6B2FFF, #FF4B28);
}

/* Soft circle decorator */
.age-gate__box::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,164,163,0.07) 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
    pointer-events: none;
}

.age-gate__brand {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00A4A3;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.age-gate__notice {
    font-size: 13px;
    color: #5C667A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.age-gate__question {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #172033;
    margin: 0 0 12px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.age-gate__sub {
    font-size: 14px;
    color: #5C667A;
    margin-bottom: 36px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.age-gate__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.age-gate__btn {
    flex: 1;
    max-width: 160px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.04em;
    outline: none;
}

.age-gate__btn:focus-visible {
    outline: 3px solid #00A4A3;
    outline-offset: 3px;
}

.age-gate__btn--yes {
    background: #FF4B28;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,75,40,0.35);
}

.age-gate__btn--yes:hover,
.age-gate__btn--yes:focus-visible {
    background: #F75838;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255,75,40,0.45);
}

.age-gate__btn--yes:active { transform: scale(0.97); }

.age-gate__btn--no {
    background: #F3FFFE;
    color: #5C667A;
    border: 2px solid rgba(23,32,51,0.12);
}

.age-gate__btn--no:hover,
.age-gate__btn--no:focus-visible {
    background: #e8e8e8;
    border-color: #bbb;
}

.age-gate__btn--no:active { transform: scale(0.97); }

.age-gate__legal {
    font-size: 12px;
    color: #9AA1AE;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.age-gate__legal a {
    color: #00A4A3;
    text-decoration: underline;
}

.age-gate-open { overflow: hidden; }

@media (max-width: 480px) {
    .age-gate__box { padding: 40px 24px 32px; }
    .age-gate__question { font-size: 24px; }
    .age-gate__btn { padding: 14px 16px; font-size: 15px; }
}
