@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --lmb-black: #111111;
    --lmb-white: #ffffff;
    --lmb-green: #198754;
    --lmb-green-dark: #315f28;
    --lmb-yellow: #f4c400;
    --lmb-red: #e30613;
    --lmb-women: #7433ad;
    --lmb-men: #e30613;
    --lmb-bg: #f6f6f6;
    --lmb-surface: #ffffff;
    --lmb-surface-soft: #fafafa;
    --lmb-border: #e4e4e4;
    --lmb-text: #161616;
    --lmb-muted: #696969;
    --lmb-focus: #0c7a3c;
}

/* Customer ticket wallet */
.dashboard-primary-link,
.account-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--lmb-black);
    border-radius: 8px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 10px 15px;
    font-size: .8rem;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.dashboard-primary-link:hover,
.account-button:hover {
    transform: translateY(-1px);
    border-color: var(--lmb-green-dark);
    background: var(--lmb-green-dark);
    color: var(--lmb-white);
}

.dashboard-primary-link:active,
.account-button:active { transform: translateY(1px); }

.account-overview-hero {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: clamp(28px, 5vw, 54px);
}

.account-overview-hero::after {
    position: absolute;
    right: -34px;
    bottom: -58px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(244, 196, 0, .45);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(244, 196, 0, .08), 0 0 0 58px rgba(244, 196, 0, .04);
    content: '';
}

.account-overview-hero__copy,
.account-overview-hero__actions { position: relative; z-index: 1; }
.account-overview-hero__copy { max-width: 660px; }
.account-overview-hero .content-label { color: var(--lmb-yellow); }
.account-overview-hero h1 { margin: 8px 0 0; font-size: clamp(2.2rem, 5vw, 4.6rem); font-weight: 800; letter-spacing: -.06em; line-height: .98; text-wrap: balance; }
.account-overview-hero p:last-child { max-width: 54ch; margin: 15px 0 0; color: rgba(255, 255, 255, .68); font-size: .95rem; line-height: 1.6; }
.account-overview-hero__actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.account-button--light { border-color: var(--lmb-yellow); background: var(--lmb-yellow); color: var(--lmb-black); }
.account-button--light:hover { border-color: var(--lmb-white); background: var(--lmb-white); color: var(--lmb-black); }
.account-link { color: var(--lmb-green-dark); font-size: .82rem; font-weight: 800; }
.account-link:hover { color: var(--lmb-black); }
.account-link--light { color: rgba(255, 255, 255, .82); }
.account-link--light:hover { color: var(--lmb-yellow); }
.account-link span,
.dashboard-primary-link span,
.dashboard-text-link span { font-size: 1rem; }

.account-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--lmb-border); background: var(--lmb-white); }
.account-stat-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 900px; }
.account-stat { min-height: 132px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border-left: 1px solid var(--lmb-border); padding: 20px 22px; }
.account-stat:first-child { border-left: 0; }
.account-stat--featured { box-shadow: inset 4px 0 0 var(--lmb-green); }
.account-stat__label { color: var(--lmb-muted); font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.account-stat strong { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.account-stat small { overflow: hidden; color: var(--lmb-muted); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }

.account-overview-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 16px; }
.next-match-card,
.account-quick-links { border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(22px, 4vw, 32px); }
.next-match-card { min-height: 260px; }
.next-match-card__heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.next-match-card h2,
.account-quick-links h2 { margin: 0; font-size: 1.3rem; font-weight: 800; letter-spacing: -.035em; }
.next-match-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; background: rgba(25, 135, 84, .1); color: var(--lmb-green-dark); }
.next-match-card__icon svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.next-match-card__date { margin: 30px 0 8px; color: var(--lmb-green-dark); font-size: .76rem; font-weight: 800; }
.next-match-card h3 { margin: 0; font-size: clamp(1.35rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -.055em; }
.next-match-card h3 i,
.order-row i { color: var(--lmb-muted); font-size: .65em; font-style: normal; font-weight: 600; text-transform: uppercase; }
.next-match-card__meta { margin: 9px 0 22px; color: var(--lmb-muted); font-size: .78rem; }
.next-match-card__empty { margin-top: 34px; }
.next-match-card__empty strong { font-size: 1.05rem; }
.next-match-card__empty p { margin: 7px 0 15px; color: var(--lmb-muted); font-size: .82rem; }
.account-quick-links > .section-eyebrow { margin-bottom: 6px; }
.account-quick-links h2 { margin-bottom: 18px; }
.account-quick-links a { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--lmb-border); padding: 14px 0; transition: padding .2s ease, color .2s ease; }
.account-quick-links a:hover { padding-inline: 5px; color: var(--lmb-green-dark); }
.account-quick-links a span { display: grid; gap: 3px; }
.account-quick-links a strong { font-size: .83rem; }
.account-quick-links a small { color: var(--lmb-muted); font-size: .7rem; }
.account-quick-links a b { color: var(--lmb-green-dark); font-size: 1.1rem; font-weight: 500; }

.orders-list { border-top: 1px solid var(--lmb-border); }
.order-row { display: grid; grid-template-columns: minmax(240px, 1.5fr) minmax(140px, .75fr) auto auto; align-items: center; gap: 22px; border-bottom: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 16px 18px; transition: background-color .2s ease; }
.order-row:hover { background: var(--lmb-surface-soft); }
.order-row__main, .order-row__ticket { display: grid; gap: 4px; min-width: 0; }
.order-row__number { color: var(--lmb-muted); font-family: "DM Mono", monospace; font-size: .68rem; }
.order-row__main strong { overflow: hidden; font-size: .87rem; text-overflow: ellipsis; white-space: nowrap; }
.order-row__main small, .order-row__ticket small { color: var(--lmb-muted); font-size: .7rem; }
.order-row__ticket span { font-size: .78rem; font-weight: 800; }
.order-row__total { min-width: 90px; text-align: right; font-size: .9rem; font-variant-numeric: tabular-nums; }

.purchase-section { scroll-margin-top: 24px; }
.ticket-market-date { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--lmb-border); background: var(--lmb-surface-soft); padding: 11px 16px; color: var(--lmb-text); font-size: .74rem; font-weight: 800; }
.ticket-market-date span:last-child { color: var(--lmb-muted); font-size: .68rem; font-weight: 700; }
.ticket-market-date-group + .ticket-market-date-group { margin-top: 12px; }
.ticket-market-date-group > .ticket-market-date { cursor: pointer; list-style: none; }
.ticket-market-date-group > .ticket-market-date::-webkit-details-marker { display: none; }
.ticket-market-date-group > .ticket-market-date::after { width: 20px; height: 20px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--lmb-border); border-radius: 50%; color: var(--lmb-muted); content: '+'; font-size: 1rem; font-weight: 500; line-height: 1; }
.ticket-market-date-group[open] > .ticket-market-date::after { content: '−'; }

