@font-face {
    font-family: "BPG Algeti Compact";
    src: url("fonts/bpg_algeti_compact.7614a7f251c9.otf") format("opentype");
    font-display: swap;
}

:root {
    --tomato: #ff6b4a;
    --onyx: #0f1115;
    --shadow: #1b1f2a;
    --steel: #94a3b8;
    --platinum: #f4f7fb;
    --paper: #ffffff;
    --ink: #141820;
    --muted: #667085;
    --line: rgba(20, 24, 32, 0.12);
    --mint: #41c7a8;
    --gold: #f4c95d;
    --radius: 8px;
    --radius-sm: 8px;
    --max: 1220px;
    --header-height: 76px;
    --font-body: "Noto Sans Georgian", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Space Grotesk", "Noto Sans Georgian", ui-sans-serif, system-ui, sans-serif;
}

html[lang="ka"] {
    --font-body: "BPG Algeti Compact", "Noto Sans Georgian", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "BPG Algeti Compact", "Noto Sans Georgian", ui-sans-serif, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: calc(var(--header-height) + 18px);
    scroll-behavior: smooth;
    scrollbar-color: var(--tomato) #dce3ec;
    scrollbar-width: thin;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 780ms cubic-bezier(0.16, 1, 0.3, 1), transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #dce3ec;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #dce3ec;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--tomato), #ff9a7f);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tomato);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--platinum);
    color: var(--ink);
    font-family: var(--font-body);
    letter-spacing: 0;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 247, 251, 0.88);
    border-bottom: 1px solid rgba(20, 24, 32, 0.08);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 14px;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 8px 0;
}

.brand,
.nav-links,
.header-actions,
.language-menu summary,
.type-tabs,
.fixture-card-top,
.venue-title,
.stat-row,
.card-actions,
.wide-matchup,
.club-line,
.mini-match {
    display: flex;
    align-items: center;
}

.brand {
    width: fit-content;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(44px, 5vw, 58px);
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--onyx);
    color: var(--paper);
    font-weight: 950;
    box-shadow: inset 0 -4px 0 var(--tomato);
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-links {
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.nav-links a {
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #4d596d;
    font-size: 0.92rem;
    font-weight: 750;
}

.nav-links a.active,
.nav-links a:hover {
    background: var(--onyx);
    color: var(--paper);
}

.header-actions {
    justify-content: flex-end;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 24, 32, 0.12);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(15, 17, 21, 0.08);
}

.mobile-menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logout-form {
    margin: 0;
}

.login-button,
.signup-button,
.account-summary,
.logout-button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-button,
.signup-button {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.84rem;
    font-weight: 850;
    white-space: nowrap;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signup-button {
    border-color: var(--onyx);
    background: var(--onyx);
    color: var(--paper);
}

.login-button:hover,
.signup-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 74, 0.38);
    box-shadow: 0 12px 30px rgba(15, 17, 21, 0.1);
}

.logout-button,
.account-menu-button {
    padding: 0 12px;
    color: #526071;
    font-size: 0.82rem;
    font-weight: 850;
    white-space: nowrap;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.logout-button:hover {
    border-color: rgba(255, 107, 74, 0.38);
    background: #fff5f2;
    color: var(--tomato);
}

.account-menu {
    position: relative;
}

.account-summary {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 10px 0 12px;
    font-size: 0.76rem;
    white-space: nowrap;
    list-style: none;
}

.account-summary::-webkit-details-marker {
    display: none;
}

.account-summary-text {
    display: grid;
    align-content: center;
    gap: 1px;
    min-width: 0;
}

.account-summary-text span {
    color: var(--muted);
}

.account-summary-text strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    min-width: 210px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(15, 17, 21, 0.16);
}

.account-list a,
.account-menu-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #344054;
    font-size: 0.86rem;
    font-weight: 850;
    text-align: left;
}

.account-list a {
    padding: 0 10px;
}

.account-menu-button {
    justify-content: flex-start;
}

.account-list a:hover,
.account-menu-button:hover {
    background: #eef2f7;
    color: var(--ink);
}

.account-menu-button.danger:hover {
    background: #fff5f2;
    color: var(--tomato);
}

.account-menu-form {
    margin: 0;
}

.guest-badge {
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: #526071;
    font-size: 0.82rem;
    font-weight: 750;
    white-space: nowrap;
}

.auth-page {
    min-height: calc(100vh - 210px);
    display: grid;
    place-items: center;
    padding: 54px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.auth-panel {
    width: min(100%, 420px);
    display: grid;
    gap: 16px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 24px 70px rgba(15, 17, 21, 0.1);
}

.auth-panel-heading {
    display: grid;
    gap: 6px;
}

.auth-panel-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.auth-field {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.auth-field input {
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 13px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.auth-field input:focus {
    border-color: rgba(255, 107, 74, 0.7);
    outline: 3px solid rgba(255, 107, 74, 0.16);
}

.password-control {
    position: relative;
    display: block;
}

.password-control input {
    padding-right: 48px;
}

.password-control input::-ms-clear,
.password-control input::-ms-reveal {
    display: none;
}

.password-control input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #526071;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: #f1f5f9;
    color: var(--ink);
}

.password-toggle.is-visible {
    background: #fff5f2;
    color: var(--tomato);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.auth-field small {
    color: #be123c;
    font-size: 0.82rem;
    font-weight: 750;
}

.auth-submit {
    width: 100%;
    justify-content: center;
    border: 0;
    margin-top: 4px;
}

.auth-switch {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
    text-align: center;
}

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

.account-page {
    place-items: start center;
}

.profile-panel {
    width: min(100%, 520px);
}

.profile-intro {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
    line-height: 1.55;
}

.profile-details {
    display: grid;
    gap: 10px;
    margin: 0;
}

.profile-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #f8fafc;
}

.profile-details dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-details dd {
    margin: 0;
    min-width: 0;
    color: var(--ink);
    font-weight: 900;
    overflow-wrap: anywhere;
    text-align: right;
}

.profile-logout-form {
    margin: 0;
}

.profile-logout-button {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.language-menu {
    position: relative;
}

.language-menu summary {
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 850;
    list-style: none;
}

.language-menu summary::-webkit-details-marker {
    display: none;
}

.chevron {
    color: var(--steel);
}

.language-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(15, 17, 21, 0.16);
}

.language-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    color: #344054;
    font-weight: 750;
}

.language-list a.active,
.language-list a:hover {
    background: #eef2f7;
}

main {
    overflow: hidden;
}

.home-hero,
.content-band,
.page-intro,
.split-page,
.fixtures-page-layout,
.chat-page {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
    gap: 22px;
    align-items: stretch;
    padding: clamp(28px, 4vw, 48px) 0 16px;
}

.text-only-hero {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(500px, 62vh, 680px);
    overflow: hidden;
    padding: clamp(72px, 9vh, 118px) max(24px, calc((100vw - var(--max)) / 2 + 16px));
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(15, 17, 21, 0.9), rgba(15, 17, 21, 0.5)),
        var(--onyx);
    box-shadow: 0 28px 80px rgba(15, 17, 21, 0.18);
    isolation: isolate;
}

