:root {
    --ink: #12151f;
    --muted: #667085;
    --line: #dde3ee;
    --surface: #ffffff;
    --soft: #f5f7fb;
    --accent: #e73535;
    --accent-dark: #b91f2c;
    --green: #11875d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 6vw;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand,
.nav {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: white;
    background: var(--accent);
    border-radius: 8px;
    font-size: 13px;
}

.nav {
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.nav-form {
    margin: 0;
}

.nav-form button {
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: end;
    min-height: 430px;
    padding: 76px 6vw 54px;
    color: white;
    background:
        linear-gradient(90deg, rgba(18, 21, 31, 0.95), rgba(18, 21, 31, 0.62)),
        url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero h1,
.details-copy h1,
.confirmation h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-panel,
.match-card,
.price-list,
.booking-form,
.confirmation,
.lookup-result,
.notice {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.hero-panel {
    padding: 24px;
    color: var(--ink);
}

.hero-panel span,
.summary-list span,
.price-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel strong {
    display: block;
    margin-top: 8px;
    color: var(--accent);
    font-size: 54px;
}

.content-shell,
.booking-layout,
.lookup {
    width: min(1180px, 88vw);
    margin: 54px auto;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading h2,
.price-list h2,
.booking-form h2,
.booking-form h1 {
    margin: 0;
    font-size: 28px;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.match-card {
    overflow: hidden;
}

.match-art {
    min-height: 180px;
    background:
        linear-gradient(rgba(18, 21, 31, 0.12), rgba(18, 21, 31, 0.12)),
        url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=900&q=80") center/cover;
}

.match-body {
    padding: 22px;
}

.date-line,
.venue {
    color: var(--muted);
    font-size: 14px;
}

.match-body h3 {
    min-height: 62px;
    margin: 10px 0;
    font-size: 22px;
}

.card-footer,
.price-row,
.total-box,
.summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.card-footer {
    margin-top: 22px;
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    color: white;
    background: var(--accent);
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.button:hover {
    background: var(--accent-dark);
}

.button-wide {
    width: 100%;
}

.details-hero {
    display: grid;
    grid-template-columns: minmax(320px, 48vw) 1fr;
    min-height: 430px;
    background: var(--ink);
    color: white;
}

.details-art {
    background:
        linear-gradient(rgba(18, 21, 31, 0.1), rgba(18, 21, 31, 0.1)),
        url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.details-copy {
    align-self: end;
    padding: 54px 6vw 54px 42px;
}

.details-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.seat-pill {
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 14px;
    color: #10261e;
    background: #c7f7df;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.price-list,
.booking-form,
.confirmation,
.lookup-result,
.notice {
    padding: 26px;
}

.price-row,
.total-box,
.summary-list div {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.price-row:last-child,
.summary-list div:last-child {
    border-bottom: 0;
}

.booking-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

input,
select {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    color: var(--ink);
    background: #fbfcff;
    border: 1px solid #ccd5e1;
    border-radius: 8px;
    font: inherit;
}

input:focus,
select:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(231, 53, 53, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 16px;
}

.total-box {
    margin: 4px 0;
    padding: 16px;
    background: #fff6f6;
    border: 1px solid #ffd5d5;
    border-radius: 8px;
}

.seat-picker {
    display: grid;
    gap: 14px;
    padding: 16px;
    background: #f7f8fb;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.seat-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.seat-picker-head h3 {
    margin: 0;
    font-size: 20px;
}

.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
}

.seat-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: white;
    border: 1px solid #b9c3d4;
}

.legend-dot.selected {
    background: #16a34a;
}

.legend-dot.booked {
    background: #cbd5e1;
}

.mapbox {
    display: none;
    overflow-x: auto;
    padding: 14px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.02);
}

.mapbox.active {
    display: block;
}

.pitch {
    width: min(520px, 100%);
    margin: 0 auto 12px;
    padding: 10px;
    color: #14532d;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.block {
    margin-bottom: 12px;
    color: #e21b2d;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.seat-grid {
    display: grid;
    grid-template-columns: 68px repeat(12, 42px);
    gap: 8px;
    min-width: 650px;
    align-items: center;
}

.row-label {
    color: #475467;
    font-size: 12px;
    font-weight: 900;
    text-align: right;
}

.seat {
    display: grid;
    width: 42px;
    height: 38px;
    place-items: center;
    color: #111827;
    background: white;
    border: 1px solid #b9c3d4;
    border-radius: 8px 8px 14px 14px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.seat:hover {
    border-color: #e21b2d;
    transform: translateY(-1px);
}

.seat.selected {
    color: white;
    background: #16a34a;
    border-color: #15803d;
}

.seat.booked,
.seat:disabled {
    color: #64748b;
    background: #cbd5e1;
    border-color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.82;
    transform: none;
}

.selected-seat-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
}

.selected-seat-box span {
    color: #166534;
    font-size: 13px;
    font-weight: 800;
}

.selected-seat-box strong {
    color: #14532d;
    text-align: right;
}

.selected-seat-box .seat-warning {
    color: #b91c1c;
}

.checkout-page {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 24px;
    width: min(1120px, 90vw);
    margin: 54px auto;
    align-items: start;
}

.checkout-summary {
    padding: 28px;
    color: white;
    background:
        linear-gradient(135deg, rgba(18, 21, 31, 0.94), rgba(185, 31, 44, 0.78)),
        url("https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1100&q=80") center/cover;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
}

.checkout-summary h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.04;
    letter-spacing: 0;
}

.checkout-summary p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.checkout-seat-card {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.checkout-seat-card span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 800;
}

.checkout-seat-card strong {
    color: white;
    font-size: 20px;
}

.checkout-form {
    gap: 18px;
}

.price-breakout {
    display: grid;
    gap: 0;
    margin-top: 4px;
    overflow: hidden;
    background: #fbfcff;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.price-breakout h3 {
    margin: 0;
    padding: 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e3e8f0;
    font-size: 18px;
}

.price-breakout div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: #475467;
    border-bottom: 1px solid #e3e8f0;
}

.price-breakout div:last-child {
    border-bottom: 0;
}

.price-breakout strong {
    color: #111827;
}

.price-breakout .final-price {
    color: #111827;
    background: #fff6f6;
    font-size: 18px;
    font-weight: 900;
}

.price-breakout .final-price strong {
    color: #e21b2d;
}

.payment-page,
.utr-page {
    width: min(760px, 92vw);
    margin: 42px auto;
}

.payment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.payment-back {
    color: #e21b2d;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.payment-logo {
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    text-transform: lowercase;
}

.payment-logo span {
    display: inline-block;
    margin: 0 3px;
    padding: 2px 6px;
    color: white;
    background: #e21b2d;
    border-radius: 7px;
}

.payment-kicker {
    margin-bottom: 10px;
    color: #e21b2d;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-page h1,
.utr-form h1 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.04;
    letter-spacing: 0;
}

.payment-sub {
    color: #667085;
    line-height: 1.55;
}

.align-right {
    text-align: right;
}

.payment-card {
    margin-top: 24px;
    padding: 22px;
    background: white;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.09);
}

.amount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e3e8f0;
}

.amount-label,
.pay-title {
    color: #667085;
    font-size: 13px;
    font-weight: 900;
}

.amount {
    margin-top: 4px;
    color: #e21b2d;
    font-size: 42px;
    font-weight: 900;
}

.paybox {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
}

.qr {
    width: 220px;
    height: 220px;
    object-fit: cover;
    background: #f8fafc;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.pay-name {
    margin: 6px 0 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.upi-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: min(100%, 360px);
    padding: 8px 8px 8px 12px;
    background: #f8fafc;
    border: 1px solid #e3e8f0;
    border-radius: 999px;
    font-weight: 900;
}

.copy {
    min-height: 34px;
    padding: 0 12px;
    color: white;
    background: #e21b2d;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.methods {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    background: #fbfcff;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.method small {
    display: block;
    margin-top: 4px;
    color: #667085;
    line-height: 1.45;
}

.badge {
    flex: 0 0 auto;
    padding: 7px 9px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.summary {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border-bottom: 1px solid #e3e8f0;
}

.line:last-child {
    border-bottom: 0;
}

.line span {
    color: #667085;
    font-weight: 800;
}

.line b {
    text-align: right;
}

.secure {
    margin: 18px 0;
    padding: 14px;
    color: #14532d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    line-height: 1.55;
}

.btn {
    width: 100%;
    min-height: 48px;
    color: white;
    background: #e21b2d;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.note {
    margin-top: 10px;
    color: #667085;
    font-size: 13px;
    text-align: center;
}

.utr-form {
    max-width: 640px;
    margin: 0 auto;
}

.utr-seat-card {
    color: #111827;
    background: #fff6f6;
    border-color: #ffd5d5;
}

.utr-seat-card span,
.utr-seat-card strong {
    color: #111827;
}

.admin-page {
    width: min(1160px, 92vw);
    margin: 42px auto;
}

.admin-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-head h1 {
    margin: 0 0 8px;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.04;
    letter-spacing: 0;
}

.admin-head p {
    margin: 0;
    color: #667085;
}

.admin-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.admin-alert.success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.admin-alert.danger {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.admin-form,
.admin-table-wrap {
    margin-bottom: 28px;
    padding: 24px;
    background: white;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.admin-form h2,
.admin-table-wrap h2 {
    margin: 0 0 18px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-wide {
    grid-column: 1 / -1;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.admin-link {
    color: #e21b2d;
    font-weight: 900;
}

.admin-table-scroll {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e3e8f0;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #475467;
    background: #f8fafc;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table small {
    color: #667085;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-delete {
    padding: 0;
    color: #b91c1c;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.payment-admin-form {
    display: grid;
    gap: 18px;
}

.payment-admin-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.payment-admin-preview span {
    color: #667085;
    font-size: 13px;
    font-weight: 900;
}

.payment-admin-preview strong {
    display: block;
    margin: 6px 0;
    color: #111827;
    word-break: break-word;
}

.payment-admin-preview p {
    margin: 0;
    color: #667085;
    line-height: 1.5;
}

.payment-admin-preview img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    background: white;
    border: 1px solid #e3e8f0;
    border-radius: 8px;
}

.confirmation,
.lookup {
    max-width: 720px;
}

.confirmation {
    margin: 54px auto;
    text-align: center;
}

.confirmation h1 {
    max-width: none;
    color: var(--green);
}

.summary-list {
    margin: 26px 0;
    text-align: left;
}

.lookup {
    display: grid;
    gap: 20px;
}

.notice {
    color: #7a2e0e;
    background: #fff7ed;
    border-color: #fed7aa;
}

.footer {
    padding: 34px 6vw;
    color: var(--muted);
    text-align: center;
}

.bms-trust-footer {
    clear: both;
    margin-top: 34px;
    padding: 34px 18px;
    color: #e9edf7;
    background: #0f1422;
}

.bms-trust-inner {
    max-width: 980px;
    margin: 0 auto;
}

.bms-trust-brand {
    margin-bottom: 8px;
    color: white;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: lowercase;
}

.bms-trust-brand span {
    display: inline-block;
    margin: 0 3px;
    padding: 2px 6px;
    color: white;
    background: #e21b2d;
    border-radius: 7px;
}

.bms-trust-sub {
    max-width: 720px;
    margin-bottom: 22px;
    color: #aeb6c6;
    line-height: 1.5;
}

.bms-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bms-trust-card {
    padding: 16px;
    background: #151c2d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.bms-trust-card h3 {
    margin: 0 0 10px;
    color: white;
    font-size: 18px;
}

.bms-trust-card p,
.bms-trust-card li {
    margin: 6px 0;
    color: #b8c0cf;
    font-size: 14px;
    line-height: 1.55;
}

.bms-trust-card ul {
    margin: 0;
    padding-left: 18px;
}

.bms-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.bms-partners span {
    padding: 9px 11px;
    color: white;
    background: #101626;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
}

.bms-copy {
    margin-top: 22px;
    padding-top: 16px;
    color: #8f98aa;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.bms-home-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #111;
}

.bms-home-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bms-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 6vw;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34), transparent);
}

.bms-ticket-tag {
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 6px 16px;
    color: #111;
    background: #facc15;
    border-radius: 4px 4px 12px 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    animation: bmsPulse 1.45s ease-in-out infinite;
}

.bms-hero-overlay h1 {
    max-width: 760px;
    margin: 0 0 6px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

.bms-hero-overlay p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
    color: white;
    font-size: 15px;
    line-height: 1.45;
}

.bms-hero-overlay .fa-trophy {
    color: #facc15;
}

.bms-matches-section {
    width: min(1080px, 92vw);
    margin: 0 auto;
    padding: 28px 0 42px;
}

.bms-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.bms-section-heading h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #1f2937;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
}

.bms-section-heading button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0;
    color: #e21b2d;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.bms-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    color: #5f6673;
    line-height: 1.5;
}

.bms-ball {
    color: #e21b2d;
    animation: bmsBounce 1.4s ease-in-out infinite;
}

.bms-active-wrap {
    width: 100%;
    padding: 14px 0 28px;
}

.bms-active-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.bms-active-head strong {
    color: #222;
    font-size: 18px;
}

.bms-active-head a {
    padding: 10px 12px;
    color: white;
    background: #e21b2d;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
}

.bms-active-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bms-match-card {
    padding: 14px;
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.bms-team-row {
    display: grid;
    grid-template-columns: 1fr 38px 1fr;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.bms-team {
    min-width: 0;
}

.home-team-logo-img {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 6px;
    place-items: center;
    color: #e21b2d;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    box-shadow: inset 0 0 0 5px #fff4f5;
}

.bms-team b {
    display: block;
    color: #111;
    font-size: 17px;
}

.bms-team small {
    display: block;
    overflow: hidden;
    color: #777;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bms-vs {
    color: #e21b2d;
    font-weight: 900;
}

.bms-match-meta {
    display: grid;
    gap: 5px;
    margin: 12px 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.bms-match-meta span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bms-match-meta i {
    width: 16px;
    margin-top: 3px;
    color: #e21b2d;
}

.bms-book-link {
    display: block;
    padding: 12px;
    color: white;
    background: #e21b2d;
    border-radius: 12px;
    font-weight: 900;
    text-align: center;
}

.bms-book-link:hover,
.bms-active-head a:hover {
    background: #b91f2c;
}

@keyframes bmsPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes bmsBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 880px) {
    .hero,
    .details-hero,
    .booking-layout,
    .match-grid,
    .bms-active-grid,
    .checkout-page {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 560px;
    }

    .details-art {
        min-height: 260px;
    }

    .details-copy {
        padding: 34px 6vw;
    }
}

@media (max-width: 620px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        min-height: 98px;
    }

    .nav {
        gap: 16px;
    }

    .hero {
        padding-top: 52px;
    }

    .bms-home-hero {
        min-height: 360px;
    }

    .bms-hero-overlay {
        padding: 28px 4vw;
    }

    .bms-section-heading {
        align-items: flex-start;
    }

    .bms-section-heading button {
        flex: 0 0 auto;
    }

    .bms-trust-grid {
        grid-template-columns: 1fr;
    }

    .seat-picker-head,
    .selected-seat-box,
    .amount-row,
    .method {
        align-items: flex-start;
        flex-direction: column;
    }

    .paybox {
        grid-template-columns: 1fr;
    }

    .admin-head,
    .admin-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .payment-admin-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .qr {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    .align-right,
    .line b {
        text-align: left;
    }

    .section-heading,
    .card-footer,
    .form-row {
        display: grid;
        grid-template-columns: 1fr;
    }
}