.tickets-page-heading { margin-bottom: 28px; }
.ticket-library { margin-top: 34px; }
.ticket-library__heading { align-items: center; }
.ticket-results-count { color: var(--lmb-muted); font-size: .75rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.ticket-library__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 10px; }
.ticket-search { min-width: min(100%, 420px); display: flex; align-items: center; gap: 10px; padding: 0 8px; }
.ticket-search svg { width: 20px; flex: 0 0 auto; fill: none; stroke: var(--lmb-muted); stroke-linecap: round; stroke-width: 1.7; }
.ticket-search input { width: 100%; min-height: 40px; border: 0; outline: 0; background: transparent; color: var(--lmb-text); font-size: .82rem; }
.ticket-search:focus-within { outline: 3px solid rgba(25, 135, 84, .12); outline-offset: 1px; }
.ticket-filter-tabs { display: flex; align-items: center; gap: 4px; }
.ticket-filter-tabs button { min-height: 40px; border: 0; border-radius: 7px; background: transparent; color: var(--lmb-muted); padding: 8px 12px; font-size: .75rem; font-weight: 800; transition: background-color .2s ease, color .2s ease; }
.ticket-filter-tabs button:hover { color: var(--lmb-black); }
.ticket-filter-tabs button.active { background: var(--lmb-black); color: var(--lmb-white); }
.ticket-filter-feedback { margin: -14px 0 20px; color: var(--lmb-muted); font-size: .76rem; }
.ticket-date-section + .ticket-date-section { margin-top: 42px; }
.ticket-date-section__title { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 13px; border-bottom: 2px solid var(--lmb-black); padding-bottom: 10px; }
.ticket-date-section__title h3 { margin: 0; font-size: 1.1rem; font-weight: 800; letter-spacing: -.025em; }
.ticket-date-section__title span { color: var(--lmb-muted); font-size: .72rem; font-weight: 700; }
.ticket-date-group + .ticket-date-group { margin-top: 22px; }
.ticket-date-group__heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 10px; color: var(--lmb-text); cursor: pointer; list-style: none; }
.ticket-date-group__heading::-webkit-details-marker { display: none; }
.ticket-date-group__heading::after { width: 22px; height: 22px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--lmb-border); border-radius: 50%; color: var(--lmb-muted); content: '+'; font-size: 1rem; font-weight: 500; line-height: 1; }
.ticket-date-group[open] > .ticket-date-group__heading::after { content: '−'; }
.ticket-date-group__heading:focus-visible { outline-offset: 4px; }
.ticket-date-group__heading span { font-size: .78rem; font-weight: 800; }
.ticket-date-group__heading strong { color: var(--lmb-muted); font-size: .68rem; font-weight: 700; }
.admission-ticket-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.admission-ticket { border: 1px solid var(--lmb-border); border-radius: 10px; padding: 16px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.admission-ticket:hover { transform: translateY(-2px); border-color: #c8c8c8; box-shadow: 0 10px 24px rgba(17, 17, 17, .06); }
.admission-ticket--upcoming { box-shadow: inset 0 3px 0 var(--lmb-green); }
.admission-ticket--past { background: #fbfbfb; }
.admission-ticket--past .admission-ticket__qr { opacity: .4; filter: grayscale(1); }
.admission-ticket__topline { align-items: center; font-size: .68rem; }
.admission-ticket__status { display: inline-flex; align-items: center; gap: 5px; font-size: .64rem; letter-spacing: .02em; text-transform: none; }
.admission-ticket__status--valid { color: var(--lmb-green-dark); }
.admission-ticket__status--valid span { width: 6px; height: 6px; border-radius: 50%; background: var(--lmb-green); }
.admission-ticket__status--muted { color: var(--lmb-muted); }
.admission-ticket__match { margin: 14px 0; padding: 13px 0; }
.admission-ticket__match p { margin-bottom: 6px; font-size: .68rem; }
.admission-ticket__match h4 { margin: 0; font-size: .91rem; font-weight: 800; line-height: 1.35; }
.admission-ticket__qr { margin-bottom: 10px; }
.admission-ticket__qr svg { width: min(170px, 100%); }
.admission-ticket > code { color: var(--lmb-black); font-family: "DM Mono", monospace; font-size: .68rem; letter-spacing: .02em; }
.admission-ticket > small { font-size: .68rem; }
.ticket-empty-state { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; border: 1px dashed #cfcfcf; background: var(--lmb-white); padding: 25px; }
.ticket-empty-state__mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(25, 135, 84, .1); color: var(--lmb-green-dark); }
.ticket-empty-state__mark svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.ticket-empty-state h3 { margin: 0; font-size: .95rem; font-weight: 800; }
.ticket-empty-state p { margin: 4px 0 0; color: var(--lmb-muted); font-size: .76rem; }
.ticket-empty-filter { display: grid; justify-items: center; gap: 5px; border: 1px dashed #cfcfcf; margin-top: 20px; padding: 28px; text-align: center; }
.ticket-empty-filter strong { font-size: .88rem; }
.ticket-empty-filter span { color: var(--lmb-muted); font-size: .76rem; }

@media (max-width: 991.98px) {
    .account-overview-hero { align-items: flex-start; flex-direction: column; }
    .account-overview-hero__actions { justify-content: flex-start; }
    .account-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-stat { border-top: 1px solid var(--lmb-border); }
    .account-stat:nth-child(odd) { border-left: 0; }
    .account-stat:nth-child(-n+2) { border-top: 0; }
    .account-overview-grid { grid-template-columns: 1fr; }
    .ticket-library__toolbar { align-items: stretch; flex-direction: column; }
    .ticket-search { min-width: 0; }
    .ticket-filter-tabs { justify-content: stretch; }
    .ticket-filter-tabs button { flex: 1; }
    .admission-ticket-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .order-row { grid-template-columns: minmax(0, 1fr) auto; gap: 12px 18px; }
    .order-row__total { text-align: left; }
    .order-row .order-status { justify-self: end; }
}

@media (max-width: 575.98px) {
    .account-overview-hero { border-radius: 10px; padding: 25px 20px; }
    .account-overview-hero__actions { align-items: flex-start; flex-direction: column; gap: 12px; }
    .account-button--light { width: 100%; }
    .account-stat { min-height: 112px; padding: 15px; }
    .account-stat strong { font-size: 1.5rem; }
    .account-stat small { font-size: .66rem; }
    .next-match-card, .account-quick-links { padding: 20px; }
    .admission-ticket-grid { grid-template-columns: 1fr; }
    .ticket-empty-state { grid-template-columns: auto 1fr; }
    .ticket-empty-state .account-button { grid-column: 1 / -1; width: 100%; }
    .order-row { grid-template-columns: 1fr; }
    .order-row .order-status { justify-self: start; }
    .order-row__total { grid-row: auto; }
    .ticket-date-group__heading { align-items: flex-start; flex-direction: column; gap: 3px; }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--lmb-bg);
    color: var(--lmb-text);
    font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-rendering: optimizeLegibility;
}

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

a:hover {
    color: var(--lmb-green-dark);
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid var(--lmb-focus);
    outline-offset: 3px;
}

.container-xxl {
    max-width: 1440px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    transform: translateY(-160%);
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 10px 14px;
    border-radius: 8px;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.top-strip {
    background: var(--lmb-black);
    color: var(--lmb-white);
    font-size: .78rem;
    font-weight: 700;
}

.top-strip__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-strip nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-strip a {
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease;
}

.top-strip a:hover {
    color: var(--lmb-white);
}

.main-nav {
    min-height: 80px;
    background: var(--lmb-white);
    border-bottom: 1px solid var(--lmb-border);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lmb-black);
    font-weight: 900;
}

.navbar-brand span {
    display: grid;
    line-height: 1.05;
}

.navbar-brand small {
    max-width: 190px;
    color: var(--lmb-muted);
    font-size: .72rem;
    font-weight: 700;
}

.site-logo {
    width: 48px;
    height: 52px;
    object-fit: contain;
}

.site-logo--footer {
    width: 70px;
    height: 76px;
}

.brand-fallback {
    display: inline-grid;
    min-width: 72px;
    min-height: 52px;
    place-items: center;
    border: 1px solid var(--lmb-border);
    border-left: 6px solid var(--lmb-green);
    background: var(--lmb-white);
    padding: 8px;
    line-height: 1;
}

.brand-fallback span {
    font-size: .62rem;
    color: var(--lmb-muted);
}

.nav-menu-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    align-content: center;
    gap: 5px;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    background: var(--lmb-white);
    padding: 10px;
}

.nav-menu-button span {
    display: block;
    height: 2px;
    background: var(--lmb-black);
}

.navbar-nav {
    gap: 4px;
}

.main-nav .nav-link {
    color: var(--lmb-text);
    font-weight: 800;
    border-radius: 8px;
    padding: 8px 10px;
    transition: background-color .2s ease, color .2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form input,
.filters-bar input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    background: var(--lmb-white);
    color: var(--lmb-text);
    padding: 10px 12px;
    font-weight: 650;
}

.search-form input {
    width: 190px;
}

.login-button,
.btn-lmb {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 10px 16px;
    font-weight: 900;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.login-button {
    background: var(--lmb-yellow);
    color: var(--lmb-black);
}

.btn-lmb:hover,
.filter-tabs button:hover,
.competition-tabs a:hover,
.section-link:hover {
    transform: translateY(-1px);
}

.btn-lmb:active,
.filter-tabs button:active,
.competition-tabs a:active {
    transform: translateY(1px);
}

.btn-lmb--primary {
    background: var(--lmb-green);
    color: var(--lmb-white);
}

.btn-lmb--primary:hover {
    background: var(--lmb-green-dark);
    color: var(--lmb-white);
}

.btn-lmb--ghost {
    border-color: var(--lmb-border);
    background: var(--lmb-white);
    color: var(--lmb-black);
}

.mobile-menu__links {
    display: grid;
    gap: 8px;
}

.mobile-menu__links a {
    display: block;
    border-bottom: 1px solid var(--lmb-border);
    padding: 12px 0;
    font-weight: 850;
}

.mobile-menu__links a.active {
    color: var(--lmb-green-dark);
}

.news-ticker {
    background: var(--lmb-white);
    border-bottom: 1px solid var(--lmb-border);
}

.ticker-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.ticker-track::-webkit-scrollbar,
.filter-chips::-webkit-scrollbar,
.filters-panel__primary::-webkit-scrollbar,
.filters-panel__secondary::-webkit-scrollbar,
.media-rail::-webkit-scrollbar,
.lmb-table-wrap::-webkit-scrollbar {
    display: none;
}

.ticker-track a {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid var(--lmb-border);
    background: var(--lmb-white);
    padding: 13px 18px;
    font-size: .9rem;
    font-weight: 750;
    scroll-snap-align: start;
}

.ticker-track span {
    color: var(--lmb-green-dark);
    font-weight: 950;
}

.ad-block {
    margin: 24px 0;
    text-align: center;
}

.ad-block > span {
    display: block;
    margin-bottom: 6px;
    color: var(--lmb-muted);
    font-size: .72rem;
    font-weight: 850;
}

.ad-slot {
    min-height: 80px;
    display: grid;
    place-items: center;
    border: 1px dashed #dedede;
    border-radius: 12px;
    background: var(--lmb-surface-soft);
    color: var(--lmb-muted);
    text-align: center;
}

.ad-slot strong,
.ad-slot small {
    display: block;
}

.home-hero {
    padding: 18px 0 56px;
}

.hero-editorial {
    min-height: 480px;
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(250px, .68fr);
    gap: 28px;
    overflow: hidden;
    border-radius: 14px;
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.content-label,
.section-eyebrow {
    margin: 0 0 10px;
    color: var(--lmb-green-dark);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-editorial .content-label {
    color: var(--lmb-yellow);
}

.hero-copy h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.8rem, 4.2vw, 3.7rem);
    font-weight: 950;
    line-height: .98;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-court {
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(90deg, rgba(244, 196, 0, .92), rgba(244, 196, 0, .88)),
        var(--lmb-yellow);
}

.hero-court::before,
.hero-court::after,
.hero-court span {
    content: "";
    position: absolute;
    border: 4px solid rgba(17, 17, 17, .55);
    pointer-events: none;
}

.hero-court::before {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: 54px;
    right: 42px;
}

.hero-court::after {
    width: 150px;
    height: 220px;
    border-radius: 80px 0 0 80px;
    right: 0;
    bottom: 76px;
    border-right: 0;
}

.hero-court span {
    width: 76%;
    height: 4px;
    left: 12%;
    top: 50%;
    border: 0;
    background: rgba(17, 17, 17, .45);
}

.latest-panel {
    height: 100%;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 26px;
}

.latest-panel h2 {
    margin: 0 0 18px;
    font-size: 1.45rem;
    font-weight: 950;
}

.latest-panel a {
    display: block;
    border-top: 1px solid var(--lmb-border);
    padding: 16px 0;
    font-weight: 850;
}

.latest-panel a span {
    display: block;
    color: var(--lmb-muted);
    font-size: .75rem;
    font-weight: 800;
}

.content-section {
    padding: 48px 0;
}

.content-section--tinted {
    background: #eeeeec;
}

.home-matches-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
    align-items: start;
    gap: 28px;
}

.home-matches-main {
    min-width: 0;
}

.home-matches-aside {
    position: sticky;
    top: 24px;
}

.home-matches-aside .ad-block {
    margin: 0;
}

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

.section-header h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 950;
}

.section-link {
    color: var(--lmb-green-dark);
    font-weight: 900;
    transition: transform .2s ease, color .2s ease;
}

.filter-tabs,
.competition-tabs,
.lmb-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.filter-tabs button,
.competition-tabs a,
.lmb-tabs .nav-link {
    min-height: 40px;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    background: var(--lmb-white);
    color: var(--lmb-text);
    padding: 8px 14px;
    font-weight: 850;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.filter-tabs button.active,
.competition-tabs a.active,
.lmb-tabs .nav-link.active {
    background: var(--lmb-black);
    color: var(--lmb-white);
    border-color: var(--lmb-black);
}

.match-day h3 {
    margin: 0 0 10px;
    color: var(--lmb-muted);
    font-size: .84rem;
    font-weight: 950;
    text-transform: uppercase;
}

.match-day + .match-day {
    margin-top: 24px;
}

.match-list {
    display: grid;
    gap: 0;
}

.match-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    border: 0;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    background: var(--lmb-white);
    padding: 16px;
}

.match-team,
.table-team {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 900;
}

.match-team span:not(.team-logo) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-team--away {
    justify-content: flex-end;
    text-align: right;
}

.match-centre {
    display: grid;
    place-items: center;
    border-inline: 1px solid var(--lmb-border);
    padding-inline: 10px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.match-centre strong {
    font-size: 1.25rem;
    font-weight: 950;
}

.match-centre small,
.match-meta {
    color: var(--lmb-muted);
    font-size: .72rem;
    font-weight: 800;
}

.match-meta {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid var(--lmb-border);
}

.team-logo {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-surface-soft);
    color: var(--lmb-black);
    font-weight: 950;
    object-fit: contain;
}

.team-logo--xs {
    width: 30px;
    height: 30px;
    font-size: .68rem;
}

.team-logo--sm {
    width: 42px;
    height: 42px;
    font-size: .78rem;
}

.team-logo--md {
    width: 58px;
    height: 58px;
}

.team-logo--lg {
    width: 86px;
    height: 86px;
    font-size: 1.3rem;
}

.lmb-table-wrap {
    border-block: 1px solid var(--lmb-border);
    border-inline: 0;
    border-radius: 0;
    background: var(--lmb-white);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lmb-table {
    min-width: 820px;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.lmb-table th {
    color: var(--lmb-muted);
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.lmb-table td {
    font-weight: 700;
}

.form-strip {
    display: flex;
    gap: 4px;
}

.form-dot {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--lmb-surface-soft);
    color: var(--lmb-muted);
    font-size: .7rem;
    font-weight: 950;
}

.form-dot--v {
    background: rgba(25, 135, 84, .12);
    color: var(--lmb-green-dark);
}

.form-dot--d {
    background: rgba(227, 6, 19, .1);
    color: var(--lmb-red);
}

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

.stats-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-panel {
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 20px;
}

.stat-panel h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
    font-weight: 950;
}

.stat-panel ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: leaderboard;
}

.stat-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    counter-increment: leaderboard;
}

.stat-panel li::before {
    content: counter(leaderboard);
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    font-size: .75rem;
    font-weight: 950;
}

.stat-panel li span {
    flex: 1;
}

.stat-panel small,
.stat-empty {
    display: block;
    color: var(--lmb-muted);
    font-size: .85rem;
    font-weight: 700;
}

.stat-panel b {
    font-variant-numeric: tabular-nums;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 18px;
}

.news-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    align-items: start;
    gap: 28px;
}