.home-hero.text-only-hero {
    width: 100%;
    max-width: none;
    margin: 0;
}

.text-only-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 8, 13, 0.92), rgba(12, 14, 19, 0.56) 46%, rgba(8, 10, 14, 0.28) 72%, rgba(5, 8, 13, 0.74)),
        radial-gradient(circle at 16% 20%, rgba(255, 107, 74, 0.28), transparent 28%);
}

.hero-background-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%;
    filter: saturate(1.12) contrast(1.04);
}

.hero-bullets {
    display: grid;
    gap: 8px;
    max-width: 560px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-bullets li {
    position: relative;
    padding-left: clamp(22px, 3vw, 34px);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.7vw, 3.7rem);
    font-weight: 950;
    line-height: 0.98;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.45);
}

.hero-bullets li::before {
    content: "";
    position: absolute;
    top: 0.42em;
    left: 0;
    width: clamp(8px, 0.9vw, 12px);
    height: clamp(8px, 0.9vw, 12px);
    border-radius: 50%;
    background: var(--tomato);
    box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.16);
}

.hero-copy {
    display: grid;
    gap: clamp(18px, 2.3vw, 28px);
    align-content: center;
    justify-items: start;
    max-width: min(650px, 100%);
    min-width: 0;
}

.hero-copy h1 {
    max-width: 590px;
    margin: 0;
    color: var(--paper);
    font-size: clamp(3rem, 5.7vw, 5.9rem);
    line-height: 1.02;
    text-shadow: 0 4px 34px rgba(0, 0, 0, 0.54);
}

.hero-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    font-weight: 800;
    line-height: 1.55;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.42);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-cta {
    min-height: 54px;
    min-width: min(100%, 168px);
    padding: 0 24px;
    border-radius: var(--radius-sm);
    background: var(--tomato);
    box-shadow: 0 18px 40px rgba(255, 107, 74, 0.3);
    font-size: 0.95rem;
}

.hero-cta.secondary {
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.06);
    color: var(--paper);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-icon,
.spark-icon,
.button-icon {
    display: inline-block;
    flex: 0 0 auto;
}

.live-icon {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tomato);
    box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.5);
    animation: livePulse 1.35s ease-out infinite;
}

.spark-icon {
    width: 10px;
    height: 10px;
    margin-right: 7px;
    border-radius: 2px;
    background: var(--tomato);
    transform: rotate(45deg);
    animation: sparkSpin 2.8s linear infinite;
}

.button-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.stadium-icon {
    position: relative;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.stadium-icon::before,
.stadium-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    background: currentColor;
    animation: iconSweep 1.7s ease-in-out infinite;
}

.stadium-icon::before {
    top: 4px;
}

.stadium-icon::after {
    bottom: 4px;
    animation-delay: 0.35s;
}

.field-icon {
    width: 20px;
    height: 20px;
    fill: var(--steel);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--onyx);
    font-family: var(--font-display);
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 0;
    max-width: 760px;
    font-size: clamp(2rem, 4.1vw, 3.85rem);
    overflow-wrap: anywhere;
    word-break: break-word;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(1.7rem, 3vw, 3.1rem);
}

h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.hero-copy p,
.page-intro p {
    max-width: min(710px, 100%);
    margin-bottom: 0;
    color: #536174;
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.65;
    overflow-wrap: break-word;
}

.hero-copy-side {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 16px;
    min-width: 0;
    padding: clamp(20px, 3vw, 32px);
    border-left: 1px solid rgba(20, 24, 32, 0.1);
}

.hero-copy-side p {
    max-width: 520px;
    margin: 0;
    color: #536174;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.7;
}

.hero-text-panel {
    display: grid;
    align-content: center;
    gap: 16px;
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 26px 76px rgba(15, 17, 21, 0.1);
}

.hero-text-panel h2 {
    max-width: 520px;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-text-panel p {
    margin: 0;
    color: #536174;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-match-meta,
.hero-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-match-meta span {
    padding: 8px 10px;
    border-radius: 999px;
    background: #edf2f7;
    color: #46556a;
    font-size: 0.82rem;
    font-weight: 850;
}

.hero-panel-teams {
    display: grid;
    grid-template-columns: 74px auto 74px;
    align-items: center;
    justify-content: start;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius);
    background: #f7f9fc;
}

.hero-panel-teams img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.hero-panel-teams strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--onyx);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 950;
}

.hero-panel-actions .primary-button,
.hero-panel-actions .secondary-button {
    flex: 1 1 170px;
}

.finder-card,
.selection-panel,
.chat-thread {
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 24px 70px rgba(15, 17, 21, 0.11);
}

.hero-media {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(20, 24, 32, 0.16);
    border-radius: var(--radius);
    background: var(--onyx);
    box-shadow: 0 30px 90px rgba(15, 17, 21, 0.22);
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 17, 21, 0.74), transparent 48%),
        linear-gradient(0deg, rgba(15, 17, 21, 0.45), transparent 55%);
    pointer-events: none;
}

.hero-media video {
    display: block;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-scorebug {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px auto 48px;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(244, 247, 251, 0.22);
    border-radius: var(--radius);
    background: rgba(15, 17, 21, 0.72);
    color: var(--paper);
    backdrop-filter: blur(16px);
}

.hero-scorebug img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hero-scorebug strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.sound-bars {
    position: absolute;
    right: 16px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    align-items: end;
    gap: 5px;
    height: 54px;
    padding: 12px;
    border: 1px solid rgba(244, 247, 251, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 17, 21, 0.55);
    backdrop-filter: blur(16px);
}

.sound-bars span {
    display: block;
    width: 5px;
    height: 16px;
    border-radius: 999px;
    background: var(--tomato);
    animation: equalize 0.9s ease-in-out infinite alternate;
}

.sound-bars span:nth-child(2) {
    animation-delay: 0.12s;
    background: var(--gold);
}

.sound-bars span:nth-child(3) {
    animation-delay: 0.24s;
    background: var(--mint);
}

.sound-bars span:nth-child(4) {
    animation-delay: 0.36s;
    background: var(--paper);
}

.finder-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 16px;
}

