/* ═══════════════════════════════════════════════════════
   Arena2026Digital.com — Master Stylesheet v5
   MOBILE-FIRST. Every layout starts at 1 column, 
   expands at explicit breakpoints only.
   No fixed pixel widths on layout containers.
═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
  --ink:   #080f08;
  --deep:  #0e1a0e;
  --field: #162416;
  --turf:  #1e321e;
  --gold:  #c8952a;
  --pale:  #e2b55a;
  --muted: #8a6218;
  --bone:  #f0ead8;
  --stone: #b8b09a;
  --slate: #6a6458;
  --red:   #a82820;
  --amber: #c06818;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono:  'IBM Plex Mono', 'Courier New', monospace;
  /* Fluid edge padding — 1rem on phone → 4.5rem on wide screen */
  --edge:  clamp(1rem, 5vw, 4.5rem);
  --nav-h: 64px;
  --swift: cubic-bezier(.22,1,.36,1);
}

/* ── Hard reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;          /* clip not hidden — avoids scroll-anchoring issues */
}
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;          /* minimum viable width */
}
img, video, iframe, canvas, svg { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button, input, select, textarea { font-family: var(--sans); }
button { border: none; cursor: pointer; background: none; }

/* ── Text selection ─────────────────────────────────── */
::selection     { background: rgba(200,149,42,.28); color: var(--bone); }
::-moz-selection{ background: rgba(200,149,42,.28); color: var(--bone); }

/* ── Grain overlay ──────────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") center / 220px;
}

/* ── Custom cursor — mouse only ─────────────────────── */
#cur { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; display: none; }
.cdot { position: absolute; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); }
.cring { position: absolute; width: 32px; height: 32px; border: 1px solid rgba(200,149,42,.45); border-radius: 50%; transform: translate(-50%,-50%); transition: width .15s, height .15s; }
.cring.hov { width: 52px; height: 52px; border-color: var(--gold); }
@media (pointer: fine) {
  body, button, a, .match-card, .package-card, .btn-3d { cursor: none; }
}
@media (pointer: coarse), (max-width: 1024px) {
  /* Hide custom cursor on touch and tablet devices */
  #cur { display: none !important; opacity: 0 !important; pointer-events: none !important; }
}
@media (hover: none) {
  /* No-hover devices (touch) — definitely hide cursor */
  #cur { display: none !important; }
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#main-nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--edge); gap: clamp(.5rem, 2vw, 1.5rem);
  transition: background .4s;
}
#main-nav.sc {
  background: rgba(8,15,8,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,149,42,.1);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: clamp(.95rem, 2.5vw, 1.15rem);
  letter-spacing: -.02em; flex-shrink: 0;
}
.nav-ball { display: inline-block; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nav-acc { color: var(--gold); }

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;          /* hidden by default (mobile-first) */
  gap: 0; margin-left: auto;
  list-style: none; padding: 0; /* reset ul */
}
.nav-links li { display: inline-flex; }
.nav-links a {
  padding: 6px 10px; font-size: .82rem;
  color: rgba(240,234,216,.45); border-radius: 4px; transition: .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.admin-nav-link { color: rgba(200,149,42,.35) !important; font-size: .76rem !important; }

.nav-cta-btn {
  display: none;           /* hidden on mobile */
  background: var(--gold); color: var(--ink);
  padding: 8px 16px; border-radius: 3px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--pale); }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: auto; flex-shrink: 0;
}
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--bone); transition: .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile menu dropdown */
.nav-links.mobile-open {
  display: flex !important; flex-direction: column !important;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,15,8,.99); backdrop-filter: blur(16px);
  padding: 1rem var(--edge) 2rem;
  border-bottom: 1px solid rgba(200,149,42,.1);
  gap: 0; z-index: 998;
  width: 100%;
}
.nav-links.mobile-open li {
  display: block !important; width: 100%;
}
.nav-links.mobile-open a {
  display: block; padding: .9rem .5rem; font-size: 1rem;
  color: var(--bone); border-radius: 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-links.mobile-open .nav-cta-btn {
  display: block !important; text-align: center; margin-top: .75rem;
  border-radius: 3px; width: 100%;
}

/* Show links and CTA on wider screens */
@media (min-width: 768px) {
  .nav-links { display: flex; flex-direction: row; align-items: center; }
  .nav-links li { display: inline-flex; }
  .nav-cta-btn { display: block; }
  .hamburger { display: none; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn, .btn-p, .btn-g, .btn-outline, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 3px;
  font-size: .82rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; transition: .22s var(--swift);
  border: none; white-space: nowrap;
}
.btn-p, .btn-gold { background: var(--gold); color: var(--ink); }
.btn-p:hover, .btn-gold:hover { background: var(--pale); }
.btn-g, .btn-outline { background: transparent; color: var(--bone); border: 1px solid rgba(240,234,216,.2); }
.btn-g:hover, .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 7px 14px; font-size: .74rem; }
.btn-lg { padding: 14px 30px; font-size: .88rem; }
.btn-full { width: 100%; }
.btn-3d {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid rgba(200,149,42,.28);
  color: var(--gold); padding: 6px 11px; border-radius: 2px;
  font-size: .66rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none; transition: .2s; white-space: nowrap;
}
.btn-3d:hover { background: rgba(200,149,42,.1); }

/* ═══════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
═══════════════════════════════════════════════════════ */
.section {
  padding: clamp(2.5rem, 7vw, 6rem) var(--edge);
  max-width: 1360px; margin: 0 auto; width: 100%;
}
.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.s-tag {
  display: inline-block; font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .875rem;
}
.s-h2, .section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.02em; margin-bottom: .6rem; font-weight: 400;
}
.s-sub, .section-sub {
  font-size: .9rem; color: var(--stone); line-height: 1.75; max-width: 480px; font-weight: 400;
}
.text-gold { color: var(--gold); }
.text-gray  { color: var(--stone); }