.news-page-main { min-width: 0; }

.news-page-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.news-sidebar-card {
    overflow: hidden;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
}

.news-sidebar-card__heading {
    border-bottom: 1px solid var(--lmb-border);
    padding: 18px;
}

.news-sidebar-card__heading .content-label { margin-bottom: 7px; }
.news-sidebar-card__heading h2 { margin: 0; font-size: 1.25rem; font-weight: 950; }

.news-sidebar-list { display: grid; }

.news-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--lmb-border);
    padding: 14px 18px;
}

.news-sidebar-list a:last-child { border-bottom: 0; }
.news-sidebar-list a:hover { background: var(--lmb-surface-soft); }
.news-sidebar-thumb { width: 88px; height: 62px; flex: 0 0 88px; display: grid; place-items: center; overflow: hidden; border-radius: 7px; background: var(--lmb-black); color: var(--lmb-yellow); font-size: .72rem; font-weight: 950; }
.news-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-sidebar-item__copy { display: grid; gap: 6px; min-width: 0; }
.news-sidebar-item__copy > span, .news-sidebar-empty { color: var(--lmb-muted); font-size: .68rem; }
.news-sidebar-item__copy strong { font-size: .84rem; line-height: 1.35; }
.news-sidebar-empty { margin: 0; padding: 18px; line-height: 1.5; }

.news-grid {
    display: grid;
    gap: 18px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
}

.news-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--lmb-black);
}

.news-card__media img,
.image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    object-fit: cover;
}

.news-card__media img {
    display: block;
    object-position: center;
}

.image-placeholder {
    color: var(--lmb-yellow);
    font-size: 2rem;
    font-weight: 950;
}

.news-card__body {
    padding: 18px;
}

.news-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 950;
    line-height: 1.18;
}

.news-card--featured h3 {
    font-size: 2rem;
}

.news-card p:not(.content-label) {
    color: var(--lmb-muted);
    line-height: 1.6;
}

.news-article-section {
    padding-top: 42px;
}

.news-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--lmb-green-dark);
    font-size: .82rem;
    font-weight: 900;
}

.news-article {
    max-width: 1040px;
    margin: 0 auto;
}

.news-article__header {
    max-width: 900px;
    margin-bottom: 28px;
}

.news-article__header h1 {
    max-width: 900px;
    margin: 8px 0 0;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .98;
}

.news-article__excerpt {
    max-width: 740px;
    margin: 20px 0 0;
    color: var(--lmb-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

.news-article__cover {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--lmb-black);
}

.news-article__cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

.news-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 48px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.news-article__content {
    min-width: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-article__content > :first-child { margin-top: 0; }
.news-article__content > :last-child { margin-bottom: 0; }
.news-article__content h2,
.news-article__content h3 { margin: 1.8em 0 .55em; line-height: 1.15; }
.news-article__content p { margin: 0 0 1.15em; }
.news-article__content ul,
.news-article__content ol { padding-left: 1.4em; }
.news-article__content blockquote { margin: 1.5em 0; border-left: 3px solid var(--lmb-yellow); padding-left: 18px; font-size: 1.2em; font-weight: 800; }
.news-article__content img { height: auto; margin: 1.5em 0; border-radius: 8px; }
.news-article__content a { color: var(--lmb-green-dark); text-decoration: underline; text-underline-offset: 3px; }
.news-article__content iframe { width: 100%; min-height: 320px; border: 0; }

.news-article__aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 24px;
}

.news-article__source {
    display: grid;
    gap: 7px;
    border-top: 2px solid var(--lmb-black);
    padding-top: 10px;
    font-size: .78rem;
}

.news-article__source span {
    color: var(--lmb-muted);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-article__source a,
.news-article__source strong { line-height: 1.45; }

.media-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 480px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.media-video {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.lmb-player {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: transparent;
}

.lmb-player .plyr {
    --plyr-color-main: var(--lmb-green);
    --plyr-video-background: transparent;
    --plyr-video-control-color: var(--lmb-white);
    --plyr-control-icon-size: 16px;
    --plyr-control-radius: 7px;
    --plyr-font-family: inherit;
    height: 100%;
}

.lmb-player .plyr__video-wrapper,
.lmb-player .plyr video {
    height: 100%;
    background: transparent;
}

.lmb-player .plyr__poster {
    background-size: cover;
    background-position: center;
}

.lmb-player .plyr video {
    width: 100%;
    display: block;
    background: transparent;
    object-fit: cover;
}

.lmb-player .plyr__control--overlaid {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(17, 17, 17, .78);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
    transition: transform .2s ease, background-color .2s ease;
}

.lmb-player .plyr__control--overlaid:hover,
.lmb-player .plyr__control--overlaid:focus-visible {
    background: var(--lmb-green);
    transform: scale(1.06);
}

.lmb-player .plyr__controls {
    background: transparent;
    padding: 28px 12px 10px;
}

.lmb-player .plyr__progress input[type="range"] {
    color: var(--lmb-green);
}

.lmb-player .plyr__menu__container {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: #191919;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .28);
}

.media-video > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 0;
    padding: 12px 14px;
}

.media-video h3 {
    margin: 0;
    font-size: .98rem;
    font-weight: 900;
}

.media-video span {
    color: var(--lmb-muted);
    font-size: .75rem;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

.media-tile {
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 14px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 18px;
}

.media-tile span {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: auto;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 950;
}

.competition-feature {
    padding: 48px 0;
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.competition-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
}

.competition-feature .content-label {
    color: var(--lmb-yellow);
}

.competition-feature h2 {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 950;
}

.competition-feature p {
    color: rgba(255, 255, 255, .72);
}

.document-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lmb-border);
    padding-bottom: 16px;
}

.document-strip > div {
    display: grid;
}

.document-strip span,
.document-strip > div > span {
    color: var(--lmb-muted);
    font-size: .72rem;
    font-weight: 800;
}

.document-strip strong {
    font-size: 1rem;
    font-weight: 900;
}

.document-strip > a {
    color: var(--lmb-green-dark);
    font-size: .88rem;
    font-weight: 900;
}

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

.phase-line span {
    display: grid;
    min-height: 92px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-top: 6px solid var(--lmb-yellow);
    border-radius: 12px;
    padding: 16px;
    font-weight: 950;
}

.sponsor-grid,
.team-grid,
.player-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sponsor-item,
.team-card,
.player-card {
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 20px;
}

.sponsor-item {
    min-height: 110px;
    display: grid;
    place-items: center;
    color: var(--lmb-muted);
    font-weight: 900;
}

.sponsor-item img {
    width: min(100%, 220px);
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.sponsor-item--dark {
    border-color: var(--lmb-black);
    background: var(--lmb-black);
}

.team-card h2,
.player-card h2 {
    margin: 16px 0 6px;
    font-size: 1.2rem;
    font-weight: 950;
}

.team-card p,
.player-card p {
    color: var(--lmb-muted);
    font-weight: 700;
}

.team-card a {
    color: var(--lmb-green-dark);
    font-weight: 900;
}

.player-photo {
    aspect-ratio: 1 / 1.08;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: var(--lmb-surface-soft);
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-photo span {
    font-size: 2rem;
    font-weight: 950;
}

.filters-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.filters-bar--compact {
    grid-template-columns: repeat(2, minmax(180px, 260px));
}

.round-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--lmb-border);
    border-radius: 14px;
    background: var(--lmb-white);
    padding: 18px;
    margin-bottom: 18px;
}

.round-nav span {
    display: block;
    color: var(--lmb-muted);
    font-size: .86rem;
}

.round-nav [aria-disabled="true"] {
    color: var(--lmb-muted);
    font-weight: 800;
}

.page-hero {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, .96), rgba(49, 95, 40, .9)),
        var(--lmb-black);
    color: var(--lmb-white);
    padding: 55px 0;
}

.page-hero .content-label {
    color: var(--lmb-yellow);
}