.finder-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.86rem;
}

.finder-head strong {
    color: var(--onyx);
}

.type-tabs {
    gap: 8px;
    flex-wrap: wrap;
}

.type-tabs button {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f7f9fc;
    color: #435066;
    font-weight: 800;
}

.type-tabs button.active {
    border-color: var(--tomato);
    background: var(--tomato);
    color: var(--paper);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: var(--radius-sm);
    background: #fbfcfe;
    color: var(--steel);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--onyx);
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 8px;
}

.filter-shell {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) repeat(4, auto);
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 70px rgba(15, 17, 21, 0.08);
    backdrop-filter: blur(18px);
}

.premium-search {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.premium-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--onyx);
}

.filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 1px;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chips button,
.premium-select {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: #425066;
    font-weight: 850;
}

.filter-chips button {
    padding: 0 13px;
    white-space: nowrap;
}

.filter-chips button.active {
    border-color: var(--tomato);
    background: var(--tomato);
    color: var(--paper);
}

.premium-select {
    padding: 0 34px 0 14px;
    outline: 0;
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--steel) 50%) calc(100% - 18px) 18px / 7px 7px no-repeat,
        linear-gradient(135deg, var(--steel) 50%, transparent 50%) calc(100% - 13px) 18px / 7px 7px no-repeat,
        var(--paper);
}

.result-count {
    justify-self: end;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
    white-space: nowrap;
}

.search-result {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 66px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    text-align: left;
    box-shadow: 0 18px 42px rgba(15, 17, 21, 0.14);
}

.search-result img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
    background: #eef2f7;
}

.search-result strong,
.search-result small {
    display: block;
}

.search-result small {
    color: var(--muted);
}

.content-band {
    padding: 34px 0;
}

.fixture-band {
    padding-top: 22px;
}

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

.centered-heading {
    position: relative;
    justify-content: center;
    margin-bottom: 22px;
    text-align: center;
}

.centered-heading .text-link {
    position: absolute;
    right: 0;
    bottom: 6px;
}

.text-link {
    color: var(--tomato);
    font-weight: 900;
}

.text-link.light {
    color: var(--paper);
}

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

.fixture-card,
.fixture-row,
.team-card,
.venue-card,
.showing-card,
.message,
.related-showings article {
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fixture-card:hover,
.team-card:hover,
.venue-card:hover,
.showing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 74, 0.38);
    box-shadow: 0 22px 58px rgba(15, 17, 21, 0.14);
}

.fixture-card {
    position: relative;
    display: grid;
    grid-template-rows: 220px 1fr;
    gap: 0;
    min-height: 430px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: clamp(34px, 4.2vw, 64px);
    background: var(--paper);
    box-shadow: 0 24px 58px rgba(15, 17, 21, 0.12);
}

.fixture-card.is-world-cup,
.fixture-row.is-world-cup {
    border-color: rgba(255, 107, 74, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 74, 0.1);
}

.fixture-card.is-world-cup {
    box-shadow: 0 24px 58px rgba(15, 17, 21, 0.12);
}

.fixture-poster {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(42px, 1fr) auto;
    min-height: 220px;
    padding: 30px 36px 42px;
    overflow: hidden;
    border-radius: clamp(34px, 4.2vw, 64px) clamp(34px, 4.2vw, 64px) 0 0;
    background:
        linear-gradient(180deg, rgba(4, 13, 27, 0.34), rgba(4, 11, 21, 0.18) 45%, rgba(5, 10, 16, 0.34)),
        linear-gradient(90deg, rgba(5, 12, 23, 0.72), rgba(5, 12, 23, 0.28) 48%, rgba(5, 12, 23, 0.72)),
        url("img/match-card-stadium.6dbb3ad4b7b6.jpg") center / cover no-repeat,
        #07111f;
    color: var(--paper);
    isolation: isolate;
}

.fixture-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.2), transparent 28%);
    opacity: 0.58;
}

.fixture-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 10, 17, 0.06), rgba(5, 10, 17, 0.52));
}

.fixture-card-top {
    justify-content: space-between;
    gap: 12px;
    min-height: 28px;
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 850;
}

.fixture-card .fixture-card-top {
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    text-transform: none;
}

.fixture-card .spark-icon {
    width: 12px;
    height: 12px;
    margin-right: 9px;
    border-radius: 50%;
    transform: none;
    animation: none;
}

.fixture-card-top strong {
    color: var(--tomato);
}

.fixture-card .fixture-card-top strong {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
}

.poster-stage {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: start center;
    gap: 0;
    min-height: 42px;
    padding: 12px 48px 0;
    text-align: center;
}

.poster-stage span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.poster-stage strong {
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    font-weight: 950;
    line-height: 1.15;
    text-transform: none;
}

.poster-teams {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.poster-team {
    display: grid;
    justify-items: center;
    gap: 7px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    font-weight: 900;
    text-align: center;
}

.poster-team img {
    width: 74px;
    height: 74px;
    max-width: 74px;
    max-height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.42));
}

.poster-team span {
    display: none;
}

.poster-vs {
    align-self: center;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--paper);
    font-size: 1.04rem;
    font-weight: 950;
    box-shadow: none;
}

.fixture-ticket-body {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 12px;
    min-height: 210px;
    margin-top: 0;
    padding: 32px 32px 34px;
    border-radius: 0 0 clamp(34px, 4.2vw, 64px) clamp(34px, 4.2vw, 64px);
    background: var(--paper);
    text-align: center;
}

.fixture-ticket-body::before,
.fixture-ticket-body::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--platinum);
    transform: translateY(-50%);
}

.fixture-ticket-body::before {
    left: -12px;
}

.fixture-ticket-body::after {
    right: -12px;
}

.fixture-ticket-body h3 {
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--onyx);
    font-size: clamp(1.28rem, 2.3vw, 1.58rem);
    line-height: 1.15;
}