/* ── Reveal animations ──────────────────────────────── */
.reveal, .rv {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--swift), transform .7s var(--swift);
}
.reveal.visible, .rv.vis { opacity: 1; transform: none; }
.reveal-delay-1, .d1 { transition-delay: .08s; }
.reveal-delay-2, .d2 { transition-delay: .16s; }
.reveal-delay-3, .d3 { transition-delay: .24s; }
.reveal-delay-4, .d4 { transition-delay: .32s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

/* ═══════════════════════════════════════════════════════
   HERO — full-height video background
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 90svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  /* Belt-and-braces: never let children escape */
  contain: layout;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0; background: #080f08;
}
/* YouTube iframe scaled to cover like object-fit:cover */
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 at viewport width */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 at viewport height */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Heavier overlay on mobile so text is always readable over video */
  background:
    linear-gradient(to right, rgba(8,15,8,.98) 0%, rgba(8,15,8,.92) 100%),
    linear-gradient(to top, rgba(8,15,8,.9) 0%, transparent 50%);
}
@media (min-width: 768px) {
  .hero-overlay {
    background:
      linear-gradient(to right, rgba(8,15,8,.96) 0%, rgba(8,15,8,.7) 55%, rgba(8,15,8,.3) 100%),
      linear-gradient(to top, rgba(8,15,8,.88) 0%, transparent 45%);
  }
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  /* Safe padding that never exceeds viewport */
  padding: clamp(2rem, 6vw, 4rem) var(--edge) clamp(2.5rem, 6vw, 4rem);
  /* Hard ceiling on width so content stays left-aligned and never clips right */
  max-width: 100%;
  box-sizing: border-box;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .65rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp .7s var(--swift) both;
}
.eyebrow-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: blink 1.8s infinite; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 7vw, 6.5rem);
  line-height: .96; letter-spacing: -.025em;
  margin-bottom: 1.1rem; font-weight: 400;
  animation: fadeUp .7s .07s var(--swift) both;
  /* Never overflow the viewport */
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-headline .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  color: rgba(240,234,216,.58); line-height: 1.8;
  max-width: 44ch; margin-bottom: 2rem;
  animation: fadeUp .7s .14s var(--swift) both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: .6rem;
  animation: fadeUp .7s .2s var(--swift) both;
}
.hero-countdown {
  display: flex; gap: 4px; margin-top: 2.5rem;
  animation: fadeUp .7s .27s var(--swift) both;
}
.countdown-block {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 3px; padding: 10px 14px;
  text-align: center; min-width: 64px;
}
.countdown-num {
  font-family: var(--mono); font-size: 1.7rem;
  color: var(--gold); line-height: 1; display: block;
}
.countdown-unit {
  font-size: .52rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate); margin-top: 2px; display: block;
}
.cd-sep { display: flex; align-items: center; padding-bottom: 8px; color: rgba(200,149,42,.2); font-size: 1.2rem; }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(240,234,216,.2); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(200,149,42,.4), transparent); animation: scrollp 2.2s ease-in-out infinite; }
@keyframes scrollp { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ═══════════════════════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════════════════════ */
.story-section { padding: clamp(3rem,7vw,7rem) var(--edge); background: linear-gradient(180deg,var(--ink),var(--deep)); }
.story-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.story-eyebrow { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.story-h2 { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 1.1rem; font-weight: 400; }
.story-h2 em { color: rgba(240,234,216,.3); font-style: italic; }
.story-p { font-size: .9rem; color: var(--stone); line-height: 1.85; margin-bottom: .75rem; }
.story-p strong { color: var(--bone); font-weight: 500; }
.story-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .82rem; font-weight: 500; border-bottom: 1px solid rgba(200,149,42,.3); padding-bottom: 1px; transition: .2s; margin-top: .3rem; }
.story-link:hover { gap: 10px; }
.story-cards { display: flex; flex-direction: column; gap: 1px; }
.story-card { background: var(--deep); border: 1px solid rgba(255,255,255,.06); padding: 1.25rem 1.4rem; display: flex; align-items: flex-start; gap: .9rem; transition: .25s; }
.story-card:first-child { border-radius: 4px 4px 0 0; }
.story-card:last-child  { border-radius: 0 0 4px 4px; }
.story-card:hover { background: var(--field); border-color: rgba(200,149,42,.2); }
.story-card-icon { width: 34px; height: 34px; border: 1px solid rgba(200,149,42,.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; background: rgba(200,149,42,.05); }
.story-card h4 { font-size: .85rem; font-weight: 600; margin-bottom: 2px; }
.story-card p  { font-size: .76rem; color: var(--stone); line-height: 1.65; }
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════ */
.stats-3d-section { padding: clamp(2rem,4vw,3.5rem) 0; background: var(--deep); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); position: relative; }
#stats-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .2; }
.stats-grid { position: relative; z-index: 1; max-width: 1360px; margin: 0 auto; padding: 0 var(--edge); display: grid; grid-template-columns: repeat(2,1fr); }
.stat-item { text-align: center; padding: 1.5rem .75rem; border-right: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.stat-num { font-family: var(--mono); font-size: 2rem; font-weight: 400; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: .58rem; color: var(--slate); letter-spacing: .12em; text-transform: uppercase; margin-top: .35rem; display: block; }
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(6,1fr); } .stat-item { border-bottom: none; } }