.page-hero p:not(.content-label) {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.empty-state {
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 18px 20px;
}

.empty-state__title {
    margin: 0 0 6px;
    color: var(--lmb-text);
    font-size: 1.05rem;
    font-weight: 950;
}

.empty-state p:last-child {
    margin: 0;
    color: var(--lmb-muted);
    line-height: 1.6;
}

.site-footer {
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 44px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.3fr) repeat(4, minmax(130px, 1fr));
    gap: 30px;
}

.footer-brand h2 {
    margin: 18px 0 4px;
    font-size: 2rem;
    font-weight: 950;
}

.footer-brand p,
.footer-bottom,
.site-footer a,
.footer-muted {
    color: rgba(255, 255, 255, .7);
}

.site-footer nav {
    display: grid;
    align-content: start;
    gap: 9px;
}

.site-footer h3 {
    color: var(--lmb-white);
    font-size: .9rem;
    font-weight: 950;
}

.site-footer a {
    font-weight: 700;
}

.site-footer a:hover {
    color: var(--lmb-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .88rem;
}

.footer-bottom p {
    margin: 0;
}

.header-search-toggle {
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--lmb-black);
    transition: background-color .2s ease, border-color .2s ease;
}

.header-search-toggle:hover,
.header-search-toggle[aria-expanded="true"] {
    border-color: var(--lmb-border);
    background: var(--lmb-surface-soft);
}

.header-search-toggle svg,
.search-form svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.header-search {
    border-bottom: 1px solid var(--lmb-border);
    background: var(--lmb-white);
}

.header-search .container-xxl {
    padding-block: 12px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form svg {
    position: absolute;
    left: 14px;
    z-index: 1;
    color: var(--lmb-muted);
    pointer-events: none;
}

.search-form input,
.header-search .search-form input {
    width: 100%;
    padding-left: 44px;
}

.classification-filters,
.filters-panel {
    border-bottom: 1px solid var(--lmb-border);
    margin-bottom: 24px;
    padding-bottom: 16px;
}

.classification-filters {
    display: flex;
    align-items: center;
    gap: 16px;
}

.classification-filters__season {
    margin-left: auto;
}

.filter-divider {
    width: 1px;
    height: 30px;
    flex: 0 0 auto;
    background: var(--lmb-border);
}

.filter-chips {
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-chips a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--lmb-border);
    border-radius: 9px;
    background: var(--lmb-white);
    color: var(--lmb-text);
    padding: 8px 13px;
    font-size: .88rem;
    font-weight: 850;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.filter-chips a:hover {
    border-color: #c9c9c9;
    color: var(--lmb-black);
}

.filter-chips a.active {
    border-color: var(--lmb-black);
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.filter-chips--phases a {
    border-color: transparent;
    background: transparent;
}

.filter-chips--phases a.active {
    border-color: var(--lmb-border);
    background: var(--lmb-white);
    color: var(--lmb-black);
    box-shadow: inset 0 -2px 0 var(--lmb-green);
}

.lmb-filter-dropdown .dropdown-toggle,
.date-filter {
    min-width: 142px;
    min-height: 44px;
    display: grid;
    align-content: center;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    background: var(--lmb-white);
    color: var(--lmb-text);
    padding: 7px 38px 7px 12px;
    text-align: left;
}

.lmb-filter-dropdown .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 14px;
    margin: 0;
    transform: translateY(-50%);
}

.lmb-filter-dropdown .dropdown-toggle > span,
.date-filter > span {
    color: var(--lmb-muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.lmb-filter-dropdown .dropdown-toggle strong {
    font-size: .9rem;
    font-weight: 850;
}

.lmb-filter-dropdown .dropdown-menu {
    min-width: 100%;
    margin-top: 7px !important;
    overflow: hidden;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .08);
    padding: 5px;
}

.lmb-filter-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 7px;
    padding: 9px 10px;
    font-size: .88rem;
    font-weight: 750;
}

.lmb-filter-dropdown .dropdown-item.active,
.lmb-filter-dropdown .dropdown-item:active {
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.filters-panel {
    display: grid;
    gap: 14px;
}

.filters-panel__primary,
.filters-panel__secondary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-panel__primary {
    justify-content: space-between;
}

.filters-panel__secondary {
    justify-content: flex-end;
}

.date-filter {
    padding-right: 10px;
}

.date-filter input {
    min-height: 20px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    font-size: .86rem;
    font-weight: 800;
}

.filters-panel--players {
    grid-template-columns: minmax(220px, 1fr) auto auto auto;
    align-items: center;
}

.player-search {
    position: relative;
}

.player-search > span {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--lmb-muted);
}

.player-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--lmb-border);
    border-radius: 10px;
    background: var(--lmb-white);
    padding: 10px 12px 10px 40px;
    font-weight: 650;
}

.empty-state {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.empty-state__mark {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    margin-top: 7px;
    border: 2px solid var(--lmb-green);
    border-radius: 50%;
}

.empty-state p:last-child {
    font-size: .92rem;
}

.match-tickets {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--lmb-green-dark);
    font-size: .82rem;
    font-weight: 850;
}

.match-ticket-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ticket-link {
    border: 1px solid var(--lmb-black);
    border-radius: 8px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 7px 11px;
}

.ticket-link:hover {
    background: var(--lmb-yellow);
    color: var(--lmb-black);
}

.ticket-link--vip {
    background: var(--lmb-yellow);
    color: var(--lmb-black);
}

.ticket-section {
    margin-top: 32px;
}

.ticket-section h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 950;
}

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

.ticket-option {
    display: grid;
    gap: 6px;
    border: 1px solid var(--lmb-border);
    border-top: 3px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 18px;
}

.ticket-option--vip {
    border-top-color: var(--lmb-yellow);
}

.ticket-option__type {
    width: max-content;
    margin: 0;
    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ticket-option--vip .ticket-option__type {
    background: var(--lmb-yellow);
    padding: 3px 6px;
}

.ticket-option > strong {
    font-size: 1.35rem;
}

.ticket-option > span {
    color: var(--lmb-muted);
    font-size: .88rem;
}

.ticket-option .btn-lmb {
    width: max-content;
    margin-top: 8px;
}

.ticket-pending {
    width: max-content;
    margin-top: 8px;
    color: var(--lmb-muted);
    font-size: .78rem;
    font-weight: 850;
}

.btn-lmb--ticket {
    border-color: var(--lmb-border);
    background: var(--lmb-white);
}

.btn-lmb--ticket-vip {
    background: var(--lmb-black);
    color: var(--lmb-yellow);
}

.auth-section {
    min-height: 66vh;
    display: grid;
    align-items: center;
    padding: 64px 0;
}

.auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.auth-intro h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: .98;
    text-wrap: balance;
}

.auth-intro > p:last-child {
    max-width: 52ch;
    margin: 24px 0 0;
    color: var(--lmb-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.auth-form {
    display: grid;
    gap: 16px;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: clamp(24px, 4vw, 40px);
}

.auth-form__heading h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 950;
}

.auth-form__heading p,
.auth-switch {
    margin: 5px 0 0;
    color: var(--lmb-muted);
    font-size: .9rem;
}

.auth-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field > span {
    font-size: .82rem;
    font-weight: 850;
}

.form-field input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--lmb-border);
    border-radius: 9px;
    background: var(--lmb-white);
    padding: 10px 12px;
}

.form-field input:focus {
    border-color: var(--lmb-green);
    outline: 3px solid rgba(25, 135, 84, .12);
}

.field-error {
    color: var(--lmb-red);
    font-size: .77rem;
    font-weight: 750;
}

.form-alert {
    margin: 0;
    border-left: 3px solid var(--lmb-red);
    background: rgba(227, 6, 19, .05);
    padding: 10px 12px;
    font-size: .86rem;
    font-weight: 750;
}

.auth-messages {
    min-width: 0;
    border: 1px solid rgba(227, 6, 19, .24);
    border-left-width: 3px;
    border-radius: 9px;
    color: var(--lmb-red);
    overflow-wrap: anywhere;
}

.auth-messages[hidden] {
    display: none;
}

.auth-messages__list {
    display: grid;
    gap: 3px;
    margin: 0;
    padding-left: 17px;
}

.auth-messages__text {
    margin: 0;
}

.auth-messages--success {
    border-color: rgba(25, 135, 84, .26);
    border-left-color: var(--lmb-green);
    background: rgba(25, 135, 84, .06);
    color: var(--lmb-green-dark);
}

.form-field input.is-invalid {
    border-color: var(--lmb-red);
}

.form-field input.is-invalid:focus {
    border-color: var(--lmb-red);
    outline-color: rgba(227, 6, 19, .14);
}

.auth-submit {
    width: 100%;
    margin-top: 4px;
}

.auth-switch {
    text-align: center;
}

.auth-switch a {
    color: var(--lmb-green-dark);
    font-weight: 900;
}

.auth-switch--professional {
    margin-top: -8px;
    border-top: 1px solid var(--lmb-border);
    padding-top: 14px;
}

.form-field small:not(.field-error) {
    color: var(--lmb-muted);
    font-size: .74rem;
}

.dashboard-body {
    min-height: 100dvh;
    background: var(--lmb-bg);
}

.dashboard-header {
    border-bottom: 1px solid var(--lmb-border);
    background: var(--lmb-white);
}

.dashboard-header__inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.dashboard-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dashboard-brand .site-logo {
    width: 42px;
    height: 46px;
}

.dashboard-brand > span {
    display: grid;
    line-height: 1.05;
}

.dashboard-brand strong {
    font-size: 1.15rem;
    font-weight: 950;
}

.dashboard-brand small {
    color: var(--lmb-muted);
    font-size: .7rem;
    font-weight: 750;
}

.dashboard-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dashboard-nav a {
    border-radius: 8px;
    padding: 8px 11px;
    font-size: .86rem;
    font-weight: 850;
}