.fixture-ticket-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 900;
    text-transform: none;
}

.ticket-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.ticket-meta span {
    min-height: 38px;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-sm);
    background: #f8fafc;
    color: #667085;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.2;
}

.fixture-card .primary-button {
    width: min(326px, 82%);
    min-height: 66px;
    margin-top: 10px;
    border-radius: 999px;
    background: #ff6748;
    box-shadow: none;
    font-size: 0.95rem;
}

.fixture-card .button-icon {
    display: none;
}

.fixture-date {
    display: grid;
    gap: 4px;
}

.fixture-date span,
.date-tile span {
    color: var(--muted);
    font-weight: 800;
}

.fixture-date strong {
    font-size: 2.6rem;
    line-height: 1;
    font-family: var(--font-display);
}

.matchup {
    display: grid;
    gap: 9px;
}

.club-line {
    width: 100%;
    min-height: 64px;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: var(--radius-sm);
    background: #fbfcfe;
    color: var(--onyx);
    font-weight: 900;
    text-align: left;
}

.club-line img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.versus {
    color: var(--steel);
    font-size: 0.72rem;
    font-weight: 950;
}

.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    font-weight: 900;
    text-align: center;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.primary-button {
    border: 0;
    background: var(--onyx);
    color: var(--paper);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.secondary-button {
    border: 0;
    background: var(--tomato);
    color: var(--paper);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--paper);
}

.primary-button:disabled,
.secondary-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dark-band {
    width: 100%;
    max-width: none;
    margin-top: 24px;
    padding: 42px max(16px, calc((100vw - var(--max)) / 2)) 46px;
    background: var(--onyx);
    color: var(--paper);
}

.dark-band h2 {
    color: var(--paper);
}

.team-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 280px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--tomato) rgba(255, 255, 255, 0.1);
}

.team-card {
    position: relative;
    display: grid;
    gap: 14px;
    align-content: space-between;
    min-height: 260px;
    padding: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    background:
        linear-gradient(28deg, transparent 0 58%, color-mix(in srgb, var(--team-color) 26%, transparent) 58% 74%, transparent 74%),
        linear-gradient(140deg, color-mix(in srgb, var(--team-color) 20%, transparent), transparent 58%),
        var(--shadow);
    color: var(--paper);
}

.team-card::after {
    content: "";
    position: absolute;
    inset: auto -20% 18px -20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--team-color) 80%, white), transparent);
    animation: scanLine 2.7s linear infinite;
}

.team-card h3 {
    color: var(--paper);
    font-size: 1.35rem;
}

.team-card p {
    margin-bottom: 0;
    color: #d6deea;
}

.team-card.large {
    min-height: 300px;
}

.team-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.24));
}

.card-actions {
    gap: 8px;
    flex-wrap: wrap;
}

.venue-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.light-actions {
    align-items: stretch;
}

.light-actions .primary-button,
.light-actions .secondary-button {
    flex: 1 1 140px;
}

.venue-card {
    overflow: hidden;
    background: var(--paper);
}

.venue-card:hover .venue-image {
    transform: scale(1.035);
}

.venue-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--shadow);
    transition: transform 450ms ease;
}

.venue-body {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.venue-title {
    justify-content: space-between;
    gap: 12px;
}

.venue-title h3 {
    margin: 0;
}

.venue-title span {
    min-width: 44px;
    padding: 7px 9px;
    border-radius: 999px;
    background: #edf2f7;
    color: var(--onyx);
    font-weight: 950;
    text-align: center;
}

.venue-card p {
    margin-bottom: 0;
    color: #536174;
    line-height: 1.48;
}

.muted {
    color: var(--muted);
}

.stat-row {
    flex-wrap: wrap;
    gap: 8px;
}

.stat-row span {
    padding: 7px 9px;
    border-radius: 999px;
    background: #edf2f7;
    color: #46556a;
    font-size: 0.82rem;
    font-weight: 850;
}

.page-intro {
    display: grid;
    gap: 14px;
    padding: 44px 0 22px;
}

.page-intro.compact h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.fixtures-intro {
    gap: 8px;
    padding: 28px 0 14px;
}

.fixtures-intro h1 {
    max-width: none;
}

.fixtures-filter-shell {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 14px;
    margin-bottom: 14px;
    padding: 10px;
}

.fixtures-filter-shell .filter-chips {
    flex: 0 1 auto;
}

.venue-filter-shell {
    grid-template-columns: minmax(260px, 1fr) auto minmax(180px, auto) auto;
    grid-template-areas:
        "search quick area count"
        "cities cities cities cities";
    align-items: start;
}

.venue-filter-shell.area-filter-hidden {
    grid-template-columns: minmax(260px, 1fr) auto auto;
    grid-template-areas:
        "search quick count"
        "cities cities cities";
}

.venue-filter-shell .premium-search {
    grid-area: search;
}

.venue-quick-filters {
    grid-area: quick;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
}

.venue-city-filters {
    grid-area: cities;
    flex-wrap: wrap;
    overflow: visible;
    padding-top: 2px;
    padding-bottom: 0;
}

.venue-filter-shell .premium-select {
    grid-area: area;
    width: 100%;
    min-width: 180px;
}

.venue-filter-shell .result-count {
    grid-area: count;
    align-self: center;
}

.fixtures-page-layout {
    padding-bottom: 44px;
}

.split-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 18px;
    align-items: start;
    padding-bottom: 44px;
}

.fixture-list {
    display: grid;
    gap: 12px;
}

.fixture-row {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 128px;
    padding: 16px;
    box-shadow: 0 18px 48px rgba(15, 17, 21, 0.07);
}

.fixture-row .primary-button {
    align-self: center;
    min-width: 180px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: var(--radius);
    white-space: nowrap;
}

.fixture-main {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.fixture-main .fixture-card-top,
.fixture-main .fixture-match-actions {
    grid-column: 1 / -1;
}

.fixture-match-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
    gap: 16px;
    align-items: center;
}

.where-watch-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 18px;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 44px;
}

.where-watch-layout.is-full {
    grid-template-columns: 1fr;
}

.where-watch-summary {
    position: sticky;
    top: 86px;
    align-self: start;
}

.watch-fixture-card {
    min-height: auto;
}

.watch-venue-list {
    display: grid;
    gap: 14px;
}

.watch-venue-card {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 20px 58px rgba(15, 17, 21, 0.08);
}