/* ═══════════════════════════════════════════════════════
   MATCH CARDS
═══════════════════════════════════════════════════════ */
.match-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem; margin-top: 2rem;
}
.match-card { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; transition: .25s; position: relative; }
.match-card:hover { border-color: rgba(200,149,42,.2); background: var(--field); }
.match-card.hot::after { content: 'HOT'; position: absolute; top: .875rem; right: .875rem; font-size: .56rem; font-weight: 700; letter-spacing: .14em; background: var(--red); color: #fff; padding: 2px 6px; border-radius: 2px; }
.match-card-header { padding: 1.1rem 1.25rem .875rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.match-stage-bar { font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .65rem; }
.match-teams { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.team-flag   { font-size: 1.4rem; line-height: 1; }
.team-name   { font-family: var(--serif); font-size: 1.05rem; }
.match-vs    { font-size: .6rem; font-weight: 700; letter-spacing: .1em; color: var(--slate); }
.match-card-body  { padding: .75rem 1.25rem; }
.match-info-row   { font-size: .72rem; color: var(--stone); margin-bottom: .25rem; }
.match-times { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: 2px; padding: .5rem .8rem; margin-top: .6rem; display: flex; gap: .875rem; flex-wrap: wrap; }
.match-time-item { font-size: .68rem; color: var(--slate); }
.match-time-item strong { display: block; color: var(--bone); font-size: .76rem; }
.match-card-footer { padding: .75rem 1.25rem; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.slots-indicator { display: flex; flex-direction: column; gap: 3px; }
.slots-bar { width: 64px; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; overflow: hidden; }
.slots-fill { height: 100%; border-radius: 1px; }
.slots-fill.available { background: var(--gold); }
.slots-fill.limited   { background: var(--amber); }
.slots-fill.urgent    { background: var(--red); }
.slots-text { font-size: .62rem; color: var(--slate); }
.slots-text.urgent { color: var(--gold); }
.match-price { font-size: .8rem; color: var(--slate); }
.match-price strong { font-family: var(--mono); font-size: .95rem; color: var(--gold); }
.btn-book-match {
  background: transparent; color: var(--gold); border: 1px solid rgba(200,149,42,.3);
  border-radius: 2px; padding: 6px 12px; font-size: .68rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; transition: .2s;
}
.btn-book-match:hover { background: var(--gold); color: var(--ink); }
.sold-out-overlay { position: absolute; inset: 0; z-index: 10; display: flex; align-items: center; justify-content: center; background: rgba(8,15,8,.65); backdrop-filter: blur(2px); font-family: var(--mono); font-size: 1.1rem; letter-spacing: .14em; color: rgba(240,234,216,.3); text-transform: uppercase; pointer-events: none; }
.match-card.sold-out { opacity: .55; pointer-events: none; }
.match-card.sold-out:hover { transform: none; }
@media (min-width: 640px)  { .match-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .match-cards-grid { grid-template-columns: repeat(3,1fr); } }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.hiw-grid { display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: 2.5rem; }
.hiw-step { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 2rem 1.5rem; transition: .2s; }
.hiw-step:hover { background: var(--field); }
.step-number-bg { font-family: var(--mono); font-size: 4rem; font-weight: 400; color: rgba(200,149,42,.07); line-height: 1; margin-bottom: -.75rem; }
.step-icon { font-size: 1.3rem; margin-bottom: .8rem; display: block; }
.hiw-step h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; margin-bottom: .5rem; }
.hiw-step p  { font-size: .8rem; color: var(--stone); line-height: 1.72; }
@media (min-width: 600px)  { .hiw-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .hiw-grid { grid-template-columns: repeat(4,1fr); } }

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; max-width: 960px; margin: 2rem auto 0; }
.pricing-card { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 2rem 1.5rem; position: relative; transition: .25s; }
.pricing-card:hover    { border-color: rgba(200,149,42,.2); background: var(--field); }
.pricing-card.featured { background: var(--field); border-color: rgba(200,149,42,.18); }
.pricing-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 3px 12px; border-radius: 0 0 3px 3px; white-space: nowrap; }
.pricing-tier-name { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .65rem; }
.pricing-price { font-family: var(--mono); font-size: 3rem; line-height: 1; letter-spacing: -.02em; margin-bottom: .25rem; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .55rem; font-weight: 400; }
.pricing-unit { font-size: .72rem; color: var(--stone); margin-bottom: 1.25rem; }
.pricing-divider { height: 1px; background: rgba(255,255,255,.06); margin: .875rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: .5rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: rgba(240,234,216,.68); }
.feat-icon { width: 15px; height: 15px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .54rem; flex-shrink: 0; margin-top: 2px; }
.feat-icon.yes { background: rgba(200,149,42,.15); color: var(--gold); }
.feat-icon.no  { background: rgba(255,255,255,.04); color: var(--slate); }
.pricing-note { background: rgba(200,149,42,.05); border: 1px solid rgba(200,149,42,.15); border-radius: 4px; padding: 1rem 1.25rem; margin: 1.5rem auto 0; display: flex; gap: .875rem; align-items: flex-start; font-size: .8rem; color: var(--stone); line-height: 1.65; }
.pricing-note strong { color: var(--gold); }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 1.75rem 1.5rem; position: relative; transition: .2s; }
.testimonial-card:hover { background: var(--field); }
.testimonial-card::before { content: '\201C'; font-family: var(--serif); font-size: 4.5rem; color: rgba(200,149,42,.07); position: absolute; top: .4rem; left: .9rem; line-height: 1; pointer-events: none; }
.stars { color: var(--gold); margin-bottom: .65rem; font-size: .72rem; letter-spacing: 2px; }
.testimonial-text { font-size: .86rem; color: var(--stone); line-height: 1.8; margin-bottom: 1.1rem; }
.testimonial-author { display: flex; align-items: center; gap: .65rem; }
.author-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--field),var(--muted)); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--gold); flex-shrink: 0; border: 1px solid rgba(200,149,42,.2); }
.author-name { font-weight: 600; font-size: .82rem; }
.author-biz  { font-size: .68rem; color: var(--slate); }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