.dashboard-nav a.active {
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.dashboard-nav__group {
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid var(--lmb-border);
    color: var(--lmb-muted);
    font-size: .66rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dashboard-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-account > span {
    max-width: 180px;
    overflow: hidden;
    font-size: .84rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-account form {
    margin: 0;
}

.dashboard-account button {
    border: 0;
    background: transparent;
    color: var(--lmb-muted);
    padding: 7px 0;
    font-size: .82rem;
    font-weight: 800;
}

.dashboard-main {
    padding: 40px 0 64px;
}

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

.dashboard-page-heading h1 {
    margin: 0;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    font-weight: 950;
    letter-spacing: -.04em;
}

.dashboard-page-heading > div > p:last-child {
    margin: 10px 0 0;
    color: var(--lmb-muted);
}

.dashboard-text-link {
    color: var(--lmb-green-dark);
    font-size: .9rem;
    font-weight: 900;
}

.dashboard-date {
    color: var(--lmb-muted);
    font-size: .84rem;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

.dashboard-flash {
    margin-bottom: 24px;
    border-left: 3px solid var(--lmb-green);
    background: var(--lmb-white);
    padding: 13px 15px;
    font-size: .88rem;
    font-weight: 800;
}

.dashboard-flash--error {
    border-left-color: var(--lmb-red);
}

.dashboard-flash--warning {
    border-left-color: var(--lmb-yellow);
}

.dashboard-section {
    margin-top: 40px;
}

.dashboard-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.dashboard-section__heading h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 950;
}

.accreditation-explainer {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    max-width: 900px;
    border: 1px solid rgba(25, 135, 84, .24);
    border-left: 4px solid var(--lmb-green);
    border-radius: 10px;
    background: rgba(25, 135, 84, .055);
    padding: 20px;
}

.accreditation-explainer > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lmb-green-dark);
    color: var(--lmb-white);
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 800;
}

.accreditation-explainer h2,
.accreditation-explainer p {
    margin: 0;
}

.accreditation-explainer h2 {
    font-size: 1.05rem;
    font-weight: 950;
}

.accreditation-explainer p {
    max-width: 72ch;
    margin-top: 5px;
    color: var(--lmb-muted);
    font-size: .9rem;
    line-height: 1.6;
}

.accreditation-status {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    border: 1px solid var(--lmb-border);
    border-left: 4px solid var(--lmb-yellow);
    background: var(--lmb-white);
    padding: 20px;
}

.accreditation-status--approved { border-left-color: var(--lmb-green); }
.accreditation-status--rejected { border-left-color: var(--lmb-red); }
.accreditation-status h2 { margin: 0; font-size: 1.35rem; font-weight: 950; }
.accreditation-status div > p:last-child { margin: 4px 0 0; color: var(--lmb-muted); font-size: .84rem; }
.accreditation-status > span { border-radius: 999px; background: rgba(255, 193, 7, .18); padding: 7px 11px; font-size: .75rem; font-weight: 900; }
.accreditation-status--approved > span { background: rgba(25, 135, 84, .12); color: var(--lmb-green-dark); }
.accreditation-status--rejected > span { background: rgba(227, 6, 19, .08); color: var(--lmb-red); }
.accreditation-status__note { grid-column: 1 / -1; margin: 0; border-top: 1px solid var(--lmb-border); padding-top: 14px; font-size: .86rem; }

.journalist-form-section { max-width: 980px; }
.accreditation-form { display: grid; gap: 28px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(20px, 4vw, 36px); }
.accreditation-form fieldset { display: grid; gap: 18px; margin: 0; border: 0; padding: 0; }
.accreditation-form fieldset + fieldset { border-top: 1px solid var(--lmb-border); padding-top: 26px; }
.accreditation-form legend { margin: 0; font-size: 1.05rem; font-weight: 950; }
.accreditation-form fieldset > p { margin: -13px 0 0; color: var(--lmb-muted); font-size: .82rem; }
.journalist-photo-upload { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: center; gap: 20px; border: 1px dashed #a9a9a9; border-radius: 12px; background: var(--lmb-bg); padding: 16px; cursor: pointer; transition: border-color .18s ease, background-color .18s ease; }
.journalist-photo-upload:hover,
.journalist-photo-upload:focus-within { border-color: var(--lmb-green-dark); background: rgba(25, 135, 84, .045); }
.journalist-photo-upload:focus-within { outline: 3px solid rgba(25, 135, 84, .12); }
.journalist-photo-upload__preview { width: 112px; height: 126px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: #dfdfdf; }
.journalist-photo-upload__preview svg { width: 52px; fill: none; stroke: #777; stroke-width: 1.5; }
.journalist-photo-upload__preview img:not([hidden]) { width: 100%; height: 100%; display: block; object-fit: cover; }
.journalist-photo-upload.has-photo .journalist-photo-upload__preview svg { display: none; }
.journalist-photo-upload__copy { display: grid; justify-items: start; gap: 7px; }
.journalist-photo-upload__copy strong { font-size: .9rem; font-weight: 950; }
.journalist-photo-upload__copy small { max-width: 56ch; color: var(--lmb-muted); font-size: .78rem; line-height: 1.55; }
.journalist-photo-upload__copy b { min-height: 40px; display: inline-flex; align-items: center; margin-top: 4px; border: 1px solid var(--lmb-border); border-radius: 8px; background: var(--lmb-white); padding: 7px 12px; font-size: .76rem; font-weight: 900; }
.journalist-photo-upload > input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.accreditation-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.accreditation-form__wide { grid-column: 1 / -1; }
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--lmb-border);
    border-radius: 9px;
    background: var(--lmb-white);
    padding: 10px 12px;
}
.form-field textarea { min-height: 118px; resize: vertical; }
.form-field select:focus,
.form-field textarea:focus { border-color: var(--lmb-green); outline: 3px solid rgba(25, 135, 84, .12); }
.declaration-field { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 10px; font-size: .85rem; line-height: 1.5; }
.declaration-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--lmb-green-dark); }
.accreditation-form__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--lmb-border); padding-top: 22px; }
.accreditation-form__actions p { margin: 0; color: var(--lmb-muted); font-size: .8rem; }
.accreditation-form__actions button,
.review-action { min-height: 44px; border: 1px solid var(--lmb-black); border-radius: 8px; background: var(--lmb-black); color: var(--lmb-white); padding: 10px 16px; font-weight: 900; transition: transform .18s ease, background-color .18s ease; }
.accreditation-form__actions button:hover,
.review-action:hover { transform: translateY(-1px); }
.accreditation-locked { max-width: 720px; border-top: 1px solid var(--lmb-border); padding-top: 24px; }
.accreditation-locked h2 { margin: 0; font-size: 1.25rem; font-weight: 950; }
.accreditation-locked p { margin: 7px 0 0; color: var(--lmb-muted); }

.press-pass {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    max-width: 820px;
    border-radius: 16px;
    background: var(--lmb-black);
    color: var(--lmb-white);
}

.press-pass::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: var(--lmb-yellow);
    content: '';
}

.press-pass--used::before { background: var(--lmb-muted); }

.press-pass__identity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 290px;
    padding: clamp(28px, 5vw, 48px);
}

.press-pass__identity > span {
    color: var(--lmb-yellow);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .12em;
}

.press-pass__profile { display: flex; align-items: center; gap: 20px; margin-top: 14px; }
.press-pass__profile > img { width: 92px; height: 108px; flex: 0 0 auto; border: 2px solid rgba(255, 255, 255, .24); border-radius: 10px; object-fit: cover; }
.press-pass__identity h3 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 950;
    letter-spacing: -.04em;
    line-height: .98;
}

.press-pass__profile p {
    margin: 12px 0 0;
    color: #c8c8c8;
}

.press-pass__identity dl {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin: auto 0 0;
    padding-top: 28px;
}

.press-pass__identity dt { color: #929292; font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.press-pass__identity dd { margin: 2px 0 0; font-size: .8rem; font-weight: 850; }
.press-pass__qr { display: grid; place-items: center; align-content: center; gap: 10px; background: var(--lmb-white); color: var(--lmb-black); padding: 24px; }
.press-pass__qr svg { display: block; width: min(100%, 210px); height: auto; }
.press-pass__qr small { font-size: .7rem; font-weight: 850; text-align: center; }
.press-pass__used-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--lmb-black); color: var(--lmb-white); font-size: 1.8rem; font-weight: 950; }
.press-pass__qr > strong { font-size: 1rem; font-weight: 950; }
.press-pass-help { max-width: 74ch; margin: 14px 0 0; color: var(--lmb-muted); font-size: .8rem; line-height: 1.6; }

.accreditation-review-list { display: grid; gap: 12px; }
.accreditation-review { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(340px, 1.3fr) minmax(240px, .8fr); gap: 22px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 18px; }
.accreditation-review__identity { display: flex; align-items: center; gap: 12px; }
.accreditation-review h3,
.accreditation-review p { margin: 0; }
.accreditation-review h3 { font-size: .95rem; font-weight: 950; }
.accreditation-review__identity p { color: var(--lmb-muted); font-size: .76rem; }
.accreditation-review dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; margin: 0; }
.accreditation-review dt { color: var(--lmb-muted); font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.accreditation-review dd { margin: 2px 0 0; font-size: .8rem; font-weight: 750; overflow-wrap: anywhere; }
.accreditation-review dd a { color: var(--lmb-green-dark); }
.accreditation-review__notes { grid-column: 1 / -1; border-top: 1px solid var(--lmb-border); padding-top: 12px; color: var(--lmb-muted); font-size: .82rem; }
.accreditation-review form { display: grid; gap: 10px; }
.accreditation-review form > div { display: flex; justify-content: flex-end; gap: 8px; }
.review-action { min-height: 40px; padding: 7px 11px; font-size: .76rem; }
.review-action--reject { border-color: var(--lmb-border); background: var(--lmb-white); color: var(--lmb-red); }
.review-action--approve { border-color: var(--lmb-green-dark); background: var(--lmb-green-dark); }

.ticket-market-list {
    border-top: 1px solid var(--lmb-border);
}

.ticket-market-row {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) minmax(150px, .8fr) minmax(110px, .45fr) auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--lmb-border);
    background: var(--lmb-white);
    padding: 16px;
}

.ticket-market-row--vip {
    box-shadow: inset 3px 0 0 var(--lmb-yellow);
}

.ticket-market-match,
.ticket-market-type,
.ticket-market-price {
    display: grid;
    gap: 3px;
}

.ticket-market-match > span,
.ticket-market-type small,
.ticket-market-price small {
    color: var(--lmb-muted);
    font-size: .75rem;
    font-weight: 750;
}

.ticket-market-match strong {
    font-size: .96rem;
}

.ticket-market-match i {
    color: var(--lmb-muted);
    font-size: .7rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.ticket-market-type > span {
    font-size: .8rem;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ticket-market-row--vip .ticket-market-type > span {
    color: #725a00;
}

.ticket-market-price strong {
    font-size: 1.08rem;
    font-variant-numeric: tabular-nums;
}

.ticket-buy-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-buy-form input {
    width: 54px;
    min-height: 38px;
    border: 1px solid var(--lmb-border);
    border-radius: 8px;
    padding: 7px;
    text-align: center;
}

.ticket-buy-form button {
    min-height: 38px;
    border: 1px solid var(--lmb-black);
    border-radius: 8px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 7px 12px;
    font-size: .82rem;
    font-weight: 900;
}

.ticket-market-row--vip .ticket-buy-form button:hover {
    border-color: var(--lmb-yellow);
    background: var(--lmb-yellow);
    color: var(--lmb-black);
}

.checkout-heading {
    margin-bottom: 32px;
}

.checkout-back {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--lmb-muted);
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
}

.checkout-back:hover {
    color: var(--lmb-black);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
    align-items: start;
    gap: 48px;
}

.checkout-summary {
    border-top: 1px solid var(--lmb-border);
    padding-top: 24px;
}

.checkout-summary h2,
.checkout-payment h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 950;
    letter-spacing: -.035em;
}

