.frontend-section-title {
    margin: 0;
    color: #1a1d24;
    letter-spacing: -0.04em;
    line-height: 1.08;
    font-size: 18px;
}

.frontend-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.frontend-chip-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.frontend-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 2px 6px;
    border: 1.5px solid var(--border, #e2e8f0);
    border-radius: 6px;
    background: var(--surface, #f7f8fa);
    color: var(--slate, #4a5568);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.frontend-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 2px 12px;
    border-radius: 999px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.frontend-status-ongoing {
    color: #1061d1;
    background: #e6f4ff;
}

.frontend-status-upcoming {
    color: var(--amber, #b45309);
    background: var(--amber-lt, #fef3c7);
}

.frontend-status-completed {
    color: var(--green, #276749);
    background: var(--green-lt, #c6f6d5);
}

.frontend-sold-out-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff1f1;
    color: #d12c2c;
    border: 1px solid #ffc9c9;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1;
}

.frontend-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.frontend-modal-backdrop {
    position: fixed;
    inset: 0;
}

.frontend-modal-shell {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.frontend-modal-dialog {
    background: #ffffff;
    overflow: hidden;
}

.frontend-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.frontend-modal-close {
    border: none;
    border-radius: 9999px;
    padding: 10px 14px;
    background: #f4f6fb;
    color: #15171d;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.frontend-modal-close:hover,
.frontend-modal-close:focus-visible {
    background: #e9edf4;
    color: var(--brand-primary, #262626);
    transform: translateY(-1px);
    outline: none;
}

.frontend-soft-surface {
    border-radius: 18px;
    background: #f8f9fd;
}

.frontend-soft-surface-alt {
    border-radius: 18px;
    background: #f7f9fd;
}