.watch-venue-image {
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--radius-sm);
    background: var(--onyx);
}

.watch-venue-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.watch-venue-body {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: 4px;
}

.watch-venue-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.watch-venue-title h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.watch-venue-title .eyebrow,
.watch-venue-body p {
    margin: 0;
}

.watch-venue-title > span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 999px;
    background: #edf2f7;
    color: var(--onyx);
    font-size: 0.82rem;
    font-weight: 950;
}

.watch-venue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.watch-venue-actions .primary-button,
.watch-venue-actions .secondary-button,
.watch-venue-actions .ghost-button {
    flex: 1 1 132px;
}

.watch-venue-actions .ghost-button {
    border-color: rgba(20, 24, 32, 0.12);
    background: #f7f9fc;
    color: var(--ink);
}

.date-tile {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 96px;
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    background: var(--onyx);
    color: var(--paper);
}

.date-tile span {
    color: #8ea0bd;
    font-size: 0.9rem;
    text-align: center;
}

.date-tile strong {
    color: var(--paper);
    font-size: 1.55rem;
    line-height: 1;
}

.compact-date {
    min-height: 74px;
}

.wide-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.wide-matchup .club-line {
    max-width: none;
    min-height: 68px;
    justify-content: flex-start;
    border-color: rgba(148, 163, 184, 0.3);
    background: #fbfcfe;
}

.wide-matchup .club-line span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wide-matchup .versus {
    display: grid;
    place-items: center;
    width: 38px;
    height: 100%;
    text-align: center;
}

.selection-panel {
    min-height: 420px;
    padding: 16px;
}

.sticky-panel {
    position: sticky;
    top: 86px;
    align-self: start;
}

.panel-placeholder,
.focus-header {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.panel-placeholder span,
.focus-header span {
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-placeholder h2,
.focus-header h2 {
    margin-bottom: 0;
}

.panel-placeholder p,
.focus-header p {
    margin: 0;
    color: var(--muted);
}

.focus-list {
    display: grid;
    gap: 10px;
}

.showing-card {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 12px;
    padding: 10px;
}

.showing-image {
    width: 108px;
    height: 94px;
    object-fit: cover;
    border-radius: 14px;
}

.showing-body {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}

.showing-title {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.showing-title strong {
    line-height: 1.2;
}

.showing-title span {
    color: var(--tomato);
    font-size: 0.78rem;
    font-weight: 950;
    white-space: nowrap;
}

.showing-body small {
    color: var(--muted);
    line-height: 1.35;
}

.mini-match {
    gap: 8px;
    min-width: 0;
    color: #344054;
    font-size: 0.86rem;
    font-weight: 850;
}

.mini-match img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: 0 0 auto;
}

.mini-match span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showing-body em {
    color: var(--tomato);
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 900;
}

.showing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showing-actions .primary-button,
.showing-actions .secondary-button,
.showing-actions .ghost-button {
    flex: 1 1 118px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
}

.match-card {
    grid-template-columns: 88px 1fr;
}

.empty-state,
.loading,
.notice {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: #f7f9fc;
    color: var(--muted);
    font-weight: 750;
}

.filter-item[hidden],
.filter-empty[hidden],
.filter-item.is-filtered-out,
.filter-empty.is-filtered-out {
    display: none !important;
}

.active-card {
    outline: 3px solid rgba(255, 107, 74, 0.36);
    outline-offset: 2px;
}

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

.venue-profile-hero,
.venue-profile-grid {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.venue-profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    gap: 18px;
    align-items: stretch;
    padding: 42px 0 22px;
}

.venue-profile-hero.no-gallery {
    grid-template-columns: minmax(0, 1fr);
}

.venue-profile-hero.no-gallery .venue-profile-copy {
    max-width: 860px;
}

.venue-profile-copy {
    display: grid;
    align-content: center;
    gap: 16px;
    min-width: 0;
}

.venue-profile-copy h1 {
    max-width: 680px;
}

.venue-profile-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.venue-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-switcher {
    position: relative;
    width: fit-content;
    max-width: 100%;
}

.location-switcher summary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    max-width: 100%;
    padding: 0 12px;
    border: 1px solid rgba(255, 107, 74, 0.42);
    border-radius: 999px;
    background: var(--tomato);
    color: var(--paper);
    cursor: pointer;
    list-style: none;
}

.location-switcher summary::-webkit-details-marker {
    display: none;
}

.location-switcher summary::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.location-switcher[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.location-switcher summary span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.location-switcher summary strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

.location-switcher-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    display: grid;
    gap: 6px;
    width: min(320px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: 0 22px 58px rgba(15, 17, 21, 0.16);
}

.location-switcher-menu a {
    display: grid;
    gap: 4px;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--ink);
}

.location-switcher-menu a:hover {
    background: #f7f9fc;
}

.location-switcher-menu span {
    font-weight: 900;
}

.location-switcher-menu small {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

.venue-profile-actions .ghost-button,
.showing-actions .ghost-button {
    border-color: rgba(20, 24, 32, 0.12);
    background: #f7f9fc;
    color: var(--ink);
}

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

.venue-contact-item {
    display: grid;
    align-content: center;
    gap: 5px;
    min-height: 86px;
    padding: 13px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(15, 17, 21, 0.08);
}

.venue-contact-item span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.venue-contact-item strong {
    overflow-wrap: anywhere;
    font-size: 0.96rem;
}

.venue-contact-item small {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.venue-contact-item.rating {
    background: var(--onyx);
    color: var(--paper);
}

.venue-contact-item.rating span {
    color: rgba(255, 255, 255, 0.66);
}

.venue-contact-item.rating strong {
    font-size: 1.65rem;
    line-height: 1;
}

.venue-contact-item.map {
    border-color: rgba(255, 107, 74, 0.28);
}

.muted-contact {
    color: var(--muted);
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 10px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--onyx);
    cursor: pointer;
}

.gallery-tile.featured {
    grid-row: auto;
}

.gallery-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

.gallery-tile-hidden {
    display: none;
}

.gallery-more-count {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    background: rgba(15, 17, 21, 0.58);
    color: var(--paper);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.venue-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 18px;
    padding: 16px 0 10px;
}

.premium-panel {
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 22px 70px rgba(15, 17, 21, 0.08);
    padding: 18px;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.detail-list div {
    display: grid;
    gap: 6px;
    min-height: 98px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: #f7f9fc;
}

.detail-list span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.detail-list strong {
    color: var(--onyx);
    font-size: 1.08rem;
}

.detail-link {
    color: var(--tomato);
    text-decoration: none;
}

.detail-link:hover {
    text-decoration: underline;
}

.venue-location-list {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
}

.venue-location-row {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: var(--radius-sm);
    background: #fbfcfe;
    color: var(--ink);
}

.venue-location-row span,
.venue-location-row small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.venue-location-row strong {
    overflow-wrap: anywhere;
}

.venue-location-row.active {
    border-color: rgba(255, 107, 74, 0.5);
    background: #fff7f5;
}

.amenity-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-cloud span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--onyx);
    color: var(--paper);
    font-size: 0.82rem;
    font-weight: 900;
}

.reservation-panel {
    display: grid;
    align-content: start;
    gap: 12px;
}

.reservation-panel p {
    color: var(--muted);
    line-height: 1.5;
}

.reservation-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: var(--radius);
    background: var(--onyx);
}

