/* Age Verification Page */
html, body {
    height: 100%;
    margin: 0;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.age-gate__card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.age-gate__logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #e8b4b8;
    margin-bottom: 24px;
}

.age-gate__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #e8b4b8;
}

.age-gate__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.age-gate__text {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.age-gate__actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.age-gate__actions form {
    margin: 0;
}

.btn-enter {
    width: 100%;
    padding: 14px;
    background: #e8b4b8;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-enter:hover {
    background: #d9a0a5;
}

.btn-leave {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.btn-leave:hover {
    color: #999;
    border-color: #666;
}