.checkout-summary h2 i {
    color: var(--lmb-muted);
    font-size: .7em;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-date {
    margin: 8px 0 32px;
    color: var(--lmb-muted);
}

.checkout-lines {
    margin: 0;
    border-top: 1px solid var(--lmb-border);
}

.checkout-lines > div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
    border-bottom: 1px solid var(--lmb-border);
    padding: 14px 0;
}

.checkout-lines dt {
    color: var(--lmb-muted);
    font-weight: 600;
}

.checkout-lines dd {
    margin: 0;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
}

.checkout-lines .checkout-total {
    padding-block: 20px;
    color: var(--lmb-black);
    font-size: 1.2rem;
}

.checkout-payment {
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 28px;
}

.checkout-payment > p:not(.section-eyebrow) {
    margin: 8px 0 24px;
    color: var(--lmb-muted);
    line-height: 1.6;
}

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

.checkout-payment-form .form-field {
    margin: 0;
}

.checkout-payment-form .form-field small,
.checkout-payment-note {
    color: var(--lmb-muted);
}

.checkout-pay-button {
    min-height: 48px;
    border: 1px solid var(--lmb-black);
    border-radius: 8px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    padding: 11px 16px;
    font-weight: 900;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.checkout-pay-button:hover {
    border-color: var(--lmb-yellow);
    background: var(--lmb-yellow);
    color: var(--lmb-black);
}

.checkout-pay-button:active {
    transform: translateY(1px);
}

.checkout-pay-button:disabled {
    cursor: wait;
    opacity: .65;
}

.checkout-payment-note {
    margin: 0;
    font-size: .76rem;
    line-height: 1.5;
}

.dashboard-table-wrap {
    border-block: 1px solid var(--lmb-border);
    background: var(--lmb-white);
    scrollbar-width: none;
}

.dashboard-table-wrap::-webkit-scrollbar {
    display: none;
}

.dashboard-table {
    min-width: 760px;
    margin: 0;
}

.dashboard-table th {
    color: var(--lmb-muted);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-table td {
    font-size: .86rem;
    font-variant-numeric: tabular-nums;
}

.dashboard-table td > small {
    display: block;
    color: var(--lmb-muted);
    font-size: .7rem;
}

.order-status,
.user-state {
    width: max-content;
    display: inline-flex;
    border: 1px solid var(--lmb-border);
    border-radius: 7px;
    background: var(--lmb-surface-soft);
    padding: 4px 7px;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.order-status--paid,
.user-state--active {
    border-color: rgba(25, 135, 84, .22);
    background: rgba(25, 135, 84, .08);
    color: var(--lmb-green-dark);
}

.order-status--pending,
.user-state--pending {
    border-color: rgba(244, 196, 0, .4);
    background: rgba(244, 196, 0, .12);
    color: #725a00;
}

.order-status--cancelled,
.order-status--expired,
.user-state--suspended {
    color: var(--lmb-muted);
}

.dashboard-section__note { margin: 0; color: var(--lmb-muted); font-size: .82rem; }

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

.admission-ticket {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lmb-border);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 18px;
}

.admission-ticket::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--lmb-green);
    content: "";
}

.admission-ticket--used, .admission-ticket--cancelled { color: var(--lmb-muted); }
.admission-ticket--used::before, .admission-ticket--cancelled::before { background: var(--lmb-border); }

.admission-ticket__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admission-ticket__topline strong { color: var(--lmb-green-dark); }
.admission-ticket--used .admission-ticket__topline strong,
.admission-ticket--cancelled .admission-ticket__topline strong { color: var(--lmb-muted); }

.admission-ticket__match { margin: 18px 0; border-block: 1px solid var(--lmb-border); padding: 14px 0; }
.admission-ticket__match p { margin: 0 0 5px; color: var(--lmb-muted); font-size: .74rem; font-weight: 750; }
.admission-ticket__match h3 { margin: 0; font-size: 1rem; font-weight: 900; }
.admission-ticket__match i { color: var(--lmb-muted); font-size: .68rem; font-style: normal; text-transform: uppercase; }
.admission-ticket__qr { display: grid; place-items: center; margin: 0 auto 12px; }
.admission-ticket__qr svg { width: min(190px, 100%); height: auto; }
.admission-ticket--used .admission-ticket__qr,
.admission-ticket--cancelled .admission-ticket__qr { opacity: .25; }
.admission-ticket > code, .admission-ticket > small { display: block; text-align: center; }
.admission-ticket > code { color: var(--lmb-black); font-size: .77rem; font-weight: 850; }
.admission-ticket > small { margin-top: 4px; color: var(--lmb-muted); font-size: .7rem; }

.gate-heading { align-items: center; }
.gate-online { display: inline-flex; align-items: center; gap: 8px; color: var(--lmb-muted); font-size: .78rem; font-weight: 800; }
.gate-online i { width: 8px; height: 8px; border-radius: 50%; background: var(--lmb-green); }

.gate-result {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    max-width: 820px;
    border: 1px solid var(--lmb-border);
    border-left: 4px solid var(--lmb-red);
    border-radius: 12px;
    background: var(--lmb-white);
    padding: 20px;
}

.gate-result--valid,
.gate-result--valid_press { border-left-color: var(--lmb-green); }
.gate-result--already_used { border-left-color: var(--lmb-yellow); }
.gate-result--already_used_press { border-left-color: var(--lmb-yellow); }
.gate-result__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--lmb-red); color: var(--lmb-white); font-size: 1.35rem; font-weight: 950; }
.gate-result--valid .gate-result__icon,
.gate-result--valid_press .gate-result__icon { background: var(--lmb-green); }
.gate-result--already_used .gate-result__icon { background: var(--lmb-yellow); color: var(--lmb-black); }
.gate-result--already_used_press .gate-result__icon { background: var(--lmb-yellow); color: var(--lmb-black); }
.gate-result h2, .gate-result p { margin: 0; }
.gate-result h2 { font-size: 1.45rem; font-weight: 950; }
.gate-result > div > p:not(.content-label) { margin-top: 4px; color: var(--lmb-muted); }

.gate-result__photo { width: 92px; height: 108px; display: block; margin-top: 16px; border: 1px solid var(--lmb-border); border-radius: 10px; object-fit: cover; }
.gate-result__details { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 16px 0 0; border-top: 1px solid var(--lmb-border); padding-top: 14px; }
.gate-result__details div { display: grid; gap: 2px; }
.gate-result__details dt { color: var(--lmb-muted); font-size: .68rem; font-weight: 850; text-transform: uppercase; }
.gate-result__details dd { margin: 0; font-size: .84rem; font-weight: 800; }

.gate-workspace { max-width: 620px; }
.gate-scanner { display: grid; gap: 14px; }
.gate-camera { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--lmb-border); border-radius: 12px; background: #181818; }
.gate-camera video { width: 100%; height: 100%; display: none; object-fit: cover; }
.gate-camera.is-active video { display: block; }

.gate-camera__guide { position: absolute; inset: 50% auto auto 50%; z-index: 2; width: min(58%, 250px); aspect-ratio: 1; display: none; transform: translate(-50%, -50%); border: 2px solid rgba(255, 255, 255, .9); border-radius: 10px; box-shadow: 0 0 0 999px rgba(0, 0, 0, .24); }
.gate-camera.is-active .gate-camera__guide { display: block; }
.gate-camera__empty { position: absolute; inset: 0; display: grid; place-content: center; gap: 4px; color: var(--lmb-white); text-align: center; }
.gate-camera.is-active .gate-camera__empty { display: none; }
.gate-camera__empty span { font-size: 2.5rem; }
.gate-camera__empty small { color: #bdbdbd; }
.gate-scanner__status { margin: 0; color: var(--lmb-muted); font-size: .78rem; text-align: center; }

.gate-camera-button, .gate-manual button { min-height: 44px; border: 1px solid var(--lmb-black); border-radius: 8px; background: var(--lmb-black); color: var(--lmb-white); padding: 9px 15px; font-weight: 900; }
.gate-camera-button:disabled { opacity: .55; }
.gate-manual { display: grid; gap: 9px; margin-top: 10px; border-top: 1px solid var(--lmb-border); padding-top: 18px; }
.gate-manual > span { color: var(--lmb-muted); font-size: .72rem; font-weight: 750; text-align: center; }
.gate-manual > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.gate-manual input { min-width: 0; min-height: 44px; border: 1px solid var(--lmb-border); border-radius: 8px; background: var(--lmb-white); padding: 9px 12px; font-size: .88rem; text-transform: uppercase; }

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-block: 1px solid var(--lmb-border);
    background: var(--lmb-white);
}

.admin-metrics article {
    display: grid;
    gap: 8px;
    border-right: 1px solid var(--lmb-border);
    padding: 20px;
}

.admin-metrics article:last-child {
    border-right: 0;
}

.admin-metrics span {
    color: var(--lmb-muted);
    font-size: .76rem;
    font-weight: 850;
}

.admin-metrics strong {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-variant-numeric: tabular-nums;
    font-weight: 950;
}

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

.admin-user-management__layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 24px; align-items: start; }
.admin-user-form { display: grid; gap: 22px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(20px, 3vw, 30px); }
.admin-user-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-user-form__actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--lmb-border); padding-top: 20px; }
.admin-user-form__actions p { margin: 0; color: var(--lmb-muted); font-size: .78rem; }
.admin-user-form__actions button { min-height: 44px; border: 1px solid var(--lmb-black); border-radius: 8px; background: var(--lmb-black); color: var(--lmb-white); padding: 10px 18px; font-weight: 900; }
.admin-user-form__actions button:disabled { opacity: .65; }
.role-guide { border-top: 3px solid var(--lmb-yellow); background: var(--lmb-black); color: var(--lmb-white); padding: 22px; }
.role-guide h3 { margin: 0; font-size: 1rem; font-weight: 950; }
.role-guide > div { display: grid; gap: 0; margin-top: 12px; }
.role-guide article { border-top: 1px solid #333; padding: 11px 0; }
.role-guide article strong { font-size: .78rem; }
.role-guide article p { margin: 3px 0 0; color: #aaa; font-size: .7rem; line-height: 1.45; }

.admin-list {
    border-top: 1px solid var(--lmb-border);
}

.admin-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--lmb-border);
    background: var(--lmb-white);
    padding: 13px 14px;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    background: var(--lmb-black);
    color: var(--lmb-white);
    font-size: .68rem;
    font-weight: 950;
}