.reservation-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.reservation-card div {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(244, 247, 251, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(15, 17, 21, 0.72);
    color: var(--paper);
    backdrop-filter: blur(16px);
}

.reservation-card span {
    color: #d6deea;
}

.reservation-form {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 107, 74, 0.08), transparent 42%),
        #f8fafc;
}

.form-intro {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.45;
}

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

.form-grid.three {
    grid-template-columns: minmax(92px, 0.65fr) repeat(2, minmax(0, 1fr));
}

.reservation-time-grid {
    grid-template-columns: minmax(92px, 0.55fr) minmax(0, 1.45fr);
}

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

.form-field span {
    color: var(--shadow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(20, 24, 32, 0.14);
    border-radius: var(--radius-sm);
    outline: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
    padding: 0 12px;
}

.form-field input[type="date"],
.form-field input[type="time"],
.reservation-datetime-input {
    cursor: pointer;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.form-field select {
    appearance: none;
    padding-right: 38px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--tomato) 50%),
        linear-gradient(135deg, var(--tomato) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 20px,
        calc(100% - 13px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-field textarea {
    min-height: 92px;
    padding: 12px;
    resize: vertical;
}

.reservation-datetime-input {
    background:
        linear-gradient(90deg, rgba(255, 107, 74, 0.1), transparent 44%),
        rgba(255, 255, 255, 0.96) !important;
    color: var(--onyx);
    font-weight: 900;
}

.reservation-picker-calendar {
    width: min(340px, calc(100vw - 24px));
    overflow: hidden;
    border: 1px solid rgba(20, 24, 32, 0.12);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 28px 70px rgba(15, 17, 21, 0.22);
    font-family: inherit;
}

.reservation-picker-calendar::before,
.reservation-picker-calendar::after {
    display: none;
}

.reservation-picker-calendar .flatpickr-months {
    padding: 10px 10px 4px;
    background: var(--onyx);
}

.reservation-picker-calendar .flatpickr-month,
.reservation-picker-calendar .flatpickr-current-month,
.reservation-picker-calendar .flatpickr-weekday,
.reservation-picker-calendar .flatpickr-prev-month,
.reservation-picker-calendar .flatpickr-next-month {
    color: var(--paper);
    fill: var(--paper);
}

.reservation-picker-calendar .flatpickr-current-month {
    left: 0;
    width: 100%;
    padding-top: 4px;
    font-size: 1rem;
}

.reservation-picker-calendar .flatpickr-current-month .cur-month {
    font-weight: 950;
}

.reservation-picker-calendar .flatpickr-current-month .numInputWrapper {
    display: none;
}

.reservation-picker-calendar .flatpickr-weekdays {
    background: var(--onyx);
}

.reservation-picker-calendar .flatpickr-weekday {
    font-size: 0.72rem;
    font-weight: 900;
    opacity: 0.72;
}

.reservation-picker-calendar .flatpickr-day {
    border-radius: var(--radius-sm);
    color: var(--shadow);
    font-weight: 850;
}

.reservation-picker-calendar .flatpickr-day.today {
    border-color: var(--tomato);
}

.reservation-picker-calendar .flatpickr-day:hover,
.reservation-picker-calendar .flatpickr-day:focus {
    border-color: rgba(255, 107, 74, 0.25);
    background: rgba(255, 107, 74, 0.12);
}

.reservation-picker-calendar .flatpickr-day.selected,
.reservation-picker-calendar .flatpickr-day.startRange,
.reservation-picker-calendar .flatpickr-day.endRange {
    border-color: var(--tomato);
    background: var(--tomato);
    color: var(--paper);
}

.reservation-picker-calendar .flatpickr-day.flatpickr-disabled,
.reservation-picker-calendar .flatpickr-day.prevMonthDay,
.reservation-picker-calendar .flatpickr-day.nextMonthDay {
    color: rgba(102, 112, 133, 0.42);
}

.reservation-picker-calendar .flatpickr-time {
    height: 52px;
    max-height: 52px;
    overflow: visible;
    border-top: 1px solid rgba(20, 24, 32, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 107, 74, 0.12), transparent 58%),
        #f8fafc;
}

.reservation-picker-calendar .flatpickr-time .numInputWrapper {
    display: inline-flex;
    align-items: center;
    height: 52px;
    overflow: visible;
}

.reservation-picker-calendar .flatpickr-time input,
.reservation-picker-calendar .flatpickr-time .flatpickr-am-pm {
    color: var(--onyx);
    font-weight: 950;
}

.reservation-picker-calendar .flatpickr-time input:hover,
.reservation-picker-calendar .flatpickr-time .flatpickr-am-pm:hover,
.reservation-picker-calendar .flatpickr-time input:focus {
    background: rgba(255, 107, 74, 0.1);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--tomato);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.13);
}

.form-field small {
    color: #c2412d;
    font-size: 0.78rem;
    font-weight: 800;
}

.form-alert,
.reservation-confirmation {
    border-radius: var(--radius);
    padding: 14px;
}

.form-alert {
    border: 1px solid rgba(194, 65, 45, 0.18);
    background: rgba(255, 107, 74, 0.1);
    color: #9f341f;
    font-weight: 900;
}

.reservation-confirmation {
    display: grid;
    gap: 10px;
    border: 1px solid rgba(65, 199, 168, 0.28);
    background:
        linear-gradient(135deg, rgba(65, 199, 168, 0.18), rgba(244, 201, 93, 0.14)),
        var(--paper);
}

