:root {
    --brand: #00a651;
    --brand-dark: #007a3b;
    --brand-deep: #04552c;
    --accent: #ffbd18;
    --accent-dark: #e7a400;
    --night: #06150f;
    --night-2: #0b2118;
    --ink: #132019;
    --muted: #68766e;
    --line: #e2e9e5;
    --surface: #ffffff;
    --surface-soft: #f4f8f5;
    --surface-green: #ecf8f1;
    --danger: #d93b43;
    --shadow-sm: 0 12px 32px rgba(5, 38, 22, .08);
    --shadow-md: 0 24px 65px rgba(4, 35, 20, .13);
    --shadow-lg: 0 34px 90px rgba(2, 19, 11, .24);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Manrope", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--night); background: var(--accent); }
a { color: inherit; text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--brand-dark); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 { color: inherit; }

/* Utility bar and navigation */
.utility-bar { position: relative; z-index: 1040; color: rgba(255,255,255,.78); background: var(--night); font-size: .76rem; }
.utility-bar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-message, .utility-links, .utility-links a, .utility-links span { display: flex; align-items: center; gap: .5rem; }
.utility-links { gap: 1.35rem; }
.utility-links a { color: rgba(255,255,255,.78); }
.utility-links a:hover { color: #fff; }
.live-dot { width: 8px; height: 8px; display: inline-block; flex: 0 0 auto; border-radius: 50%; background: #38e27d; box-shadow: 0 0 0 5px rgba(56,226,125,.13); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 4px rgba(56,226,125,.12); } 50% { box-shadow: 0 0 0 8px rgba(56,226,125,0); } }

.site-header { z-index: 1030; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(5,50,27,.08); backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(4,34,20,.08); }
.site-header .navbar { min-height: 84px; padding-top: .65rem; padding-bottom: .65rem; }
.navbar-brand { padding: 0; margin-right: 2rem; }
.navbar-brand img { width: 175px; height: 54px; object-fit: contain; }
.navbar-nav { gap: .15rem; }
.nav-link { position: relative; padding: .75rem .9rem !important; color: #25332b; font-size: .88rem; font-weight: 800; }
.nav-link::after { content: ""; position: absolute; left: 50%; bottom: .38rem; width: 0; height: 2px; background: var(--brand); transform: translateX(-50%); transition: width .2s ease; }
.nav-link:hover, .nav-link.active { color: var(--brand-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 24px; }
.navbar-toggler { width: 46px; height: 46px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 14px; box-shadow: none !important; }
.menu-line { width: 21px; height: 2px; border-radius: 2px; background: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.currency-control { height: 47px; display: flex; align-items: center; gap: .3rem; padding: 0 .75rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.currency-control i { color: var(--brand); font-size: .82rem; }
.currency-select { width: 58px; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .8rem; font-weight: 800; cursor: pointer; }
.cart-button { min-height: 51px; display: flex; align-items: center; gap: .65rem; padding: .48rem .55rem .48rem .48rem; border-radius: 16px; color: #fff; background: var(--night); }
.cart-button:hover { color: #fff; background: var(--brand-deep); transform: translateY(-1px); }
.cart-button-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--night); background: var(--accent); }
.cart-button-copy { display: flex; flex-direction: column; line-height: 1.1; }
.cart-button-copy small { color: rgba(255,255,255,.58); font-size: .62rem; }
.cart-button-copy strong { min-width: 70px; color: #fff; font-size: .77rem; }
.cart-count { min-width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: #fff; font-size: .7rem; font-weight: 800; }

/* Shared typography and buttons */
.section-space { padding: 96px 0; }
.page-section { padding: 72px 0; }
.section-kicker, .hero-kicker, .footer-kicker { display: inline-flex; align-items: center; gap: .65rem; color: var(--brand); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker { color: #7af0aa; }
.section-heading h2 { max-width: 760px; margin: .55rem 0 .7rem; font-family: "Oswald", sans-serif; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.04; letter-spacing: -.025em; text-transform: uppercase; }
.section-heading p { max-width: 650px; margin: 0; color: var(--muted); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.25rem; }
.text-arrow-link { display: inline-flex; align-items: center; gap: .65rem; flex: 0 0 auto; color: var(--brand-dark); font-size: .84rem; font-weight: 800; }
.text-arrow-link:hover { gap: .85rem; }
.text-arrow-link.light { color: #fff; }
.light-heading h2, .light-heading p { color: #fff; }
.light-heading p { color: rgba(255,255,255,.62); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; border-radius: 14px; padding: .78rem 1.15rem; font-weight: 800; box-shadow: none !important; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 54px; padding: .92rem 1.35rem; }
.btn-brand { color: #fff; background: var(--brand); border-color: var(--brand); }
.btn-brand:hover, .btn-brand:focus { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-accent { color: var(--night); background: var(--accent); border-color: var(--accent); }
.btn-accent:hover, .btn-accent:focus { color: var(--night); background: #ffd15d; border-color: #ffd15d; }
.btn-ghost-light { color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22); }
.btn-ghost-light:hover { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.btn-reset { color: var(--muted); background: transparent; border: 1px solid var(--line); }
.btn-reset:hover { color: var(--ink); background: var(--surface-soft); border-color: #cbd8d0; }
.btn-outline-dark { border-color: #cbd5cf; }

/* Homepage hero */
.sports-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 82% 26%, rgba(0,166,81,.25), transparent 28%), linear-gradient(125deg, #030d08 0%, #071a12 48%, #0b2a1c 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.hero-orbit-one { width: 620px; height: 620px; right: -210px; top: -180px; }
.hero-orbit-two { width: 370px; height: 370px; right: 120px; bottom: -240px; }
.hero-row { min-height: 660px; padding: 76px 0 120px; }
.hero-copy h1 { max-width: 900px; margin: 1rem 0 1.35rem; font-family: "Oswald", sans-serif; font-size: clamp(3.2rem, 6.6vw, 6.8rem); line-height: .93; letter-spacing: -.035em; text-transform: uppercase; }
.hero-copy h1 em { display: block; color: var(--accent); font-style: normal; }
.hero-copy > p { max-width: 690px; margin: 0; color: rgba(255,255,255,.7); font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; margin-top: 2.5rem; }
.hero-proof > div { display: flex; align-items: center; gap: .75rem; }
.proof-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: var(--accent); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.hero-proof div div { display: flex; flex-direction: column; line-height: 1.25; }
.hero-proof strong { font-size: .78rem; }
.hero-proof small { color: rgba(255,255,255,.5); font-size: .68rem; }
.hero-visual { position: relative; min-height: 510px; }
.hero-number { position: absolute; right: -10px; top: -60px; color: rgba(255,255,255,.035); font-family: "Oswald", sans-serif; font-size: 20rem; font-weight: 700; line-height: 1; }
.hero-event-card { position: absolute; inset: 35px 24px 45px 48px; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: rgba(255,255,255,.08); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); transform: rotate(2deg); }
.hero-event-media { position: relative; height: 58%; min-height: 255px; overflow: hidden; background: #10271c; }
.hero-event-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-event-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,18,11,.75), transparent 65%); }
.hero-event-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255,255,255,.25); font-size: 6rem; background: radial-gradient(circle, rgba(0,166,81,.35), transparent 58%); }
.event-live-badge { position: absolute; left: 1rem; top: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .55rem; padding: .48rem .7rem; border-radius: 999px; color: #fff; background: rgba(3,14,8,.74); font-size: .63rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.hero-event-content { height: 42%; display: flex; flex-direction: column; justify-content: center; padding: 1.35rem 1.45rem 1.5rem; }
.hero-event-label { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-event-content h2 { margin: .35rem 0 .55rem; font-family: "Oswald", sans-serif; font-size: 1.65rem; line-height: 1.05; text-transform: uppercase; }
.hero-event-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: rgba(255,255,255,.58); font-size: .72rem; }
.hero-event-content > a { display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start; margin-top: auto; color: #fff; font-size: .76rem; font-weight: 800; }
.floating-score-card, .floating-ticket-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: .7rem; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; color: var(--night); background: #fff; box-shadow: var(--shadow-md); }
.floating-score-card { left: 0; top: 76px; padding: .75rem .9rem; transform: rotate(-4deg); }
.floating-score-card > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--night); background: var(--accent); }
.floating-score-card div { display: flex; flex-direction: column; line-height: 1.2; }
.floating-score-card strong { font-size: .75rem; }
.floating-score-card small { color: var(--muted); font-size: .62rem; }
.floating-ticket-card { right: -20px; bottom: 62px; padding: .78rem .95rem; transform: rotate(4deg); }
.floating-ticket-card > i { color: var(--brand); font-size: 1.35rem; }
.floating-ticket-card span { color: var(--muted); font-size: .65rem; line-height: 1.25; }
.floating-ticket-card strong { color: var(--ink); }

.quick-finder-wrap { position: absolute; left: 12px; right: 12px; bottom: -55px; z-index: 4; }
.quick-finder { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.35fr auto; align-items: stretch; max-width: 1290px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(5,54,29,.08); border-radius: 22px; background: #fff; box-shadow: var(--shadow-md); }
.finder-heading { display: flex; align-items: center; gap: .75rem; padding: 1.1rem 1.2rem; color: #fff; background: var(--brand); }
.finder-heading > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--night); background: var(--accent); }
.finder-heading div { display: flex; flex-direction: column; line-height: 1.25; }
.finder-heading small { color: rgba(255,255,255,.67); font-size: .63rem; }
.finder-heading strong { font-size: .78rem; }
.finder-field { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: .75rem 1rem; border-right: 1px solid var(--line); }
.finder-field label { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.finder-field select, .finder-field input { width: 100%; min-width: 0; padding: .25rem 1.35rem .15rem 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .79rem; font-weight: 800; }
.finder-submit { min-width: 136px; margin: .55rem; }

.trust-ribbon { padding: 88px 0 26px; background: var(--surface); }
.trust-ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.trust-ribbon-grid > div { display: flex; align-items: center; gap: .65rem; padding: 1rem 1.15rem; border-right: 1px solid var(--line); }
.trust-ribbon-grid > div:last-child { border-right: 0; }
.trust-ribbon i { color: var(--brand); }
.trust-ribbon span { display: flex; flex-direction: column; color: var(--muted); font-size: .68rem; line-height: 1.3; }
.trust-ribbon strong { color: var(--ink); font-size: .76rem; }

/* Homepage sections */
.sports-section { background: #fff; }
.sport-showcase { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.sport-tile { position: relative; min-height: 300px; overflow: hidden; border-radius: var(--radius); background: #dbe7df; box-shadow: var(--shadow-sm); }
.sport-tile:nth-child(1), .sport-tile:nth-child(6) { grid-column: span 2; }
.sport-tile img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform .45s ease; }
.sport-tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,16,9,.05) 20%, rgba(2,16,9,.9) 100%); }
.sport-tile-index { position: absolute; left: 1rem; top: .8rem; color: rgba(255,255,255,.62); font-family: "Oswald", sans-serif; font-size: 1.5rem; font-weight: 700; }
.sport-tile-content { position: absolute; left: 1.2rem; right: 4rem; bottom: 1.15rem; display: flex; flex-direction: column; color: #fff; line-height: 1.25; }
.sport-tile-content strong { font-family: "Oswald", sans-serif; font-size: 1.55rem; text-transform: uppercase; }
.sport-tile-content small { color: rgba(255,255,255,.62); }
.sport-tile-arrow { position: absolute; right: 1rem; bottom: 1rem; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: var(--night); background: var(--accent); }
.sport-tile:hover img { transform: scale(1.06); }
.sport-tile:hover .sport-tile-arrow { transform: rotate(8deg); }

.events-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #06150f, #0b261a); }
.events-section::before { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -160px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.featured-event-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, minmax(0,1fr)); gap: 1.25rem; min-height: 590px; }
.featured-event-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 280px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 25px; background: rgba(255,255,255,.045); }
.featured-event-card-large { grid-row: span 2; grid-template-columns: 1fr; grid-template-rows: 1.25fr .75fr; }
.featured-event-media { position: relative; overflow: hidden; min-height: 250px; }
.featured-event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.featured-event-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(2,13,8,.74)); }
.featured-event-number { position: absolute; right: .9rem; top: .5rem; color: rgba(255,255,255,.28); font-family: "Oswald", sans-serif; font-size: 2rem; font-weight: 700; }
.featured-date { position: absolute; left: 1rem; bottom: 1rem; width: 58px; height: 65px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 15px; color: var(--night); background: var(--accent); line-height: 1; }
.featured-date strong { font-family: "Oswald", sans-serif; font-size: 1.55rem; }
.featured-date small { margin-top: .2rem; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.featured-event-copy { display: flex; flex-direction: column; justify-content: center; padding: 1.35rem; }
.featured-event-copy > span { color: #73e5a2; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.featured-event-copy h3 { margin: .45rem 0 .55rem; font-family: "Oswald", sans-serif; font-size: 1.7rem; line-height: 1.08; text-transform: uppercase; }
.featured-event-card-large .featured-event-copy h3 { font-size: 2.15rem; }
.featured-event-copy p { display: -webkit-box; margin: 0; overflow: hidden; color: rgba(255,255,255,.57); font-size: .82rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.event-book-link { display: inline-flex; align-items: center; gap: .55rem; align-self: flex-start; margin-top: auto; padding-top: .9rem; color: #fff; font-size: .75rem; font-weight: 800; }
.event-book-link:hover { color: var(--accent); gap: .8rem; }
.featured-event-card:hover img { transform: scale(1.05); }

.leagues-section { background: var(--surface-soft); }
.league-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 1rem; overflow-x: auto; padding: .3rem .1rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.league-card { scroll-snap-align: start; display: flex; min-height: 225px; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: 20px; background: #fff; text-align: center; box-shadow: 0 10px 28px rgba(4,34,20,.04); }
.league-logo { width: 104px; height: 92px; display: grid; place-items: center; padding: .75rem; border-radius: 18px; background: var(--surface-soft); }
.league-logo img { width: 100%; height: 100%; object-fit: contain; }
.league-card strong { font-size: .86rem; }
.league-card small { color: var(--brand); font-size: .7rem; font-weight: 800; }
.league-card:hover { border-color: rgba(0,166,81,.3); box-shadow: var(--shadow-sm); transform: translateY(-4px); }

.how-it-works-section { background: #fff; }
.experience-panel { display: grid; grid-template-columns: .9fr 1.5fr; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: var(--night); box-shadow: var(--shadow-md); }
.experience-intro { position: relative; padding: 3.2rem; background: linear-gradient(145deg, var(--brand-deep), var(--brand)); }
.experience-intro::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -100px; border: 35px solid rgba(255,255,255,.08); border-radius: 50%; }
.experience-intro .section-kicker { color: var(--accent); }
.experience-intro h2 { margin: .65rem 0 .9rem; font-family: "Oswald", sans-serif; font-size: 2.7rem; line-height: 1.02; text-transform: uppercase; }
.experience-intro p { color: rgba(255,255,255,.65); }
.experience-intro .btn { position: relative; z-index: 1; margin-top: 1rem; }
.experience-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.experience-step { position: relative; padding: 2.5rem 1.6rem; border-left: 1px solid rgba(255,255,255,.09); }
.experience-step > span { position: absolute; right: 1rem; top: .65rem; color: rgba(255,255,255,.06); font-family: "Oswald", sans-serif; font-size: 4.8rem; font-weight: 700; }
.experience-step > i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: var(--night); background: var(--accent); font-size: 1.15rem; }
.experience-step h3 { margin: 1.25rem 0 .55rem; font-family: "Oswald", sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.experience-step p { color: rgba(255,255,255,.5); font-size: .79rem; }

/* Page heroes */
.listing-hero, .ticket-detail-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 88% 15%, rgba(0,166,81,.24), transparent 30%), linear-gradient(125deg, #04110b, #0a2619); }
.listing-hero { padding: 50px 0 72px; }
.listing-hero-lines, .detail-hero-pattern { position: absolute; inset: 0; opacity: .1; background-image: repeating-linear-gradient(125deg, transparent 0 42px, rgba(255,255,255,.15) 42px 43px); }
.hero-breadcrumb { margin-bottom: 2.1rem; }
.hero-breadcrumb .breadcrumb { font-size: .72rem; }
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.38); }
.hero-breadcrumb a { color: rgba(255,255,255,.62); }
.hero-breadcrumb .active { color: #fff; }
.listing-hero h1 { margin: .65rem 0 .65rem; font-family: "Oswald", sans-serif; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .95; text-transform: uppercase; }
.listing-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.62); }
.listing-hero-stat { display: flex; align-items: center; gap: .85rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.listing-hero-stat > i { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; color: var(--night); background: var(--accent); }
.listing-hero-stat div { display: flex; flex-direction: column; }
.listing-hero-stat strong { font-size: .82rem; }
.listing-hero-stat span { color: rgba(255,255,255,.54); font-size: .69rem; }

/* Ticket listing and filters */
.tickets-page { background: var(--surface-soft); }
.ticket-finder-panel { position: relative; z-index: 2; margin-top: -110px; padding: 1.45rem; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.ticket-finder-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.ticket-finder-heading h2 { margin: .2rem 0 0; font-family: "Oswald", sans-serif; font-size: 1.65rem; text-transform: uppercase; }
.finder-shortcuts { display: flex; align-items: center; gap: .45rem; color: var(--muted); font-size: .67rem; }
.finder-shortcuts a { padding: .3rem .58rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-weight: 800; }
.finder-shortcuts a:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.form-label { display: flex; align-items: center; gap: .45rem; margin-bottom: .4rem; color: #3b4941; font-size: .69rem; font-weight: 800; }
.form-label i { color: var(--brand); }
.form-control, .form-select { min-height: 49px; border-color: #dce5e0; border-radius: 13px; color: var(--ink); background-color: #fff; font-size: .82rem; }
.form-control:focus, .form-select:focus { border-color: rgba(0,166,81,.55); box-shadow: 0 0 0 .2rem rgba(0,166,81,.1); }
.filter-search-row { display: grid; grid-template-columns: 1fr auto auto; gap: .75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.filter-search-box { position: relative; display: flex; align-items: center; min-height: 52px; overflow: hidden; border: 1px solid #dce5e0; border-radius: 14px; background: #fff; }
.filter-search-box > i { margin-left: 1rem; color: var(--brand); }
.ticket-search { width: 100%; height: 50px; padding: 0 2.8rem 0 .75rem; border: 0; outline: 0; background: transparent; font-size: .82rem; }
.clear-search { position: absolute; right: .75rem; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); background: var(--surface-soft); }
.filter-submit { min-width: 150px; }
.ticket-results { margin-top: 3rem; }
.results-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.results-label { color: var(--brand); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.results-toolbar h2 { margin: .2rem 0 0; font-family: "Oswald", sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.results-view-note { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .72rem; }
.results-view-note i { color: var(--accent-dark); }
.ticket-list { display: flex; flex-direction: column; gap: 1rem; }
.ticket-list-card { display: grid; grid-template-columns: 235px minmax(0,1fr) 205px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(4,34,20,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ticket-list-card:hover { border-color: rgba(0,166,81,.25); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ticket-list-media { position: relative; min-height: 220px; overflow: hidden; background: #dbe6df; }
.ticket-list-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ticket-list-card:hover .ticket-list-media img { transform: scale(1.05); }
.ticket-list-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,18,11,.5), transparent 65%); }
.ticket-sport-badge { position: absolute; left: .8rem; top: .8rem; padding: .38rem .65rem; border-radius: 999px; color: #fff; background: rgba(3,18,10,.75); font-size: .62rem; font-weight: 800; backdrop-filter: blur(8px); }
.ticket-date-badge { position: absolute; left: .8rem; bottom: .8rem; width: 55px; height: 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 14px; color: var(--night); background: var(--accent); line-height: 1; }
.ticket-date-badge strong { font-family: "Oswald", sans-serif; font-size: 1.45rem; }
.ticket-date-badge small { margin-top: .18rem; font-size: .59rem; font-weight: 800; text-transform: uppercase; }
.ticket-list-content { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 1.3rem 1.45rem; }
.ticket-list-topline { display: flex; flex-wrap: wrap; gap: .5rem 1rem; color: var(--brand-dark); font-size: .66rem; font-weight: 800; }
.ticket-list-topline span { display: inline-flex; align-items: center; gap: .35rem; }
.ticket-list-content h3 { margin: .5rem 0 .55rem; font-family: "Oswald", sans-serif; font-size: 1.55rem; line-height: 1.1; text-transform: uppercase; }
.ticket-time-row { color: var(--muted); font-size: .72rem; }
.ticket-time-row span { display: inline-flex; align-items: center; gap: .4rem; }
.ticket-list-content > p { display: -webkit-box; margin: .65rem 0; overflow: hidden; color: var(--muted); font-size: .76rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ticket-feature-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.ticket-feature-tags span { padding: .28rem .5rem; border-radius: 999px; color: #526158; background: var(--surface-soft); font-size: .6rem; font-weight: 700; }
.ticket-feature-tags i { color: var(--brand); }
.ticket-list-action { display: flex; flex-direction: column; justify-content: center; padding: 1.25rem; border-left: 1px solid var(--line); background: linear-gradient(145deg, #fff, #f7faf8); }
.ticket-list-action small { color: var(--muted); font-size: .64rem; }
.ticket-list-action > strong { margin: .15rem 0 0; color: var(--brand-dark); font-family: "Oswald", sans-serif; font-size: 1.55rem; }
.ticket-list-action > span { margin-bottom: 1rem; color: var(--muted); font-size: .62rem; }
.ticket-list-action .btn { width: 100%; font-size: .72rem; }
.loading-skeleton { min-height: 330px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 22px; color: var(--muted); background: #fff; text-align: center; }
.loading-skeleton .spinner-border { color: var(--brand); }
.booking-confidence { padding: 32px 0; border-top: 1px solid var(--line); background: #fff; }
.confidence-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.confidence-grid > div { display: flex; align-items: center; gap: .8rem; padding: .75rem 1.2rem; border-right: 1px solid var(--line); }
.confidence-grid > div:last-child { border-right: 0; }
.confidence-grid > div > span { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--brand); background: var(--surface-green); }
.confidence-grid div div { display: flex; flex-direction: column; }
.confidence-grid strong { font-size: .78rem; }
.confidence-grid small { color: var(--muted); font-size: .67rem; }

/* Ticket details */
.ticket-detail-hero { padding: 44px 0 0; }
.detail-hero-row { padding: 10px 0 54px; }
.detail-media-card { position: relative; min-height: 470px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: #10251a; box-shadow: var(--shadow-lg); }
.detail-media-card img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.detail-media-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,16,9,.68), transparent 60%); }
.detail-sport-badge { position: absolute; left: 1rem; top: 1rem; display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .7rem; border-radius: 999px; color: #fff; background: rgba(3,17,10,.72); font-size: .64rem; font-weight: 800; backdrop-filter: blur(8px); }
.detail-date-card { position: absolute; left: 1.1rem; bottom: 1.1rem; display: flex; align-items: baseline; gap: .55rem; padding: .7rem .9rem; border-radius: 15px; color: var(--night); background: var(--accent); }
.detail-date-card strong { font-family: "Oswald", sans-serif; font-size: 2rem; line-height: .9; }
.detail-date-card small { font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.detail-hero-copy h1 { margin: .9rem 0 1.25rem; font-family: "Oswald", sans-serif; font-size: clamp(3rem, 5.5vw, 5.4rem); line-height: .94; text-transform: uppercase; }
.detail-meta-grid { display: grid; gap: .75rem; }
.detail-meta-grid > div { display: flex; align-items: center; gap: .7rem; }
.detail-meta-grid > div > span { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: var(--accent); background: rgba(255,255,255,.05); }
.detail-meta-grid div div { display: flex; flex-direction: column; line-height: 1.3; }
.detail-meta-grid small { color: rgba(255,255,255,.46); font-size: .62rem; }
.detail-meta-grid strong { font-size: .78rem; }
.detail-description { max-width: 640px; margin: 1.2rem 0 1.35rem; color: rgba(255,255,255,.62); font-size: .86rem; }
.detail-trust-bar { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-bottom: 0; border-radius: 22px 22px 0 0; background: rgba(255,255,255,.06); }
.detail-trust-bar > div { display: flex; align-items: center; justify-content: center; gap: .75rem; padding: 1rem; border-right: 1px solid rgba(255,255,255,.1); }
.detail-trust-bar > div:last-child { border-right: 0; }
.detail-trust-bar i { color: var(--accent); font-size: 1.1rem; }
.detail-trust-bar span { display: flex; flex-direction: column; line-height: 1.25; }
.detail-trust-bar strong { font-size: .72rem; }
.detail-trust-bar small { color: rgba(255,255,255,.45); font-size: .6rem; }
.ticket-options-section { background: var(--surface-soft); }
.options-heading { align-items: center; }
.currency-note { display: flex; align-items: center; gap: .65rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.currency-note > i { color: var(--brand); }
.currency-note span { color: var(--muted); font-size: .65rem; line-height: 1.2; }
.currency-note strong { color: var(--ink); font-size: .78rem; }
.ticket-option-list { display: flex; flex-direction: column; gap: 1rem; }
.ticket-option-card { display: grid; grid-template-columns: 58px minmax(0,1fr) 285px; align-items: center; gap: 1.2rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 10px 28px rgba(4,34,20,.04); }
.option-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; color: var(--brand); background: var(--surface-green); font-size: 1.2rem; }
.option-category { color: var(--brand); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.option-main h3 { margin: .25rem 0 .45rem; font-family: "Oswald", sans-serif; font-size: 1.45rem; text-transform: uppercase; }
.option-main > p { margin: 0 0 .55rem; color: var(--muted); font-size: .76rem; }
.option-inclusions { display: flex; align-items: flex-start; gap: .5rem; color: #526158; font-size: .7rem; }
.option-inclusions i { margin-top: .18rem; color: var(--brand); }
.option-booking { display: flex; flex-direction: column; align-items: flex-end; padding-left: 1rem; border-left: 1px solid var(--line); }
.option-booking > small { color: var(--muted); font-size: .62rem; }
.option-price { color: var(--brand-dark); font-family: "Oswald", sans-serif; font-size: 1.6rem; }
.option-controls { width: 100%; display: flex; align-items: center; justify-content: flex-end; gap: .65rem; margin-top: .65rem; }
.quantity-control { display: inline-flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.quantity-control input { width: 45px; height: 39px; padding: 0; border: 0; outline: 0; text-align: center; font-weight: 800; -moz-appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button, .quantity-control input::-webkit-outer-spin-button { margin: 0; -webkit-appearance: none; }
.qty-btn { width: 36px; height: 39px; border: 0; color: var(--ink); background: transparent; font-weight: 800; }
.qty-btn:hover { color: var(--brand-dark); background: var(--surface-green); }
.option-controls .btn { min-width: 128px; font-size: .7rem; }
.detail-help-section { padding: 0 0 90px; background: var(--surface-soft); }
.detail-help-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.3rem; padding: 2rem; border-radius: 25px; color: #fff; background: var(--night); }
.detail-help-icon { width: 65px; height: 65px; display: grid; place-items: center; border-radius: 19px; color: var(--night); background: var(--accent); font-size: 1.4rem; }
.detail-help-card h2 { margin: .2rem 0 .25rem; font-family: "Oswald", sans-serif; font-size: 1.8rem; text-transform: uppercase; }
.detail-help-card p { margin: 0; color: rgba(255,255,255,.55); font-size: .76rem; }
.detail-help-actions { display: flex; gap: .6rem; }

/* Cart and checkout */
.checkout-page-hero { padding: 42px 0 54px; border-bottom: 1px solid var(--line); background: #fff; }
.dark-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #a1aea7; }
.dark-breadcrumb a { color: var(--muted); }
.dark-breadcrumb .active { color: var(--ink); }
.checkout-title-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.checkout-title-row h1 { margin: .45rem 0 .45rem; font-family: "Oswald", sans-serif; font-size: clamp(3rem, 5vw, 4.7rem); line-height: .95; text-transform: uppercase; }
.checkout-title-row p { max-width: 600px; margin: 0; color: var(--muted); }
.checkout-progress { display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.progress-step { display: flex; align-items: center; gap: .45rem; color: #99a49e; }
.progress-step > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #d7e0da; border-radius: 50%; background: #fff; font-size: .67rem; font-weight: 800; }
.progress-step strong { font-size: .68rem; }
.progress-step.active { color: var(--ink); }
.progress-step.active > span { color: var(--night); background: var(--accent); border-color: var(--accent); }
.progress-step.complete { color: var(--brand-dark); }
.progress-step.complete > span { color: #fff; background: var(--brand); border-color: var(--brand); }
.checkout-progress > i { color: #c8d2cc; font-size: .55rem; }
.cart-page, .checkout-page { background: var(--surface-soft); }
.cart-section-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.cart-section-header h2 { margin: .2rem 0 0; font-family: "Oswald", sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.cart-list { display: flex; flex-direction: column; gap: .85rem; }
.cart-item { display: grid; grid-template-columns: 105px minmax(0,1fr) auto auto 40px; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 25px rgba(4,34,20,.035); }
.cart-item-media { width: 105px; height: 91px; overflow: hidden; border-radius: 14px; background: var(--surface-soft); }
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-label { color: var(--brand); font-size: .6rem; font-weight: 800; text-transform: uppercase; }
.cart-item-info h3 { margin: .28rem 0 .3rem; font-family: "Oswald", sans-serif; font-size: 1.2rem; line-height: 1.1; text-transform: uppercase; }
.cart-unit-price { color: var(--muted); font-size: .68rem; }
.cart-quantity-wrap, .cart-price-wrap { display: flex; flex-direction: column; gap: .35rem; }
.cart-quantity-wrap label, .cart-price-wrap small { color: var(--muted); font-size: .6rem; font-weight: 700; }
.cart-line-total { min-width: 90px; color: var(--brand-dark); font-family: "Oswald", sans-serif; font-size: 1.18rem; }
.cart-remove { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 12px; color: var(--danger); background: #fff1f2; }
.cart-remove:hover { color: #fff; background: var(--danger); }
.cart-security-note { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; padding: 1rem; border: 1px dashed #bfd6c8; border-radius: 16px; color: var(--brand-dark); background: var(--surface-green); }
.cart-security-note > i { font-size: 1.2rem; }
.cart-security-note div { display: flex; flex-direction: column; }
.cart-security-note strong { font-size: .75rem; }
.cart-security-note span { color: #587064; font-size: .66rem; }
.order-summary, .checkout-card, .confirmation-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.order-summary { top: 118px; padding: 1.35rem; }
.summary-heading { display: flex; align-items: center; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.summary-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--night); background: var(--accent); }
.summary-heading div { display: flex; flex-direction: column; }
.summary-heading small { color: var(--muted); font-size: .62rem; }
.summary-heading h2 { margin: 0; font-family: "Oswald", sans-serif; font-size: 1.45rem; text-transform: uppercase; }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .74rem; }
.summary-row strong { color: var(--ink); }
.summary-row.total { padding: 1rem 0; border-bottom: 0; color: var(--ink); font-size: .86rem; }
.summary-row.total strong { color: var(--brand-dark); font-family: "Oswald", sans-serif; font-size: 1.55rem; }
.summary-note { display: flex; align-items: flex-start; gap: .55rem; margin: .35rem 0 1rem; padding: .8rem; border-radius: 13px; color: #65746b; background: var(--surface-soft); font-size: .65rem; }
.summary-note i { margin-top: .15rem; color: var(--brand); }
.continue-shopping { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: .9rem; color: var(--muted); font-size: .7rem; font-weight: 800; }
.summary-secure { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .63rem; }
.summary-secure i { color: var(--brand); }
.checkout-card { padding: 1.6rem; }
.checkout-card-heading { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.checkout-card-number { color: rgba(0,166,81,.16); font-family: "Oswald", sans-serif; font-size: 3.3rem; font-weight: 700; line-height: 1; }
.checkout-card-heading h2 { margin: .2rem 0 .25rem; font-family: "Oswald", sans-serif; font-size: 1.85rem; text-transform: uppercase; }
.checkout-card-heading p { margin: 0; color: var(--muted); font-size: .73rem; }
.form-section-label { display: flex; align-items: center; gap: .45rem; margin-bottom: .8rem; color: var(--ink); font-size: .73rem; font-weight: 800; }
.form-section-label i { color: var(--brand); }
.input-with-icon { position: relative; }
.input-with-icon > i { position: absolute; left: .9rem; top: 50%; z-index: 2; color: #8f9b94; transform: translateY(-50%); }
.input-with-icon .form-control, .input-with-icon .form-select { padding-left: 2.45rem; }
.select-icon .form-select { background-position: right .9rem center; }
.terms-check { display: flex; align-items: flex-start; gap: .5rem; padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.terms-check .form-check-input { margin-left: 0; margin-top: .2rem; }
.terms-check .form-check-label { display: flex; flex-direction: column; color: var(--ink); font-size: .72rem; }
.terms-check .form-check-label span { color: var(--muted); font-size: .65rem; }
.checkout-assurance { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 1rem; }
.checkout-assurance > div { display: flex; align-items: center; gap: .6rem; padding: .8rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.checkout-assurance i { color: var(--brand); }
.checkout-assurance span { display: flex; flex-direction: column; line-height: 1.25; }
.checkout-assurance strong { font-size: .66rem; }
.checkout-assurance small { color: var(--muted); font-size: .58rem; }
.checkout-items { max-height: 275px; overflow: auto; margin-top: .5rem; }
.checkout-line { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.checkout-line div { display: flex; flex-direction: column; }
.checkout-line div strong { font-size: .71rem; }
.checkout-line span { color: var(--muted); font-size: .62rem; }
.checkout-line > strong { flex: 0 0 auto; color: var(--brand-dark); font-size: .72rem; }
.payment-label { margin-top: 1rem; color: var(--muted); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.payment-method { position: relative; display: flex; align-items: flex-start; gap: .75rem; margin: .55rem 0 .9rem; padding: .9rem; border: 1px solid rgba(0,166,81,.25); border-radius: 15px; background: var(--surface-green); }
.payment-method-icon { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: #fff; background: var(--brand); }
.payment-method div { display: flex; flex-direction: column; padding-right: 1.3rem; }
.payment-method strong { font-size: .72rem; }
.payment-method span { color: var(--muted); font-size: .61rem; }
.payment-check { position: absolute; right: .8rem; top: .8rem; color: var(--brand); }
.secure-checkout { display: flex; align-items: center; justify-content: center; gap: .55rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .62rem; }
.secure-checkout > i { color: var(--brand); }
.secure-checkout span { display: flex; flex-direction: column; line-height: 1.2; }
.secure-checkout strong { color: var(--ink); }

/* Empty, confirmation and general cards */
.empty-state { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem; border: 1px dashed #c7d7ce; border-radius: 24px; background: #fff; text-align: center; }
.compact-empty { padding: 2.5rem 1.5rem; }
.dark-empty { color: #fff; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); }
.empty-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 20px; color: var(--brand); background: var(--surface-green); font-size: 1.6rem; }
.empty-state h2, .empty-state h3, .empty-state h1 { margin: .45rem 0 .5rem; font-family: "Oswald", sans-serif; font-size: 2rem; text-transform: uppercase; }
.empty-state p { max-width: 540px; margin: 0 auto 1.2rem; color: var(--muted); }
.dark-empty p { color: rgba(255,255,255,.55); }
.ticket-empty-state { margin-top: 1rem; }
.cart-empty-state { max-width: 820px; }
.confirmation-card { max-width: 760px; padding: 2.25rem; text-align: center; }
.confirmation-card h1 { margin: .55rem 0 .6rem; font-family: "Oswald", sans-serif; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: .98; text-transform: uppercase; }
.confirmation-card > p { color: var(--muted); }
.confirmation-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 1.1rem; border-radius: 23px; color: #fff; background: var(--brand); font-size: 1.8rem; transform: rotate(-5deg); }
.confirmation-icon.warning { color: var(--night); background: var(--accent); }
.confirmation-icon.danger { color: #fff; background: var(--danger); }
.receipt-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .8rem; margin-top: 1.4rem; text-align: left; }
.receipt-grid > div { display: flex; flex-direction: column; padding: .9rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.receipt-grid span { color: var(--muted); font-size: .62rem; }
.receipt-grid strong { word-break: break-word; font-size: .78rem; }

/* Promo */
.promo-modal { border-radius: 25px; color: #fff; background: var(--night); box-shadow: var(--shadow-lg); }
.promo-modal-media { min-height: 410px; }
.promo-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-modal-copy { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
.promo-modal-copy .section-kicker { color: var(--accent); }
.promo-modal-copy h2 { margin: .55rem 0 .8rem; font-family: "Oswald", sans-serif; font-size: 2.4rem; line-height: 1.02; text-transform: uppercase; }
.promo-modal-copy p { color: rgba(255,255,255,.6); }

/* Footer */
.site-footer { position: relative; overflow: hidden; color: rgba(255,255,255,.66); background: #04110b; }
.footer-glow { position: absolute; width: 500px; height: 500px; right: -220px; top: -220px; border-radius: 50%; background: rgba(0,166,81,.12); filter: blur(10px); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-kicker { color: var(--accent); }
.footer-top h2 { margin: .35rem 0 0; color: #fff; font-family: "Oswald", sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; }
.footer-main { padding: 3.5rem 0; }
.footer-logo { width: 180px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-copy { max-width: 440px; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-trust { display: flex; flex-wrap: wrap; gap: .55rem; }
.footer-trust span { padding: .38rem .58rem; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .61rem; }
.site-footer h6 { margin-bottom: 1rem; color: #fff; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.site-footer > .container a:not(.btn):not(.footer-contact) { display: block; margin-bottom: .55rem; color: rgba(255,255,255,.56); font-size: .73rem; }
.site-footer > .container a:not(.btn):not(.footer-contact):hover { color: var(--accent); }
.footer-contact { display: flex; align-items: center; gap: .7rem; margin-bottom: .65rem; color: #fff; }
.footer-contact > span { width: 41px; height: 41px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: var(--accent); background: rgba(255,255,255,.06); }
.footer-contact div { display: flex; flex-direction: column; }
.footer-contact small { color: rgba(255,255,255,.43); font-size: .59rem; }
.footer-contact strong { font-size: .72rem; word-break: break-word; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.4); font-size: .64rem; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 1020; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 14px; color: var(--night); background: var(--accent); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.toast { color: #fff; border-radius: 14px; }

/* Responsive */
@media (max-width: 1199.98px) {
    .navbar-brand { margin-right: 1rem; }
    .nav-link { padding-left: .68rem !important; padding-right: .68rem !important; }
    .quick-finder { grid-template-columns: 1.1fr 1fr 1fr 1.2fr auto; }
    .finder-heading { padding-left: .85rem; padding-right: .85rem; }
    .finder-heading > span { display: none; }
    .sport-tile:nth-child(1), .sport-tile:nth-child(6) { grid-column: span 1; }
    .ticket-list-card { grid-template-columns: 210px minmax(0,1fr) 185px; }
    .ticket-option-card { grid-template-columns: 52px minmax(0,1fr) 265px; }
}

@media (max-width: 991.98px) {
    .utility-links span { display: none; }
    .site-header .navbar { min-height: 74px; }
    .navbar-brand img { width: 155px; height: 48px; }
    .navbar-collapse { margin-top: .75rem; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
    .navbar-nav { align-items: stretch !important; }
    .nav-link { padding: .7rem .8rem !important; border-radius: 10px; }
    .nav-link::after { display: none; }
    .nav-link.active { background: var(--surface-green); }
    .header-actions { margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line); }
    .cart-button { margin-left: auto; }
    .hero-row { min-height: auto; padding: 76px 0 120px; }
    .hero-copy { max-width: 780px; }
    .quick-finder { grid-template-columns: repeat(2, 1fr); overflow: visible; }
    .finder-heading { grid-column: 1 / -1; border-radius: 20px 20px 0 0; }
    .finder-field { min-height: 72px; }
    .finder-submit { grid-column: 1 / -1; margin: .65rem; }
    .trust-ribbon { padding-top: 180px; }
    .trust-ribbon-grid { grid-template-columns: repeat(2,1fr); }
    .trust-ribbon-grid > div:nth-child(2) { border-right: 0; }
    .trust-ribbon-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .sport-showcase { grid-template-columns: repeat(2,1fr); }
    .featured-event-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
    .featured-event-card-large { grid-row: auto; }
    .featured-event-card { min-height: 300px; }
    .featured-event-card-large { grid-template-columns: .9fr 1.1fr; grid-template-rows: 1fr; }
    .experience-panel { grid-template-columns: 1fr; }
    .experience-steps { min-height: 280px; }
    .ticket-finder-panel { margin-top: -92px; }
    .ticket-list-card { grid-template-columns: 190px minmax(0,1fr); }
    .ticket-list-action { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 0; border-left: 0; border-top: 1px solid var(--line); }
    .ticket-list-action > span { display: none; }
    .ticket-list-action .btn { width: auto; }
    .confidence-grid, .detail-trust-bar { grid-template-columns: 1fr; }
    .confidence-grid > div, .detail-trust-bar > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .detail-trust-bar > div { justify-content: flex-start; border-color: rgba(255,255,255,.1); }
    .confidence-grid > div:last-child, .detail-trust-bar > div:last-child { border-bottom: 0; }
    .ticket-option-card { grid-template-columns: 52px 1fr; }
    .option-booking { grid-column: 2; align-items: flex-start; padding: .9rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
    .option-controls { justify-content: flex-start; }
    .detail-help-card { grid-template-columns: auto 1fr; }
    .detail-help-actions { grid-column: 2; }
    .checkout-title-row { align-items: flex-start; flex-direction: column; }
    .order-summary { position: static !important; }
    .cart-item { grid-template-columns: 95px minmax(0,1fr) auto; }
    .cart-quantity-wrap { grid-column: 2; }
    .cart-price-wrap { grid-column: 3; grid-row: 2; }
    .cart-remove { grid-column: 3; grid-row: 1; }
    .checkout-assurance { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .section-space { padding: 70px 0; }
    .page-section { padding: 55px 0; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
    .utility-message { margin: 0 auto; text-align: center; }
    .utility-links { display: none; }
    .hero-copy h1 { font-size: 3.6rem; }
    .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
    .quick-finder-wrap { left: 16px; right: 16px; }
    .trust-ribbon-grid { grid-template-columns: 1fr; }
    .trust-ribbon-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-ribbon-grid > div:nth-child(3) { border-bottom: 1px solid var(--line); }
    .trust-ribbon-grid > div:last-child { border-bottom: 0; }
    .sport-showcase { grid-template-columns: 1fr 1fr; }
    .sport-tile, .sport-tile img { min-height: 245px; }
    .featured-event-card, .featured-event-card-large { grid-template-columns: 1fr; grid-template-rows: 230px auto; }
    .experience-steps { grid-template-columns: 1fr; }
    .experience-step { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
    .ticket-finder-heading { align-items: flex-start; flex-direction: column; }
    .finder-shortcuts { flex-wrap: wrap; }
    .filter-search-row { grid-template-columns: 1fr 1fr; }
    .filter-search-box { grid-column: 1 / -1; }
    .btn-reset span { display: inline; }
    .ticket-list-card { grid-template-columns: 155px minmax(0,1fr); }
    .ticket-list-content { padding: 1rem; }
    .ticket-list-content h3 { font-size: 1.25rem; }
    .ticket-list-action { grid-column: 1 / -1; }
    .detail-media-card, .detail-media-card img { min-height: 380px; }
    .detail-hero-copy h1 { font-size: 3.4rem; }
    .detail-help-card { grid-template-columns: 1fr; text-align: center; }
    .detail-help-icon { margin: 0 auto; }
    .detail-help-actions { grid-column: 1; justify-content: center; }
    .checkout-progress { width: 100%; justify-content: center; }
    .cart-section-header { align-items: flex-start; flex-direction: column; }
    .footer-top { align-items: flex-start; flex-direction: column; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 575.98px) {
    .container { --bs-gutter-x: 1.4rem; }
    .navbar-brand img { width: 142px; }
    .currency-control { height: 43px; }
    .cart-button { min-height: 46px; }
    .cart-button-copy { display: none; }
    .hero-row { padding-top: 58px; }
    .hero-copy h1 { font-size: 3.05rem; }
    .hero-copy > p { font-size: .92rem; }
    .hero-actions { display: grid; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; margin-top: 1.7rem; }
    .quick-finder { grid-template-columns: 1fr; }
    .finder-heading, .finder-field, .finder-submit { grid-column: 1; }
    .finder-heading { border-radius: 18px 18px 0 0; }
    .finder-field { min-height: 64px; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-ribbon { padding-top: 330px; }
    .section-heading h2 { font-size: 2.45rem; }
    .sport-showcase { grid-template-columns: 1fr; }
    .sport-tile, .sport-tile img { min-height: 260px; }
    .experience-intro { padding: 2rem 1.35rem; }
    .experience-intro h2 { font-size: 2.25rem; }
    .listing-hero { padding-bottom: 62px; }
    .listing-hero h1 { font-size: 3.2rem; }
    .ticket-finder-panel { margin-top: -80px; padding: 1rem; }
    .finder-shortcuts > span { width: 100%; }
    .filter-search-row { grid-template-columns: 1fr; }
    .filter-submit, .btn-reset { width: 100%; }
    .results-toolbar { align-items: flex-start; flex-direction: column; }
    .ticket-list-card { grid-template-columns: 1fr; }
    .ticket-list-media { min-height: 220px; }
    .ticket-list-action { grid-column: 1; }
    .ticket-feature-tags { display: none; }
    .detail-media-card, .detail-media-card img { min-height: 320px; }
    .detail-hero-copy h1 { font-size: 2.9rem; }
    .detail-trust-bar { border-radius: 18px 18px 0 0; }
    .ticket-option-card { grid-template-columns: 1fr; }
    .option-icon { display: none; }
    .option-booking { grid-column: 1; }
    .option-controls { align-items: stretch; flex-direction: column; }
    .option-controls .quantity-control, .option-controls .btn { width: 100%; }
    .option-controls .quantity-control { justify-content: space-between; }
    .option-controls .quantity-control input { flex: 1; }
    .detail-help-actions { flex-direction: column; }
    .checkout-title-row h1 { font-size: 3.1rem; }
    .checkout-progress { gap: .35rem; padding: .65rem; }
    .progress-step strong { display: none; }
    .cart-item { grid-template-columns: 80px 1fr 36px; gap: .75rem; }
    .cart-item-media { width: 80px; height: 74px; }
    .cart-quantity-wrap { grid-column: 1 / 3; grid-row: 2; }
    .cart-price-wrap { grid-column: 3; grid-row: 2; align-self: end; text-align: right; }
    .cart-line-total { min-width: 0; }
    .checkout-card { padding: 1.15rem; }
    .checkout-card-number { display: none; }
    .checkout-card-heading { gap: 0; }
    .receipt-grid { grid-template-columns: 1fr; }
    .promo-modal-media { min-height: 220px; }
    .promo-modal-copy { padding: 1.5rem; }
    .promo-modal-copy h2 { font-size: 2rem; }
}