.admin-avatar--photo { object-fit: cover; }

.admin-list p {
    flex: 1;
    display: grid;
    margin: 0;
}

.admin-list p strong {
    font-size: .88rem;
}

.admin-list p small {
    color: var(--lmb-muted);
    font-size: .72rem;
}

.admin-list--orders > div > strong {
    font-size: .84rem;
    font-variant-numeric: tabular-nums;
}

.dashboard-permissions > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dashboard-permissions > div:last-child span {
    border: 1px solid var(--lmb-border);
    border-radius: 7px;
    background: var(--lmb-white);
    padding: 6px 9px;
    font-size: .74rem;
    font-weight: 800;
}

.dashboard-forbidden {
    max-width: 680px;
    margin: 80px auto;
}

.dashboard-forbidden h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -.04em;
    line-height: 1;
}

.dashboard-forbidden > p:not(.content-label) {
    color: var(--lmb-muted);
}

.staff-heading { align-items: center; }
.staff-role-chip {
    border: 1px solid var(--lmb-border);
    border-radius: 999px;
    background: var(--lmb-white);
    padding: 8px 12px;
    color: var(--lmb-muted);
    font-size: .75rem;
    font-weight: 850;
}
.staff-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--lmb-border);
    border-left: 4px solid var(--lmb-yellow);
    background: var(--lmb-white);
    padding: 22px;
}
.staff-welcome > div:first-child { display: grid; gap: 5px; }
.staff-welcome strong { font-size: 1.2rem; font-weight: 950; }
.staff-welcome p { margin: 0; color: var(--lmb-muted); font-size: .82rem; }
.staff-permission-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.staff-permission-list span { border-radius: 999px; background: var(--lmb-surface-soft); padding: 6px 9px; color: var(--lmb-muted); font-size: .68rem; font-weight: 800; }
.staff-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; border-block: 1px solid var(--lmb-border); background: var(--lmb-white); }
.staff-metrics article { display: grid; gap: 7px; border-right: 1px solid var(--lmb-border); padding: 18px; }
.staff-metrics article:last-child { border-right: 0; }
.staff-metrics span { color: var(--lmb-muted); font-size: .72rem; font-weight: 850; }
.staff-metrics strong { font-size: 1.7rem; font-weight: 950; font-variant-numeric: tabular-nums; }
.staff-module { max-width: 1120px; }
.player-import-form { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(280px, 1.3fr); align-items: start; gap: 16px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(20px, 4vw, 34px); }
.player-import-form > button { grid-column: 1 / -1; justify-self: start; min-height: 44px; }
.csv-dropzone { display: grid; gap: 5px; min-height: 86px; align-content: center; border: 1px dashed #aaa; border-radius: 10px; background: var(--lmb-bg); padding: 14px; cursor: pointer; }
.csv-dropzone:hover, .csv-dropzone:focus-within { border-color: var(--lmb-green-dark); background: rgba(25, 135, 84, .045); }
.csv-dropzone strong { font-size: .85rem; font-weight: 950; }
.csv-dropzone small { color: var(--lmb-muted); font-size: .73rem; }
.csv-dropzone span { overflow: hidden; color: var(--lmb-green-dark); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.csv-dropzone input { width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); position: absolute; }
.player-import-help { grid-column: 1 / -1; border-left: 3px solid var(--lmb-yellow); background: var(--lmb-bg); padding: 12px 14px; }
.player-import-help strong { font-size: .78rem; font-weight: 950; }
.player-import-help p { margin: 4px 0 7px; color: var(--lmb-muted); font-size: .74rem; line-height: 1.5; }
.player-import-help code { color: var(--lmb-black); font-size: .72rem; }
.player-import-help a { color: var(--lmb-green-dark); font-size: .76rem; font-weight: 900; }
.player-import-errors { margin-bottom: 16px; }
.player-import-errors strong { font-size: .8rem; }
.player-import-errors ul { display: grid; gap: 3px; margin: 6px 0 0; padding-left: 18px; font-size: .77rem; font-weight: 500; }
.news-editor-form { display: grid; gap: 20px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(20px, 4vw, 34px); }
.news-editor-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.news-editor-form__wide { grid-column: 1 / -1; }
.news-editor-form textarea { min-height: 100px; }
.news-quill-field { display: grid; gap: 8px; }
.news-quill-field > span { font-size: .8rem; font-weight: 900; }
.quill-editor { min-height: 250px; background: var(--lmb-white); font-family: inherit; }
.quill-editor .ql-editor { min-height: 205px; font-size: .92rem; line-height: 1.65; }
.quill-editor .ql-editor img, .quill-editor .ql-editor iframe { max-width: 100%; }
.quill-editor .ql-editor iframe { width: 100%; min-height: 300px; }
.quill-editor .ql-toolbar { border-color: var(--lmb-border); background: var(--lmb-bg); }
.quill-editor .ql-container { border-color: var(--lmb-border); }
.quill-help, .quill-upload-status { color: var(--lmb-muted); font-size: .73rem; line-height: 1.5; }
.quill-upload-status:empty { display: none; }
.news-cover-upload { display: grid; gap: 6px; border: 1px dashed #aaa; border-radius: 10px; background: var(--lmb-bg); padding: 14px; cursor: pointer; }
.news-cover-upload:hover, .news-cover-upload:focus-within { border-color: var(--lmb-green-dark); background: rgba(25, 135, 84, .045); }
.news-cover-upload > span { font-size: .8rem; font-weight: 900; }
.news-cover-upload > small { color: var(--lmb-muted); font-size: .73rem; }
.news-cover-upload > strong { color: var(--lmb-green-dark); font-size: .74rem; }
.news-cover-upload > input { width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); position: absolute; }
.staff-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--lmb-border); padding-top: 20px; }
.staff-form-actions p { margin: 0; color: var(--lmb-muted); font-size: .76rem; }
.staff-form-actions button, .media-upload-form > button { min-height: 44px; border: 1px solid var(--lmb-black); border-radius: 8px; background: var(--lmb-black); color: var(--lmb-white); padding: 10px 17px; font-weight: 900; }
.staff-form-actions button:disabled, .media-upload-form > button:disabled { cursor: wait; opacity: .6; }
.staff-content-list { margin-top: 30px; }
.staff-content-list h3 { margin: 0; font-size: 1.05rem; font-weight: 950; }
.staff-news-list { border-top: 1px solid var(--lmb-border); }
.staff-news-list article { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 14px 16px; }
.staff-news-list article > div { min-width: 0; }
.staff-news-list h3 { overflow: hidden; margin: 6px 0 2px; text-overflow: ellipsis; white-space: nowrap; }
.staff-news-list small, .staff-slug { color: var(--lmb-muted); font-size: .72rem; }
.staff-slug { flex: 0 0 auto; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.news-status { display: inline-flex; border-radius: 999px; background: var(--lmb-surface-soft); padding: 4px 7px; color: var(--lmb-muted); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.news-status--published { background: rgba(25, 135, 84, .1); color: var(--lmb-green-dark); }
.news-status--draft { background: rgba(244, 196, 0, .14); color: #725a00; }
.media-upload-form { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: end; gap: 16px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: clamp(20px, 4vw, 34px); }
.media-dropzone { display: grid; gap: 5px; min-height: 86px; align-content: center; border: 1px dashed #aaa; border-radius: 10px; background: var(--lmb-bg); padding: 14px; cursor: pointer; }
.media-dropzone:hover, .media-dropzone:focus-within { border-color: var(--lmb-green-dark); background: rgba(25, 135, 84, .045); }
.media-dropzone strong { font-size: .85rem; font-weight: 950; }
.media-dropzone small { color: var(--lmb-muted); font-size: .73rem; }
.media-dropzone span { overflow: hidden; color: var(--lmb-green-dark); font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.media-dropzone input { width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); position: absolute; }
.media-quality-note { grid-column: 1 / -1; border-left: 3px solid var(--lmb-green); background: rgba(25, 135, 84, .055); padding: 11px 13px; }
.media-quality-note strong { font-size: .76rem; font-weight: 950; }
.media-quality-note p { margin: 3px 0 0; color: var(--lmb-muted); font-size: .74rem; line-height: 1.5; }
.media-upload-form > button { grid-column: 1 / -1; justify-self: start; }
.staff-media-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.staff-media-list article { overflow: hidden; border: 0; background: transparent; }
.staff-media-list .lmb-player { border-bottom: 0; }
.staff-media-list article > div { display: grid; gap: 3px; padding: 12px; }
.staff-media-list small { color: var(--lmb-muted); font-size: .7rem; }
.staff-readonly { max-width: 900px; }
.staff-module-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.staff-module-cards article { display: grid; gap: 7px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 18px; }
.staff-module-cards span { color: var(--lmb-green-dark); font-size: 1.1rem; }
.staff-module-cards strong { font-size: .85rem; font-weight: 950; }
.staff-module-cards p, .staff-empty { margin: 0; color: var(--lmb-muted); font-size: .78rem; line-height: 1.55; }
.staff-empty { border-block: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 18px; }
.staff-shortcuts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.staff-shortcuts a { display: grid; gap: 10px; min-height: 92px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 17px; transition: border-color .18s ease, transform .18s ease; }
.staff-shortcuts a:hover { border-color: var(--lmb-black); transform: translateY(-2px); }
.staff-shortcuts strong { font-size: .9rem; font-weight: 950; }
.staff-shortcuts span { color: var(--lmb-muted); font-size: .73rem; }
.staff-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.staff-team-grid a { display: grid; gap: 6px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 18px; }
.staff-team-grid strong { font-size: .9rem; font-weight: 950; }
.staff-team-grid small { color: var(--lmb-muted); font-size: .74rem; }
.staff-team-identity { display: grid; grid-template-columns: auto minmax(180px, 1fr) minmax(260px, .9fr); align-items: center; gap: 20px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 20px; }
.staff-team-identity__logo { display: grid; place-items: center; min-width: 86px; }
.staff-team-identity h2 { margin: 3px 0 0; font-size: 1rem; font-weight: 950; }
.staff-team-identity p { margin: 5px 0 0; color: var(--lmb-muted); font-size: .74rem; line-height: 1.45; }
.asset-upload-form { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.asset-file-input { display: inline-flex; align-items: center; min-height: 40px; border: 1px solid var(--lmb-border); border-radius: 8px; background: var(--lmb-bg); padding: 8px 10px; cursor: pointer; }
.asset-file-input:hover, .asset-file-input:focus-within { border-color: var(--lmb-green-dark); }
.asset-file-input span { color: var(--lmb-muted); font-size: .72rem; font-weight: 800; }
.asset-file-input input { width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); position: absolute; }
.asset-upload-form button { min-height: 40px; border: 1px solid var(--lmb-black); border-radius: 8px; background: var(--lmb-black); color: var(--lmb-white); padding: 8px 12px; font-size: .74rem; font-weight: 900; }
.asset-upload-form button:focus-visible, .asset-file-input:focus-within { outline: 3px solid rgba(25, 135, 84, .16); outline-offset: 2px; }
.staff-roster-item { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.staff-roster-item__identity { display: flex; align-items: center; gap: 12px; min-width: 0; }
.staff-roster-item__identity > span { display: grid; gap: 4px; min-width: 0; }
.staff-roster-item strong { font-size: .85rem; font-weight: 950; }
.staff-roster-item small { color: var(--lmb-muted); font-size: .73rem; }
.staff-player-avatar { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 50%; object-fit: cover; background: var(--lmb-surface-soft); }
.staff-player-avatar--fallback { display: grid; place-items: center; color: var(--lmb-green-dark); font-size: .75rem; font-weight: 950; }
.asset-upload-form--player { flex: 0 0 auto; }
.staff-module-placeholder__copy { margin-top: 18px; border-left: 3px solid var(--lmb-yellow); background: var(--lmb-white); padding: 15px 17px; }
.staff-module-placeholder__copy strong { font-size: .82rem; font-weight: 950; }
.staff-module-placeholder__copy p { margin: 4px 0 0; color: var(--lmb-muted); font-size: .78rem; line-height: 1.55; }
.staff-readonly-note { margin-top: 24px; border-left: 3px solid var(--lmb-yellow); background: var(--lmb-white); padding: 14px 16px; color: var(--lmb-muted); font-size: .78rem; }
.profile-card { display: grid; gap: 14px; max-width: 720px; border: 1px solid var(--lmb-border); background: var(--lmb-white); padding: 24px; }
.profile-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.profile-details div { display: grid; gap: 4px; border-top: 1px solid var(--lmb-border); padding-top: 12px; }
.profile-details dt { color: var(--lmb-muted); font-size: .7rem; font-weight: 850; }
.profile-details dd { margin: 0; font-size: .9rem; font-weight: 800; }
.profile-note { margin: 4px 0 0; border-top: 1px solid var(--lmb-border); padding-top: 14px; color: var(--lmb-muted); font-size: .78rem; line-height: 1.55; }

@media (max-width: 1199.98px) {
    .header-actions {
        margin-left: auto;
    }

    .hero-editorial,
    .competition-feature__inner,
    .news-layout {
        grid-template-columns: 1fr;
    }

    .hero-court {
        min-height: 260px;
    }

    .stats-grid,
    .stats-grid--wide,
    .sponsor-grid,
    .team-grid,
    .player-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filters-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filters-panel--players {
        grid-template-columns: 1fr 1fr;
    }

    .ticket-market-row {
        grid-template-columns: minmax(220px, 1fr) 1fr auto;
    }

    .accreditation-review { grid-template-columns: 1fr 1.5fr; }
    .accreditation-review form { grid-column: 1 / -1; }
    .admin-user-management__layout { grid-template-columns: 1fr; }

    .staff-media-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .ticket-market-price {
        text-align: right;
    }

    .ticket-buy-form {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .admission-ticket-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .home-matches-layout {
        grid-template-columns: 1fr;
    }

    .home-matches-aside {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .news-page-layout { grid-template-columns: 1fr; }
    .news-page-aside { position: static; }
    .news-article-section { padding-top: 30px; }
    .news-article__header h1 { font-size: 2.65rem; }
    .news-article__excerpt { font-size: 1rem; }
    .news-article__layout { grid-template-columns: 1fr; gap: 28px; }
    .news-article__aside { position: static; }
    .news-article__source { max-width: 260px; }

    .top-strip nav,
    .header-actions .login-button {
        display: none;
    }

    .main-nav {
        min-height: 76px;
    }

    .navbar-brand small {
        display: none;
    }

    .site-logo {
        width: 44px;
        height: 48px;
    }

    .home-hero {
        padding-bottom: 36px;
    }

    .hero-editorial {
        min-height: auto;
        border-radius: 14px;
    }

    .hero-copy {
        padding: 28px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.45rem;
        line-height: 1.05;
    }

    .section-header {
        align-items: start;
        flex-direction: column;
    }

    .section-header h2,
    .competition-feature h2 {
        font-size: 1.75rem;
    }

    .content-section,
    .competition-feature {
        padding: 36px 0;
    }

    .page-hero {
        padding: 36px 0;
    }

    .page-hero p:not(.content-label) {
        margin-top: 12px;
        font-size: .95rem;
    }

    .match-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .match-team,
    .match-team--away {
        justify-content: center;
        text-align: center;
    }

    .match-team--away {
        flex-direction: row-reverse;
    }

    .match-centre {
        border: 0;
        border-block: 1px solid var(--lmb-border);
        padding: 12px 0;
    }

    .filters-bar,
    .filters-bar--compact,
    .phase-line,
    .stats-grid,
    .stats-grid--wide,
    .sponsor-grid,
    .team-grid,
    .player-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .classification-filters {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px 12px;
    }

    .classification-filters .filter-chips--phases {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .classification-filters__season {
        grid-column: 2;
        grid-row: 1;
        margin-left: 0;
    }

    .filter-divider {
        display: none;
    }

    .filter-chips,
    .filters-panel__primary,
    .filters-panel__secondary {
        max-width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .filter-chips {
        padding-bottom: 3px;
    }

    .filters-panel__primary,
    .filters-panel__secondary {
        justify-content: flex-start;
        align-items: stretch;
    }

    .filters-panel__primary {
        display: grid;
        overflow: visible;
    }

    .filters-panel__secondary > * {
        flex: 0 0 auto;
    }

    .filters-panel--players {
        grid-template-columns: 1fr;
    }

    .filters-panel--players > .filter-chips {
        width: 100%;
    }

    .ticket-options {
        grid-template-columns: 1fr;
    }

    .auth-section {
        min-height: auto;
        padding: 40px 0;
    }

    .auth-layout,
    .auth-form__row {
        grid-template-columns: 1fr;
    }

    .auth-layout {
        gap: 32px;
    }

    .auth-intro h1 {
        font-size: 2.7rem;
    }

    .dashboard-header__inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding-block: 10px;
    }

    .dashboard-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .dashboard-nav::-webkit-scrollbar {
        display: none;
    }

    .dashboard-account > span {
        display: none;
    }

    .dashboard-main {
        padding: 32px 0 48px;
    }

    .dashboard-page-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .accreditation-explainer { grid-template-columns: 1fr; }
    .accreditation-status { grid-template-columns: 1fr; }
    .accreditation-status > span { width: max-content; }
    .accreditation-form__grid { grid-template-columns: 1fr; }
    .journalist-photo-upload { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; padding: 12px; }
    .journalist-photo-upload__preview { width: 88px; height: 106px; }
    .accreditation-form__wide { grid-column: auto; }
    .accreditation-form__actions { align-items: stretch; flex-direction: column; }
    .accreditation-form__actions button { width: 100%; }
    .accreditation-review { grid-template-columns: 1fr; }
    .accreditation-review dl { grid-template-columns: 1fr; }
    .accreditation-review form { grid-column: auto; }
    .press-pass { grid-template-columns: 1fr; }
    .press-pass__identity { min-height: 270px; }
    .press-pass__profile { align-items: flex-start; flex-direction: column; }
    .press-pass__qr { padding: 28px; }

    .ticket-market-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .ticket-market-match,
    .ticket-buy-form {
        grid-column: 1 / -1;
    }

    .ticket-market-price {
        text-align: right;
    }

    .ticket-buy-form {
        justify-content: stretch;
    }

    .ticket-buy-form button {
        flex: 1;
    }

    .checkout-payment {
        padding: 22px;
    }

    .admission-ticket-grid { grid-template-columns: 1fr; }
    .dashboard-section__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .gate-result { grid-template-columns: 1fr; }
    .gate-result__icon { width: 36px; height: 36px; }
    .gate-camera { aspect-ratio: 1; }
    .gate-manual > div { grid-template-columns: 1fr; }

    .admin-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-metrics article:nth-child(2) {
        border-right: 0;
    }

    .admin-metrics article:nth-child(-n+2) {
        border-bottom: 1px solid var(--lmb-border);
    }

    .admin-metrics article:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--lmb-border);
    }

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

    .admin-user-form__grid { grid-template-columns: 1fr; }
    .admin-user-form__actions { align-items: stretch; flex-direction: column; }
    .admin-user-form__actions button { width: 100%; }

    .staff-heading,
    .staff-welcome { align-items: flex-start; flex-direction: column; }
    .staff-permission-list { justify-content: flex-start; }
    .staff-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .staff-metrics article:nth-child(2) { border-right: 0; }
    .staff-metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--lmb-border); }
    .staff-news-list article { align-items: flex-start; flex-direction: column; gap: 7px; }
    .news-editor-form__grid { grid-template-columns: 1fr; }
    .news-editor-form__wide { grid-column: auto; }
    .staff-form-actions { align-items: stretch; flex-direction: column; }
    .staff-form-actions button { width: 100%; }
    .media-upload-form { grid-template-columns: 1fr; }
    .media-quality-note, .media-upload-form > button { grid-column: auto; }
    .media-upload-form > button { width: 100%; }
    .player-import-form { grid-template-columns: 1fr; }
    .player-import-help, .player-import-form > button { grid-column: auto; }
    .player-import-form > button { width: 100%; }
    .staff-team-identity { grid-template-columns: auto 1fr; align-items: start; }
    .staff-team-identity .asset-upload-form { grid-column: 1 / -1; justify-content: flex-start; }
    .staff-roster-item { align-items: flex-start; flex-direction: column; gap: 12px; }
    .asset-upload-form--player { width: 100%; justify-content: flex-start; }
    .staff-media-list, .staff-module-cards, .staff-shortcuts, .staff-team-grid { grid-template-columns: 1fr; }
    .profile-details { grid-template-columns: 1fr; }

    .media-rail {
        grid-auto-columns: minmax(280px, 88vw);
    }

    .round-nav,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .document-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .ad-slot {
        min-height: 72px;
    }
}