.reservation-confirmation > span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.reservation-confirmation > strong {
    color: var(--onyx);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    line-height: 1;
}

.reservation-confirmation dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.reservation-confirmation dl div {
    display: grid;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.68);
}

.reservation-confirmation dt {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 850;
    line-height: 1.25;
}

.reservation-confirmation dd {
    margin: 0;
    color: var(--shadow);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.28;
    white-space: nowrap;
    word-break: normal;
}

.wide-button {
    width: 100%;
}

.review-band {
    padding-top: 8px;
}

.review-write-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--tomato);
    color: var(--paper);
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(255, 107, 74, 0.18);
}

.review-insights {
    display: grid;
    grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(20, 24, 32, 0.06);
}

.review-overview {
    display: grid;
    align-content: center;
    gap: 7px;
    min-width: 0;
    border-right: 1px solid rgba(20, 24, 32, 0.1);
}

.review-overview .rating-star {
    font-size: 1.15rem;
}

.review-overview strong {
    color: var(--onyx);
    font-size: 0.98rem;
    font-weight: 950;
}

.review-category-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.review-summary-row {
    display: grid;
    grid-template-columns: minmax(94px, 0.55fr) minmax(80px, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.review-summary-row > span:first-child {
    min-width: 0;
    color: var(--shadow);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.review-summary-row .rating-star {
    color: rgba(20, 24, 32, 0.18);
    font-size: 0.72rem;
}

.review-summary-row .rating-star.filled {
    color: #f6b73c;
}

.review-summary-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(20, 24, 32, 0.08);
}

.review-summary-track i {
    display: block;
    width: var(--score);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0e8f4f, #41c7a8);
}

.reviews-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.review-list-panel {
    align-self: start;
}

.review-dialog {
    width: min(560px, calc(100% - 28px));
    max-height: min(760px, calc(100dvh - 32px));
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 26px 80px rgba(20, 24, 32, 0.28);
}

.review-dialog::backdrop {
    background: rgba(15, 17, 21, 0.48);
    backdrop-filter: blur(12px);
}

.review-dialog-shell {
    display: grid;
    gap: 14px;
    max-height: inherit;
    padding: 20px;
    overflow-y: auto;
}

.review-dialog-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.review-dialog-top h3 {
    margin: 2px 0 0;
    color: var(--onyx);
    font-size: 1.45rem;
}

.dialog-close-button {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.92);
    color: var(--onyx);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.review-form {
    display: grid;
    gap: 11px;
}

.review-auth-panel {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(248, 250, 252, 0.86);
}

.review-auth-panel p {
    margin: 0;
    color: var(--shadow);
    font-weight: 850;
    line-height: 1.45;
}

.review-auth-panel div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: rgba(248, 250, 252, 0.7);
}

.review-rating-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-bottom: 1px solid rgba(20, 24, 32, 0.08);
    background: transparent;
}

.review-rating-field:last-child {
    border-bottom: 0;
}

.review-rating-field > span {
    color: var(--shadow);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.25;
}

.review-rating-options {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 2px;
}

.review-rating-options label {
    display: grid;
    width: 18px;
    height: 22px;
    place-items: center;
    cursor: pointer;
}

.review-rating-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.rating-star {
    display: inline-grid;
    width: 1em;
    height: 1em;
    place-items: center;
    color: rgba(20, 24, 32, 0.22);
    font-size: 1em;
    line-height: 1;
}

.rating-star::before {
    content: "\2605";
}

.rating-star.filled {
    color: #f6b73c;
}

.rating-choice-star {
    color: rgba(20, 24, 32, 0.2);
    font-size: 1rem;
    line-height: 1;
    transition: color 140ms ease, transform 140ms ease;
}

.rating-choice-star::before {
    content: "\2605";
}

.review-rating-options label:has(input:checked) .rating-choice-star,
.review-rating-options label:has(input:checked) ~ label .rating-choice-star,
.review-rating-options label:hover .rating-choice-star,
.review-rating-options label:hover ~ label .rating-choice-star {
    color: #f6b73c;
}

.review-rating-options input:focus-visible + .rating-choice-star {
    transform: scale(1.18);
    color: var(--tomato);
}

.review-rating-field small {
    color: #c2412d;
    font-size: 0.78rem;
    font-weight: 800;
}

.success-alert {
    border-color: rgba(65, 199, 168, 0.28);
    background: rgba(65, 199, 168, 0.12);
    color: #087861;
}

.review-list-panel {
    display: grid;
    gap: 8px;
}

.review-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 9px;
    padding: 12px 13px;
    border: 1px solid rgba(20, 24, 32, 0.08);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(20, 24, 32, 0.05);
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--tomato), #41c7a8);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: relative;
}

.review-card-top > div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.review-card-top strong {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--onyx);
    font-size: 1.06rem;
}

.review-card-top strong::before {
    content: none;
}

.review-card-top small {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 850;
}

.review-rating-badge {
    flex: 0 0 auto;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--onyx);
    font-size: 0.86rem;
    font-weight: 950;
    box-shadow: none;
}

.review-rating-badge .rating-star {
    color: rgba(20, 24, 32, 0.17);
    font-size: 0.86rem;
}

.review-rating-badge .rating-star.filled {
    color: #f6b73c;
}

.review-mini-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.review-mini-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    padding: 4px 6px;
    border: 1px solid rgba(20, 24, 32, 0.07);
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.92);
}

.review-mini-category > span {
    color: #526174;
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.25;
}

.review-mini-category strong {
    flex: 0 0 auto;
    color: var(--onyx);
    font-weight: 950;
}

.review-score-stars .rating-star {
    font-size: 0.62rem;
}

.review-score-stars .rating-star.empty {
    color: rgba(20, 24, 32, 0.16);
}

.review-card p {
    margin: 0;
    color: #425066;
    font-size: 1rem;
    line-height: 1.42;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 17, 21, 0.84);
    backdrop-filter: blur(18px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1080px, 100%);
    max-height: 82vh;
    border-radius: var(--radius);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(244, 247, 251, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--paper);
    font-size: 1.7rem;
}

.lightbox .lightbox-nav {
    top: 50%;
    right: auto;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    font-size: 2.4rem;
    transform: translateY(-50%);
}

.lightbox .lightbox-nav.prev {
    left: clamp(14px, 4vw, 44px);
}