/* ═══════════════════════════════════════════════════════
   SPONSORS
═══════════════════════════════════════════════════════ */
.sponsors-section { padding: clamp(2rem,4vw,3.5rem) var(--edge); border-top: 1px solid rgba(255,255,255,.05); background: var(--deep); }
.sponsors-label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--slate); text-align: center; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .875rem; }
.sponsors-label::before,.sponsors-label::after { content:''; flex:1; height:1px; background:rgba(255,255,255,.06); }
.sponsors-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.sponsor-logo-item {
  display: flex; align-items: center; justify-content: center;
  /* Much smaller padding on mobile */
  padding: .6rem .75rem;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: .2s; color: rgba(240,234,216,.26);
}
.sponsor-logo-item:hover { background: rgba(255,255,255,.02); color: rgba(240,234,216,.52); }
.sponsor-logo-item svg {
  height: 20px; width: auto; display: block; max-width: 80px;
}
@media (min-width: 600px) {
  .sponsor-logo-item { padding: .875rem 1.1rem; }
  .sponsor-logo-item svg { height: 26px; max-width: 110px; }
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar { background: rgba(255,255,255,.014); border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); padding: 1.75rem var(--edge); }
.trust-inner { max-width: 1360px; margin: 0 auto; display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }
.trust-chip { display: flex; align-items: center; gap: .65rem; background: rgba(255,255,255,.022); border: 1px solid rgba(255,255,255,.06); border-radius: 3px; padding: .75rem .9rem; transition: .2s; }
.trust-chip:hover { border-color: rgba(200,149,42,.16); }
.trust-chip .ti   { font-size: .9rem; }
.trust-chip strong { display: block; font-size: .78rem; font-weight: 600; }
.trust-chip span   { font-size: .66rem; color: var(--slate); }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section { padding: clamp(3.5rem,8vw,6rem) var(--edge); text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.04); }
.cta-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 80% at 50% 50%,rgba(200,149,42,.04),transparent); }
.cta-section h2 { font-family: var(--serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; margin-bottom: .65rem; position: relative; }
.cta-section p  { color: var(--stone); font-size: .9rem; max-width: 44ch; margin: 0 auto 1.75rem; position: relative; }

/* ═══════════════════════════════════════════════════════
   TICKETS SECTION (homepage block)
═══════════════════════════════════════════════════════ */
.tickets-section { padding: clamp(3rem,7vw,6rem) var(--edge); background: linear-gradient(135deg,var(--field),var(--deep)); border-top: 1px solid rgba(255,255,255,.05); overflow: hidden; width: 100%; box-sizing: border-box; }
.tickets-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; max-width: 900px; margin: 2rem auto 0; }
.ticket-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 1.5rem 1rem; text-align: center; transition: .25s; width: 100%; box-sizing: border-box; overflow: hidden; }
.ticket-card:hover { border-color: rgba(200,149,42,.25); background: rgba(200,149,42,.04); }
.ticket-card-icon { font-size: 2.2rem; margin-bottom: .875rem; display: block; }
.ticket-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: .5rem; }
.ticket-card p  { font-size: .82rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.1rem; }
.ticket-note { background: rgba(200,149,42,.05); border: 1px solid rgba(200,149,42,.15); border-radius: 3px; padding: .875rem 1.1rem; font-size: .78rem; color: var(--stone); line-height: 1.7; max-width: 640px; margin: 1.75rem auto 0; text-align: center; }
@media (min-width: 768px) { .tickets-grid { grid-template-columns: repeat(2,1fr); } }