.lightbox .lightbox-nav.next {
    right: clamp(14px, 4vw, 44px);
}

.lightbox .lightbox-nav[hidden] {
    display: none;
}

.chat-page {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 18px;
    padding: 42px 0;
}

.chat-side {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(150deg, color-mix(in srgb, var(--team-color) 24%, transparent), transparent 60%),
        var(--onyx);
    color: var(--paper);
}

.chat-side h1 {
    color: var(--paper);
    font-size: clamp(1.9rem, 3vw, 3rem);
    overflow-wrap: break-word;
}

.chat-side p {
    color: #d6deea;
    line-height: 1.55;
}

.back-link {
    color: #d6deea;
    font-weight: 900;
}

.chat-team-logo {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.related-showings {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.related-showings h2 {
    color: var(--paper);
    font-size: 1.2rem;
}

.related-showings article {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.related-showings img {
    width: 64px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
}

.related-showings small {
    display: block;
    color: #d6deea;
}

.chat-thread {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 680px;
    padding: 16px;
}

.message-list {
    display: grid;
    align-content: start;
    gap: 10px;
}

.message {
    padding: 14px;
    background: #fbfcfe;
}

.message.pinned {
    border-color: rgba(255, 107, 74, 0.36);
    background: #fff5f2;
}

.message div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.message small {
    color: var(--muted);
}

.message p {
    margin-bottom: 0;
    line-height: 1.55;
}

.chat-composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.chat-composer input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    border-radius: var(--radius-sm);
    outline: 0;
}

.composer-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer {
    margin-top: 36px;
    border-top: 1px solid rgba(20, 24, 32, 0.08);
    background: var(--paper);
}

.footer-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.footer-brand img {
    display: block;
    width: auto;
    height: clamp(40px, 5vw, 56px);
    object-fit: contain;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: 999px;
    background: #f7f9fc;
    color: var(--ink);
    font-weight: 950;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 74, 0.38);
    box-shadow: 0 14px 34px rgba(15, 17, 21, 0.12);
}

.social-link.facebook {
    color: #1877f2;
    font-family: Arial, sans-serif;
    font-size: 1.75rem;
}

.social-link.instagram {
    color: #e4405f;
}

.social-link.instagram svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.social-link.linkedin {
    color: #0a66c2;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

@media (max-width: 1080px) {
    .site-header-inner {
        grid-template-columns: 1fr;
    }

    .nav-links,
    .header-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .home-hero,
    .split-page,
    .chat-page,
    .venue-profile-hero,
    .venue-profile-grid,
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        grid-row: auto;
    }

    .fixture-grid,
    .venue-grid,
    .team-grid,
    .page-grid,
    .venue-showing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-shell {
        grid-template-columns: 1fr;
    }

    .venue-filter-shell {
        grid-template-areas:
            "search"
            "quick"
            "area"
            "cities"
            "count";
    }

    .venue-filter-shell.area-filter-hidden {
        grid-template-areas:
            "search"
            "quick"
            "cities"
            "count";
    }

    .result-count {
        justify-self: start;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 720px) {
    .home-hero,
    .content-band,
    .page-intro,
    .split-page,
    .fixtures-page-layout,
    .chat-page,
    .venue-profile-hero,
    .venue-profile-grid,
    .filter-shell {
        width: min(100% - 24px, var(--max));
    }

    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        width: min(100% - 24px, var(--max));
        padding: 8px 0;
    }

    .mobile-menu-toggle {
        display: flex;
        justify-self: end;
    }

    .footer-inner {
        width: min(100% - 24px, var(--max));
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-logo {
        height: clamp(42px, 14vw, 52px);
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.92);
    }

    .header-actions {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
        padding: 4px 2px 2px;
    }

    .site-header.menu-open .nav-links,
    .site-header.menu-open .header-actions {
        display: flex;
    }

    .auth-actions {
        flex-wrap: wrap;
    }

    .language-menu {
        margin-left: auto;
    }

    .guest-badge {
        display: none;
    }

    h1 {
        font-size: clamp(1.95rem, 8vw, 2.55rem);
        line-height: 1.07;
        max-width: min(100%, 340px);
        word-break: normal;
    }

    .fixture-grid,
    .venue-grid,
    .team-grid,
    .page-grid,
    .venue-showing-grid,
    .detail-list,
    .form-grid,
    .review-insights,
    .review-category-summary,
    .form-grid.three,
    .reservation-confirmation dl {
        grid-template-columns: 1fr;
    }

    .review-overview {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 24, 32, 0.1);
        padding-bottom: 12px;
    }

    .review-summary-row {
        grid-template-columns: minmax(94px, 0.55fr) minmax(80px, 1fr);
    }

    .review-summary-row .rating-stars {
        display: none;
    }

    .venue-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: auto;
    }

    .venue-contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tile,
    .gallery-tile.featured {
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .fixture-row {
        grid-template-columns: 1fr;
    }

    .where-watch-layout,
    .watch-venue-card {
        grid-template-columns: 1fr;
    }

    .where-watch-layout {
        width: min(100% - 24px, var(--max));
    }

    .where-watch-summary {
        position: static;
    }

    .watch-venue-image img {
        min-height: 210px;
        aspect-ratio: 16 / 10;
    }

    .wide-matchup {
        display: grid;
    }

    .fixture-match-actions {
        grid-template-columns: 1fr;
    }

    .wide-matchup .club-line {
        max-width: none;
    }

    .team-slider {
        grid-auto-columns: minmax(230px, 82vw);
    }

    .search-results {
        position: static;
    }

    .hero-media,
    .hero-media video {
        min-height: 250px;
    }

    .sound-bars {
        display: none;
    }

    .showing-card,
    .match-card {
        grid-template-columns: 1fr;
    }

    .showing-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .chat-composer {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.55);
    }
    80% {
        box-shadow: 0 0 0 12px rgba(255, 107, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0);
    }
}

@keyframes sparkSpin {
    0% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(225deg) scale(0.82);
    }
    100% {
        transform: rotate(405deg) scale(1);
    }
}

@keyframes iconSweep {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-2px);
    }
    50% {
        opacity: 1;
        transform: translateX(2px);
    }
}

@keyframes equalize {
    from {
        height: 12px;
    }
    to {
        height: 32px;
    }
}

@keyframes scanLine {
    from {
        transform: translateX(-22%);
    }
    to {
        transform: translateX(22%);
    }
}