/* ═══════════════════════════════════════════════════════
   MATCH DAY CENTRE (inline responsive)
═══════════════════════════════════════════════════════ */
.mdc-tab {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px; color: rgba(242,237,224,.45); padding: 8px 14px;
  font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: .2s; white-space: nowrap;
}
.mdc-tab:hover { border-color: rgba(200,149,42,.3); color: var(--gold); }
.mdc-tab.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.mdc-panel { display: none; }
.mdc-panel.active { display: block; animation: fadeUp .3s var(--swift); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero { padding: clamp(3rem,7vw,5.5rem) var(--edge) clamp(2rem,4vw,3.5rem); text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.05); }
.page-hero::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,.01) 40px,rgba(255,255,255,.01) 41px); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem,6vw,4.5rem); font-weight: 400; letter-spacing: -.025em; position: relative; }
.page-hero p { color: var(--stone); font-size: .9rem; position: relative; margin-top: .5rem; max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════════════════ */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(12px); z-index: 2000; }
.modal-backdrop.open { display: block; }
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 2001; align-items: center; justify-content: center; padding: 1rem; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--deep); border: 1px solid rgba(200,149,42,.2); border-radius: 4px; width: 100%; max-width: 580px; padding: 1.75rem 1.25rem; position: relative; margin: auto; box-shadow: 0 24px 64px rgba(0,0,0,.8); }
.modal-close { position: absolute; top: .875rem; right: .875rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--bone); width: 28px; height: 28px; border-radius: 50%; font-size: .8rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.modal-close:hover { border-color: var(--red); color: var(--red); }
.modal-steps { display: flex; align-items: center; margin-bottom: 1.75rem; }
.modal-step { display: flex; align-items: center; gap: 5px; font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.modal-step.active { color: var(--gold); }
.modal-step .step-n { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .65rem; }
.modal-step.active .step-n { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.step-line { flex: 1; height: 1px; background: rgba(255,255,255,.07); margin: 0 .35rem; }
.modal-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 2px; }
.modal-sub { font-size: .8rem; color: var(--stone); margin-bottom: 1.1rem; }
.form-step  { display: none; }
.form-step.active { display: block; }
.form-grid  { display: grid; grid-template-columns: 1fr; gap: .65rem; margin-bottom: .75rem; }
.form-grid .form-group { margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: .75rem; }
.form-group label { font-size: .68rem; font-weight: 600; color: rgba(240,234,216,.5); letter-spacing: .05em; text-transform: uppercase; }
.form-group .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--bone); padding: 9px 11px; font-size: .86rem; outline: none; transition: .2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(200,149,42,.45); }
.form-group select option { background: var(--deep); }
.form-group textarea { min-height: 90px; resize: vertical; }
.package-cards { display: grid; grid-template-columns: 1fr; gap: .4rem; margin: .4rem 0 .75rem; }
.package-card { cursor: pointer; }
.package-card input[type=radio] { display: none; }
.pkg-inner { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 3px; padding: .75rem; text-align: center; transition: .2s; }
.package-card input:checked + .pkg-inner { border-color: var(--gold); background: rgba(200,149,42,.06); }
.pkg-inner:hover { border-color: rgba(200,149,42,.28); }
.pkg-name  { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.pkg-price { font-family: var(--mono); font-size: 1.25rem; margin-bottom: 2px; }
.pkg-slots { font-size: .6rem; color: var(--slate); margin-bottom: 4px; }
.pkg-features li { font-size: .6rem; color: rgba(240,234,216,.42); padding: 1px 0; text-align: left; }
.step-buttons { display: flex; gap: .4rem; margin-top: .75rem; flex-wrap: wrap; }
.file-drop { border: 1px dashed rgba(200,149,42,.2); border-radius: 3px; padding: .875rem; text-align: center; transition: .2s; position: relative; }
.file-drop:hover { border-color: rgba(200,149,42,.45); }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-icon { font-size: 1.2rem; display: block; margin-bottom: 3px; }
.file-drop p { font-size: .74rem; color: var(--stone); }
.file-name   { font-size: .68rem; color: var(--gold); display: block; margin-top: 2px; }
.char-count  { font-size: .64rem; color: var(--slate); text-align: right; margin-top: 2px; }
.field-error { font-size: .68rem; color: var(--red); margin-top: 2px; }
.review-box  { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 3px; padding: 1rem; margin-bottom: .75rem; }
.review-row  { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .8rem; }
.review-row:last-child { border: none; }
.review-label { color: var(--stone); }
.review-value { color: var(--bone); font-weight: 500; max-width: 55%; text-align: right; }
.match-display-box { background: rgba(200,149,42,.05); border: 1px solid rgba(200,149,42,.18); border-radius: 3px; padding: .6rem .875rem; font-size: .82rem; margin-bottom: .75rem; }
.no-match   { color: var(--stone); }
.form-note  { font-size: .66rem; color: var(--slate); text-align: center; margin-top: .75rem; }
#form-error { border-radius: 3px; }
@media (min-width: 480px) {
  .modal-box { padding: 2rem 1.75rem; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-group.full { grid-column: 1/-1; }
  .package-cards { grid-template-columns: repeat(3,1fr); }
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
.contact-info-card { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 1.25rem 1.4rem; display: flex; align-items: flex-start; gap: .875rem; margin-bottom: .65rem; transition: .2s; }
.contact-info-card:hover { border-color: rgba(200,149,42,.18); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.contact-info-card p  { font-size: .78rem; color: var(--stone); line-height: 1.65; }
.contact-form-wrap { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; padding: 1.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }

/* ═══════════════════════════════════════════════════════
   MATCHES PAGE FILTERS
═══════════════════════════════════════════════════════ */
.matches-controls { display: flex; align-items: stretch; gap: .5rem; flex-direction: column; margin-bottom: 1.25rem; padding: .875rem 1.1rem; background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 4px; }
.filter-bar { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-bar select { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--bone); padding: 8px 9px; font-size: .78rem; outline: none; transition: .2s; flex: 1; min-width: 120px; }
.filter-bar select:focus { border-color: rgba(200,149,42,.4); }
.filter-bar select option { background: var(--deep); }
.view-toggle { display: flex; gap: 3px; }
.view-btn { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--slate); padding: 7px 9px; font-size: .82rem; transition: .2s; }
.view-btn.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.search-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 3px; color: var(--bone); padding: 8px 9px; font-size: .78rem; outline: none; transition: .2s; width: 100%; }
.search-box:focus { border-color: rgba(200,149,42,.4); }
.search-box::placeholder { color: var(--slate); }
.no-matches-msg { text-align: center; padding: 3.5rem 1rem; color: var(--slate); }
.no-matches-msg span { font-size: 2.2rem; display: block; margin-bottom: .65rem; }
@media (min-width: 600px) { .matches-controls { flex-direction: row; align-items: center; } .search-box { width: 160px; } }

/* ── List view ──────────────────────────────────────── */
.match-list-item { background: var(--deep); border: 1px solid rgba(255,255,255,.06); border-radius: 3px; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .5rem; transition: .2s; margin-bottom: .4rem; }
.match-list-item:hover { border-color: rgba(200,149,42,.22); }
.list-stage { font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(200,149,42,.08); border: 1px solid rgba(200,149,42,.18); padding: 2px 7px; border-radius: 2px; align-self: flex-start; }
.list-teams { font-family: var(--serif); font-size: 1rem; }
.list-meta  { font-size: .74rem; color: var(--stone); }
.list-price { font-family: var(--mono); font-size: 1rem; color: var(--gold); }
@media (min-width: 640px) { .match-list-item { flex-direction: row; align-items: center; gap: 1rem; } }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer { background: rgba(5,10,5,.98); border-top: 1px solid rgba(255,255,255,.04); padding: clamp(2.5rem,6vw,5rem) var(--edge) 1.75rem; }
.footer-grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: .8rem; color: var(--stone); line-height: 1.75; margin-top: .75rem; }
.social-links { display: flex; gap: .35rem; margin-top: .875rem; }
.social-links a { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.07); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: .68rem; color: var(--slate); transition: .2s; }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4 { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.footer-links li { margin-bottom: .38rem; }
.footer-links a { font-size: .8rem; color: var(--stone); transition: .2s; }
.footer-links a:hover { color: var(--bone); }
.footer-contact h4 { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.footer-contact p { font-size: .8rem; color: var(--stone); margin-bottom: .35rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.25rem; max-width: 1360px; margin: 0 auto; }
.footer-copy { display: flex; justify-content: space-between; font-size: .68rem; color: rgba(255,255,255,.18); flex-wrap: wrap; gap: .35rem; }
@media (min-width: 600px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }

/* ═══════════════════════════════════════════════════════
   THANK YOU + TRACK
═══════════════════════════════════════════════════════ */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem var(--edge); text-align: center; }
.thankyou-box { max-width: 480px; width: 100%; }
.thankyou-icon { font-size: 3.5rem; display: block; margin-bottom: 1.25rem; animation: goalBounce .7s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes goalBounce { 0%{transform:scale(0) rotate(-15deg);opacity:0} 100%{transform:scale(1) rotate(0);opacity:1} }
.thankyou-box h1 { font-family: var(--serif); font-size: clamp(2rem,6vw,3.5rem); font-weight: 400; margin-bottom: .75rem; color: var(--gold); }
.thankyou-box p  { font-size: .9rem; color: var(--stone); margin-bottom: .65rem; }
.confetti-container { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   MATCH DETAIL PAGE
═══════════════════════════════════════════════════════ */
.match-detail-hero { padding: clamp(2.5rem,7vw,5.5rem) var(--edge) clamp(1.5rem,4vw,3rem); border-bottom: 1px solid rgba(255,255,255,.05); background: linear-gradient(160deg,var(--field),var(--ink)); }
.match-detail-teams { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.match-detail-flag  { font-size: 3rem; }
.match-detail-name  { font-family: var(--serif); font-size: clamp(1.6rem,5vw,3.5rem); font-weight: 400; letter-spacing: -.02em; }
.match-detail-vs    { font-size: .85rem; font-weight: 700; color: var(--gold); letter-spacing: .14em; padding: 0 .4rem; }

/* ═══════════════════════════════════════════════════════
   FLOATING BALLS — removed
═══════════════════════════════════════════════════════ */
.floating-balls { display: none !important; }


/* ═══════════════════════════════════════════════════════
   MATCH DAY CENTRE — responsive grids
═══════════════════════════════════════════════════════ */
.mdc-scores-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .mdc-scores-inner {
    grid-template-columns: 1fr 320px;
  }
}

.mdc-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .mdc-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.mdc-where-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px)  { .mdc-where-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .mdc-where-grid { grid-template-columns: repeat(4,1fr); } }

.mdc-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
@media (min-width: 540px)  { .mdc-schedule-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .mdc-schedule-grid { grid-template-columns: repeat(3,1fr); } }

/* Tickets page cat grid */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}
@media (min-width: 480px) { .cat-grid { grid-template-columns: 1fr 1fr; } }

/* Tickets page form name row */
.tk-name-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
}
@media (min-width: 480px) { .tk-name-row { grid-template-columns: 1fr 1fr; } }
