:root {
  --nv-blue: #0b58db;
  --nv-blue-deep: #08173f;
  --nv-blue-dark: #050c20;
  --nv-red: #ff5b54;
  --nv-red-soft: #ff857f;
  --nv-white: #ffffff;
  --nv-ice: #e9f0ff;
  --nv-text: #ffffff;
  --nv-text-soft: rgba(232, 238, 255, 0.84);
  --nv-border: rgba(255, 255, 255, 0.12);
  --nv-shadow: 0 28px 80px rgba(0, 8, 30, 0.28);
  --nv-radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.6;
  color: var(--nv-text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top center, rgba(24, 97, 255, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(6, 18, 54, 0.56), rgba(2, 6, 18, 0.96)),
    url("/assets/background-refined.svg") center top / cover fixed no-repeat,
    var(--nv-blue-dark);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(128deg, transparent 0%, transparent 45%, rgba(255, 91, 84, 0.26) 45.5%, transparent 46.2%),
    linear-gradient(128deg, transparent 0%, transparent 72%, rgba(255, 91, 84, 0.18) 72.5%, transparent 73.2%);
  opacity: 0.9;
}

body::after {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 91, 84, 0.22), transparent 16%),
    radial-gradient(circle at 10% 20%, rgba(72, 120, 255, 0.16), transparent 18%);
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 110px;
}

main {
  display: grid;
  gap: 26px;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(2, 7, 18, 0.55);
  backdrop-filter: blur(6px);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px 14px 20px;
  margin-bottom: 28px;
  border: 1px solid var(--nv-border);
  border-radius: 24px;
  background: rgba(5, 14, 39, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(4, 10, 26, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.brand img,
.footer img {
  width: 44px;
  height: 44px;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--nv-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

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

.topnav a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.topnav a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.topnav-cta {
  background: linear-gradient(135deg, var(--nv-red), var(--nv-red-soft));
  color: var(--nv-white);
  box-shadow: 0 12px 30px rgba(255, 91, 84, 0.25);
}

.admin-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.hero,
.section,
.footer {
  animation: initial-rise 0.8s ease both;
}

.hero-slider {
  position: relative;
  min-height: 72svh;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--nv-shadow);
}

.hero-slider-media {
  position: absolute;
  inset: 0;
  animation: hero-fade-in 0.7s ease both;
}

.hero-slider-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 30, 0.14), rgba(3, 10, 30, 0.52) 44%, rgba(3, 10, 30, 0.92)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 28%);
  z-index: 1;
}

.hero-slider-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding: 28px 30px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(3, 10, 30, 0.12), rgba(3, 10, 30, 0.84));
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 60px rgba(0, 8, 30, 0.24);
  animation: hero-fade-up 0.7s ease both;
}

.hero-slider-overlay strong {
  display: block;
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-slider-caption {
  max-width: 46ch;
  margin: 0;
  color: rgba(232, 238, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-slider-controls {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 10, 30, 0.32);
  color: var(--nv-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px);
  background: rgba(3, 10, 30, 0.48);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(3, 10, 30, 0.32);
  backdrop-filter: blur(10px);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-dot.active {
  transform: scale(1.2);
  background: var(--nv-red);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  min-height: auto;
  padding: 42px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(9, 88, 219, 0.74), rgba(4, 13, 40, 0.92)),
    rgba(7, 17, 44, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--nv-shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 84, 0.3), transparent 68%);
  filter: blur(12px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
  animation: pulse-glow 10s ease-in-out infinite;
}

.hero-copy,
.hero-stage,
.section-heading,
.story-stack,
.program-grid,
.split-showcase,
.venues,
.social-grid,
.contact-panel,
.stats {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d5e1ff;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.showcase-copy h2,
.contact-panel h2 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.01em;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(3.5rem, 10vw, 7rem);
}

.lead,
.section-heading p,
.card p,
.mini-card p,
.social-card p,
.contact-panel p,
.footer p {
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.7;
}

.runtime-notice {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 91, 84, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: var(--nv-text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--nv-red), var(--nv-red-soft));
  box-shadow: 0 12px 34px rgba(255, 91, 84, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--nv-white);
}

.button-arcade {
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 196, 87, 0.18), rgba(255, 91, 84, 0.22));
  border-color: rgba(255, 196, 87, 0.28);
  color: #fff6dc;
}

.button-arcade svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.highlight-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nv-red);
}

.hero-stage {
  position: relative;
  min-height: 280px;
}

.hero-orb {
  position: absolute;
  right: 0;
  top: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05) 58%, transparent 72%);
  filter: blur(4px);
  animation: float-orb 9s ease-in-out infinite;
}

.hero-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 8, 30, 0.25);
}

.hero-panel-main {
  top: 12px;
  right: 18px;
  width: min(100%, 420px);
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 240, 255, 0.92));
  animation: float-card 7s ease-in-out infinite;
}

.hero-panel-logo {
  top: 18px;
  right: 18px;
  width: min(100%, 220px);
  padding: 18px;
  border-radius: 24px;
  z-index: 2;
}

.hero-panel-side {
  left: 0;
  bottom: 0;
  max-width: 280px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  animation: float-card-alt 8s ease-in-out infinite;
  color: var(--nv-white);
}

.panel-kicker,
.card-meta,
.social-label,
.contact-item span {
  display: inline-block;
  margin-bottom: 8px;
  color: #d8e2ff;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-panel-side strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.marquee {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 14, 39, 0.58);
  box-shadow: 0 16px 38px rgba(0, 8, 30, 0.12);
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 16px;
  animation: marquee-move 20s linear infinite;
}

.marquee span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.arcade-callout {
  display: flex;
  justify-content: center;
}

.arcade-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 87, 0.24);
  background: rgba(5, 14, 39, 0.64);
  color: #fff3d3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 8, 30, 0.14);
}

.arcade-chip svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.section {
  position: relative;
  margin-top: 0;
  padding: 42px;
  border-radius: var(--nv-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(6, 18, 54, 0.78), rgba(4, 12, 32, 0.88));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 54px rgba(0, 8, 30, 0.16);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 84, 0.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

main > .section:not(.stats) + .section:not(.stats) {
  margin-top: -6px;
}

.section-spotlight::before,
.section-feature::before,
.section-panel::before,
.section-story::before {
  height: 92px;
  inset: -1px 0 auto 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0 100%);
  opacity: 0.9;
}

.section-spotlight {
  background:
    linear-gradient(140deg, rgba(9, 88, 219, 0.74), rgba(4, 13, 40, 0.9)),
    rgba(7, 17, 44, 0.84);
}

.section-spotlight::after {
  width: 280px;
  height: 280px;
  right: -90px;
  top: auto;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255, 91, 84, 0.2), transparent 70%);
  animation: drift-blob 14s ease-in-out infinite;
}

.section-story {
  background:
    linear-gradient(180deg, rgba(8, 23, 63, 0.76), rgba(4, 12, 32, 0.9));
}

.section-story::after {
  right: auto;
  left: -90px;
  top: 18%;
  background: radial-gradient(circle, rgba(72, 120, 255, 0.18), transparent 70%);
  animation: drift-blob-alt 16s ease-in-out infinite;
}

.section-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.section-feature::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}

.section-panel {
  background:
    linear-gradient(180deg, rgba(6, 18, 54, 0.66), rgba(4, 12, 32, 0.82));
}

.section-panel::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(11, 88, 219, 0.18), transparent 68%);
}

.story-grid,
.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: start;
}

.stats {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.stats::before,
.stats::after {
  display: none;
}

.section-heading h2,
.showcase-copy h2,
.contact-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.section-heading p:last-child,
.showcase-copy p,
.contact-panel p {
  color: var(--nv-text-soft);
  font-size: 1.02rem;
}

.story-stack,
.program-grid,
.schedule-grid,
.venues,
.social-grid,
.feed-grid,
.stats {
  display: grid;
  gap: 18px;
}

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

.program-grid,
.schedule-grid,
.venues,
.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.gallery-section {
  display: grid;
  gap: 22px;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -6px;
}

.card,
.stat-card,
.social-card,
.schedule-card,
.contact-panel,
.contact-item,
.mini-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-card,
.card,
.social-card,
.schedule-card,
.mini-card,
.contact-panel,
.contact-item,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.section-feature .card,
.section-feature .mini-card,
.section-feature .contact-panel,
.section-feature .contact-item,
.section-feature .social-card,
.section-feature .schedule-card,
.section-feature .footer-map-card,
.section-feature .footer-venue-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.section-panel .card,
.section-story .card,
.section-spotlight .schedule-card,
.section-spotlight .social-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.card,
.social-card,
.schedule-card,
.mini-card {
  padding: 24px;
}

.card h3,
.mini-card h3,
.social-card strong,
.schedule-card h3,
.venue-place,
.contact-item strong {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.accent-card,
.social-card,
.mini-card,
.schedule-card,
.contact-item,
.stat-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.accent-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 84, 0.22), transparent 68%);
}

.accent-card,
.social-card {
  position: relative;
  overflow: hidden;
}

.schedule-card {
  display: grid;
  gap: 12px;
}

.schedule-season,
.schedule-place,
.schedule-note {
  margin: 0;
  color: var(--nv-text-soft);
}

.schedule-season {
  font-weight: 700;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-place {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-times {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.schedule-times li {
  position: relative;
  padding: 14px 14px 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-times li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--nv-red);
  transform: translateY(-50%);
}

.schedule-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.schedule-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.next-match-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.next-match-copy {
  display: grid;
  gap: 10px;
}

.next-match-copy h2,
.next-match-copy .lead,
.next-match-meta,
.next-match-note {
  margin: 0;
}

.next-match-meta,
.next-match-note {
  color: var(--nv-text-soft);
}

.next-match-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.next-match-side {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.next-match-poster {
  width: min(100%, 280px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 10, 34, 0.2);
}

.next-match-poster img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-panel-detail {
  margin-top: 8px;
  color: #d8e2ff;
  font-size: 0.92rem;
  line-height: 1.4;
}

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

.matches-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.matches-filters-secondary {
  margin-top: -4px;
}

.matches-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.matches-summary-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.matches-summary-item strong {
  font-size: 1.4rem;
  line-height: 1;
}

.matches-summary-item span {
  color: #d8e2ff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.matches-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nv-white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.matches-filter:hover,
.matches-filter.active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.matches-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.matches-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.matches-list {
  display: grid;
  gap: 16px;
}

.match-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 50px rgba(0, 10, 34, 0.2);
}

.match-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.match-status,
.match-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-status {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.match-date {
  background: rgba(255, 255, 255, 0.06);
  color: #d8e2ff;
}

.match-status.status-upcoming {
  background: rgba(57, 129, 255, 0.18);
  border-color: rgba(57, 129, 255, 0.28);
}

.match-status.status-completed {
  background: rgba(255, 91, 84, 0.18);
  border-color: rgba(255, 91, 84, 0.3);
}

.match-status.status-postponed,
.match-status.status-cancelled {
  background: rgba(255, 196, 87, 0.16);
  border-color: rgba(255, 196, 87, 0.28);
}

.match-card h3 {
  margin: 0;
}

.match-venue-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-venue-badge.venue-home {
  background: rgba(57, 129, 255, 0.16);
  border: 1px solid rgba(57, 129, 255, 0.26);
  color: #e0ebff;
}

.match-venue-badge.venue-away {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eef3ff;
}

.match-featured-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 196, 87, 0.16);
  border: 1px solid rgba(255, 196, 87, 0.28);
  color: #fff0c8;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-opponent {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff0ea;
}

.match-venue,
.match-note,
.matches-empty {
  margin: 0;
  color: var(--nv-text-soft);
}

.match-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 91, 84, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 91, 84, 0.24);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff7f4;
}

.match-outcome {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-outcome-win {
  background: rgba(78, 211, 140, 0.16);
  border: 1px solid rgba(78, 211, 140, 0.28);
  color: #d9ffe9;
}

.match-outcome-loss {
  background: rgba(255, 91, 84, 0.16);
  border: 1px solid rgba(255, 91, 84, 0.28);
  color: #ffe4e1;
}

.match-outcome-draw {
  background: rgba(255, 196, 87, 0.14);
  border: 1px solid rgba(255, 196, 87, 0.25);
  color: #fff0c8;
}

.match-calendar-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #eef3ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.match-calendar-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
}

.match-sets {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-sets li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #d8e2ff;
}

.team-meta,
.team-coach,
.news-date {
  color: #d8e2ff;
}

.news-team {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
}

.news-link {
  margin-top: 6px;
}

.news-cover {
  overflow: hidden;
  margin: -10px -10px 14px;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06);
}

.news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.news-date-badge {
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244, 77, 77, 0.16);
  border: 1px solid rgba(244, 77, 77, 0.35);
  color: #ffe6e6;
  font-size: 0.82rem;
  font-weight: 700;
}

.news-location {
  margin: 0;
  color: #f2f6ff;
  font-weight: 600;
}

.news-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.news-detail-button {
  cursor: pointer;
}

.news-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-share-button {
  text-decoration: none;
}

.news-share-message {
  margin: 0;
  color: #d8e2ff;
  font-size: 0.92rem;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 26, 0.8);
  backdrop-filter: blur(18px);
}

.news-modal-card {
  position: relative;
  width: min(940px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(16, 36, 86, 0.96), rgba(7, 18, 46, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.news-modal-visual {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.04);
}

.news-modal-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.news-modal-copy {
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-modal-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.news-modal-body {
  display: grid;
  gap: 12px;
}

.news-modal-body p {
  margin: 0;
  color: rgba(236, 241, 255, 0.92);
}

.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.arcade-modal-card {
  width: min(1040px, 100%);
  display: block;
  overflow: hidden;
}

.arcade-modal-copy {
  padding: 34px 30px 28px;
  display: grid;
  gap: 18px;
}

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

.arcade-scorebox {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.arcade-scorebox-home {
  background: linear-gradient(180deg, rgba(95, 140, 255, 0.22), rgba(39, 71, 169, 0.22));
  border-color: rgba(95, 140, 255, 0.34);
}

.arcade-scorebox-away {
  background: linear-gradient(180deg, rgba(255, 91, 84, 0.2), rgba(181, 32, 42, 0.22));
  border-color: rgba(255, 91, 84, 0.34);
}

.arcade-scorebox small {
  color: #d8e2ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.arcade-scorebox strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.arcade-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.arcade-help-trigger {
  min-width: 44px;
  padding: 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
}

.arcade-help-modal-card {
  max-width: 720px;
}

.arcade-stage {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top, rgba(170, 214, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(30, 87, 204, 0.65), rgba(10, 32, 84, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.arcade-court {
  position: relative;
  aspect-ratio: 900 / 420;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(146, 207, 255, 0.3), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0 68%, rgba(7, 23, 58, 0.92) 68% 100%);
}

.arcade-cabinet-score {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: min(360px, calc(100% - 56px));
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 18, 54, 0.72);
  box-shadow:
    0 18px 28px rgba(0, 8, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.arcade-cabinet-score-team {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.arcade-cabinet-score-team span,
.arcade-cabinet-score-divider {
  color: #cfe0ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arcade-cabinet-score-team strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  color: #ffffff;
}

.arcade-cabinet-score-team-home strong {
  color: #83beff;
  text-shadow: 0 0 12px rgba(131, 190, 255, 0.24);
}

.arcade-cabinet-score-team-away strong {
  color: #ff8f88;
  text-shadow: 0 0 12px rgba(255, 143, 136, 0.22);
}

.arcade-cabinet-score-divider {
  align-self: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.arcade-crowd {
  position: absolute;
  inset: 0 0 auto 0;
  height: 88px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, rgba(255, 91, 84, 0.18), rgba(255, 255, 255, 0.04));
  opacity: 0.8;
}

.arcade-floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  clip-path: polygon(2.6% 0, 97.4% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, transparent 0 4.8%, rgba(255, 247, 234, 0.74) 4.8% 5.1%, transparent 5.1% 94.9%, rgba(255, 247, 234, 0.74) 94.9% 95.2%, transparent 95.2% 100%),
    linear-gradient(180deg, transparent 0 14px, rgba(255, 247, 234, 0.72) 14px 16px, transparent 16px 100%),
    linear-gradient(180deg, transparent 0 56px, rgba(255, 247, 234, 0.76) 56px 58px, transparent 58px 100%),
    linear-gradient(90deg, transparent 0 24.9%, rgba(255, 247, 234, 0.72) 24.9% 25.1%, transparent 25.1% 49.9%, rgba(255, 247, 234, 0.72) 49.9% 50.1%, transparent 50.1% 74.9%, rgba(255, 247, 234, 0.72) 74.9% 75.1%, transparent 75.1% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 12.5%, transparent 12.5% 25%, rgba(255, 255, 255, 0.06) 25% 37.5%, transparent 37.5% 50%, rgba(255, 255, 255, 0.06) 50% 62.5%, transparent 62.5% 75%, rgba(255, 255, 255, 0.06) 75% 87.5%, transparent 87.5% 100%),
    linear-gradient(180deg, rgba(242, 144, 86, 0.95), rgba(180, 90, 44, 0.98));
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}

.arcade-floor::before,
.arcade-floor::after {
  content: "";
  position: absolute;
  inset: 14px 0 auto 0;
  height: 2px;
  background: rgba(255, 247, 234, 0.65);
}

.arcade-floor::after {
  inset: 14px auto auto 50%;
  width: 2px;
  height: 58px;
}

.arcade-floor {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 18px 24px rgba(255, 214, 176, 0.08);
}

.arcade-floor > * {
  pointer-events: none;
}

.arcade-net {
  position: absolute;
  left: calc(50% - 7px);
  bottom: 72px;
  width: 14px;
  height: 148px;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 2px, transparent 2px 4px, rgba(255, 255, 255, 0.92) 4px 6px, transparent 6px 8px, rgba(255, 255, 255, 0.92) 8px 10px, transparent 10px 12px, rgba(255, 255, 255, 0.92) 12px 14px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 10px);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-bottom: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 24px rgba(0, 8, 30, 0.16);
}

.arcade-net::before,
.arcade-net::after {
  content: "";
  position: absolute;
  top: -6px;
}

.arcade-net::before {
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(230, 238, 255, 0.98));
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.arcade-net::after {
  left: 50%;
  bottom: -74px;
  top: auto;
  width: 70px;
  height: 172px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent 0 10px, rgba(228, 236, 255, 0.92) 10px 14px, transparent 14px 56px, rgba(228, 236, 255, 0.92) 56px 60px, transparent 60px 100%);
  filter: drop-shadow(0 8px 8px rgba(0, 10, 34, 0.18));
  pointer-events: none;
}

.arcade-player {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: center center;
  transition: transform 0.14s ease;
}

.arcade-head,
.arcade-body,
.arcade-arm {
  position: absolute;
  display: block;
}

.arcade-shadow {
  position: absolute;
  left: 16px;
  bottom: -8px;
  width: 36px;
  height: 10px;
  border-radius: 999px;
  background: rgba(4, 12, 32, 0.32);
  filter: blur(3px);
}

.arcade-head {
  left: 18px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #fff2df;
  border: 2px solid rgba(6, 18, 54, 0.3);
}

.arcade-body {
  left: 12px;
  top: 28px;
  width: 42px;
  height: 72px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, #5f8cff, #2747a9);
  border: 2px solid rgba(6, 18, 54, 0.34);
  box-shadow:
    -20px 42px 0 -14px rgba(255, 242, 223, 0.92),
    20px 42px 0 -14px rgba(255, 242, 223, 0.92),
    -16px 74px 0 -12px rgba(255, 242, 223, 0.92),
    16px 74px 0 -12px rgba(255, 242, 223, 0.92);
}

.arcade-arm {
  top: 36px;
  width: 14px;
  height: 42px;
  border-radius: 999px;
  background: #fff2df;
  border: 2px solid rgba(6, 18, 54, 0.2);
  transform-origin: top center;
}

.arcade-arm-back {
  left: 6px;
  transform: rotate(34deg);
  z-index: 0;
}

.arcade-arm-front {
  left: 46px;
  transform: rotate(-24deg);
  z-index: 2;
}

.arcade-player-away .arcade-body {
  background: linear-gradient(180deg, #ff5b54, #b5202a);
}

.arcade-player.is-running .arcade-body {
  animation: arcade-run 0.34s linear infinite;
}

.arcade-player.is-running .arcade-arm-back {
  animation: arcade-arm-back-swing 0.34s linear infinite;
}

.arcade-player.is-running .arcade-arm-front {
  animation: arcade-arm-front-swing 0.34s linear infinite;
}

.arcade-player.is-jumping {
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.18));
}

.arcade-player.is-jumping .arcade-head {
  transform: translateY(-2px);
}

.arcade-player.is-hitting .arcade-body {
  transform: translateY(-4px) rotate(-4deg);
}

.arcade-player.is-hitting .arcade-arm-front {
  transform: rotate(-62deg) translateY(-6px);
}

.arcade-player.is-hitting .arcade-arm-back {
  transform: rotate(56deg) translateY(2px);
}

.arcade-player.is-hitting .arcade-shadow {
  transform: scaleX(1.12);
}

.arcade-player.is-setting .arcade-arm-front {
  transform: rotate(-86deg) translateY(-10px);
}

.arcade-player.is-setting .arcade-arm-back {
  transform: rotate(74deg) translateY(-6px);
}

.arcade-player.is-setting .arcade-body {
  transform: translateY(-2px);
}

.arcade-player.is-smashing .arcade-arm-front {
  transform: rotate(-104deg) translateY(-10px);
}

.arcade-player.is-smashing .arcade-arm-back {
  transform: rotate(70deg) translateY(-2px);
}

.arcade-player.is-smashing .arcade-body {
  transform: translateY(-8px) rotate(-6deg);
}

.arcade-player.is-serving .arcade-head {
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.arcade-player.is-controlled {
  filter: drop-shadow(0 0 18px rgba(120, 178, 255, 0.24));
}

.arcade-player.is-controlled .arcade-head {
  box-shadow: 0 0 0 5px rgba(120, 178, 255, 0.12);
}

.arcade-player.is-serving .arcade-body {
  animation: arcade-serve-ready 0.95s ease-in-out infinite;
}

.arcade-player.is-serving .arcade-arm-front {
  animation: arcade-serve-arm 0.95s ease-in-out infinite;
}

.arcade-player.is-serve-motion .arcade-arm-front {
  transform: rotate(-118deg) translateY(-12px);
}

.arcade-player.is-serve-motion .arcade-arm-back {
  transform: rotate(56deg) translateY(-2px);
}

.arcade-player.is-serve-motion .arcade-body {
  transform: translateY(-6px) rotate(-4deg);
}

.arcade-serve-indicator {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 21, 56, 0.68);
  color: #f6f8ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.arcade-ball {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(248, 248, 248, 0.94) 50%, rgba(230, 236, 255, 0.95) 100%);
  border: 3px solid rgba(255, 91, 84, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  animation: arcade-ball-spin 0.8s linear infinite;
}

.arcade-player.is-serving ~ .arcade-ball {
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

.arcade-status {
  margin: 0;
  color: #d8e2ff;
}

.arcade-serve-power {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.arcade-serve-power-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #e7eeff;
  font-size: 0.92rem;
}

.arcade-serve-power-head strong {
  color: #ffffff;
}

.arcade-serve-power-track {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(84, 166, 255, 0.26), rgba(255, 196, 94, 0.28) 58%, rgba(255, 91, 84, 0.32)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.arcade-serve-power-fill {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 22px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(92, 163, 255, 0.96), rgba(132, 202, 255, 0.98) 42%, rgba(255, 223, 132, 0.98) 72%, rgba(255, 120, 95, 1));
  box-shadow:
    0 0 18px rgba(115, 178, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: width 0.06s linear;
}

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

.arcade-command-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.arcade-command-card strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.arcade-command-card span {
  color: #d8e2ff;
  font-size: 0.92rem;
  line-height: 1.4;
}

.arcade-command-card kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  padding: 0.18rem 0.4rem;
  margin-right: 0.12rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 18, 54, 0.55);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
}

.arcade-actions,
.arcade-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.arcade-gameover {
  position: absolute;
  inset: 18px;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(5, 14, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 26px 60px rgba(0, 8, 30, 0.28);
}

.arcade-gameover strong {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.arcade-gameover p {
  margin: 0;
}

.arcade-gameover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.arcade-control-button {
  min-width: 64px;
  min-height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.arcade-control-button-jump {
  background: rgba(255, 91, 84, 0.18);
  border-color: rgba(255, 91, 84, 0.3);
}

.arcade-control-button-hit {
  background: rgba(95, 140, 255, 0.22);
  border-color: rgba(95, 140, 255, 0.34);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .news-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .news-modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: 26px;
  }

  .news-modal-visual img {
    min-height: 220px;
    max-height: 260px;
  }

  .news-modal-copy {
    padding: 24px 18px 20px;
  }

  .arcade-modal-copy {
    padding: 24px 18px 20px;
  }

  .arcade-serve-power-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .arcade-cabinet-score {
    min-width: calc(100% - 24px);
    gap: 8px;
    padding: 8px 10px;
  }
}

.matches-empty {
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.accent-card:hover,
.social-card:hover,
.mini-card:hover,
.contact-item:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 50px rgba(0, 10, 34, 0.2);
}

.section.reveal.is-visible {
  transform: translateY(0);
}

.section.reveal.is-visible:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 68px rgba(0, 8, 30, 0.2);
}

.stat-card {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  text-align: center;
}

.stat-card strong {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  color: #fff0ea;
}

.stat-card span,
.social-card small {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--nv-text-soft);
}

.showcase-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(10, 33, 90, 0.84), rgba(4, 12, 32, 0.92));
  overflow: hidden;
}

.showcase-visual img {
  max-height: 520px;
  object-fit: contain;
  animation: float-card 8s ease-in-out infinite;
}

.showcase-copy {
  display: grid;
  gap: 18px;
}

.feed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.mini-card {
  min-height: 180px;
}

.venue-place {
  color: #fff2ef;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 30px;
  padding: 32px;
}

.contact-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-utility {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.footer-map-card,
.footer-venue-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.footer-map-card {
  padding: 24px;
}

.footer-map-button {
  margin-top: 18px;
}

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

.footer-venue-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-venue-item span {
  color: #d8e2ff;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-venue-item strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-venue-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 50px rgba(0, 10, 34, 0.2);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nv-red), var(--nv-red-soft));
  box-shadow: 0 16px 40px rgba(255, 91, 84, 0.28);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panda-helper {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 16;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.panda-helper-bubble {
  display: grid;
  gap: 10px;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 14, 39, 0.82);
  box-shadow: 0 18px 40px rgba(0, 8, 30, 0.22);
  backdrop-filter: blur(14px);
}

.panda-helper-bubble-animated {
  animation: panda-bubble-pop 0.34s ease-out;
}

.panda-helper-bubble strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff6ea;
}

.panda-helper-bubble span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 226, 0.72);
}

.panda-helper-button {
  min-height: 42px;
  padding: 0 16px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 87, 0.26);
  background: linear-gradient(135deg, rgba(255, 196, 87, 0.24), rgba(255, 91, 84, 0.24));
  color: #fff8e2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
}

@keyframes panda-bubble-pop {
  0% {
    transform: translateY(8px) scale(0.96);
    opacity: 0.2;
  }
  70% {
    transform: translateY(-2px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.panda-helper-avatar {
  position: relative;
  width: 130px;
  height: 146px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  animation: panda-float 4.5s ease-in-out infinite;
}

.panda-helper-avatar-animated {
  animation: panda-float 4.5s ease-in-out infinite, panda-hop 0.36s ease-out;
}

@keyframes panda-hop {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-12px) scale(1.03);
  }
  70% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.panda-ear,
.panda-face,
.panda-body,
.panda-eye,
.panda-nose,
.panda-mouth,
.panda-belly,
.panda-arm {
  position: absolute;
  display: block;
}

.panda-ear {
  top: 6px;
  width: 34px;
  height: 34px;
  border-radius: 16px;
  background: #18213f;
}

.panda-ear-left {
  left: 18px;
  transform: rotate(-14deg);
}

.panda-ear-right {
  right: 18px;
  transform: rotate(14deg);
}

.panda-face {
  top: 18px;
  left: 18px;
  width: 94px;
  height: 82px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #eef3ff);
  border: 3px solid rgba(24, 33, 63, 0.16);
  box-shadow: 0 12px 24px rgba(0, 8, 30, 0.18);
}

.panda-eye {
  top: 26px;
  width: 24px;
  height: 30px;
  border-radius: 14px;
  background: #18213f;
}

.panda-eye::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  animation: panda-blink 5s infinite;
}

.panda-eye-left {
  left: 18px;
  transform: rotate(14deg);
}

.panda-eye-right {
  right: 18px;
  transform: rotate(-14deg);
}

.panda-nose {
  left: calc(50% - 8px);
  top: 44px;
  width: 16px;
  height: 12px;
  border-radius: 10px;
  background: #18213f;
}

.panda-mouth {
  left: calc(50% - 12px);
  top: 58px;
  width: 24px;
  height: 10px;
  border-bottom: 3px solid #18213f;
  border-radius: 0 0 18px 18px;
}

.panda-body {
  left: 26px;
  top: 86px;
  width: 78px;
  height: 56px;
  border-radius: 28px 28px 24px 24px;
  background: #18213f;
}

.panda-belly {
  left: 16px;
  top: 10px;
  width: 46px;
  height: 34px;
  border-radius: 20px;
  background: #fff8ef;
}

.panda-arm {
  top: 12px;
  width: 18px;
  height: 34px;
  border-radius: 14px;
  background: #18213f;
}

.panda-arm-left {
  left: -4px;
  transform-origin: top center;
  animation: panda-wave 2.6s ease-in-out infinite;
}

.panda-arm-right {
  right: -4px;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 8px 0;
  color: rgba(240, 244, 255, 0.85);
}

.section-heading.narrow {
  max-width: 820px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.footer strong {
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-title {
  margin: 0 0 6px;
  color: #d8e2ff;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links,
.footer-contacts {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
}

.footer-links a,
.footer-contacts a {
  color: rgba(240, 244, 255, 0.85);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--nv-white);
  transform: translateX(2px);
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

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

.footer-contact-copy small {
  color: #d8e2ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-copy strong {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes initial-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes float-card-alt {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-16px, 10px, 0);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes drift-blob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -12px, 0);
  }
}

@keyframes drift-blob-alt {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(16px, 14px, 0);
  }
}

@keyframes marquee-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes panda-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes panda-wave {
  0%,
  100% {
    transform: rotate(8deg);
  }

  50% {
    transform: rotate(-18deg);
  }
}

@keyframes panda-blink {
  0%,
  46%,
  52%,
  100% {
    transform: scaleY(1);
  }

  48%,
  50% {
    transform: scaleY(0.15);
  }
}

@keyframes arcade-run {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes arcade-arm-front-swing {
  0%,
  100% {
    transform: rotate(-18deg);
  }

  50% {
    transform: rotate(-42deg);
  }
}

@keyframes arcade-arm-back-swing {
  0%,
  100% {
    transform: rotate(28deg);
  }

  50% {
    transform: rotate(54deg);
  }
}

@keyframes arcade-ball-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes arcade-serve-ready {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px) rotate(-2deg);
  }
}

@keyframes arcade-serve-arm {
  0%,
  100% {
    transform: rotate(-16deg);
  }

  50% {
    transform: rotate(-74deg) translateY(-6px);
  }
}

@media (max-width: 1080px) {
  .hero-slider {
    min-height: 58svh;
  }

  .hero,
  .story-grid,
  .split-showcase,
  .next-match-section,
  .contact-panel,
  .footer-utility,
  .feed-grid,
  .story-stack,
  .stats {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .schedule-grid,
  .matches-layout,
  .matches-summary,
  .venues,
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding: 42px;
  }

  .section::before {
    height: 68px;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-panel-logo {
    right: 0;
    width: min(100%, 160px);
  }

  .arcade-actions,
  .arcade-controls {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .arcade-command-legend {
    grid-template-columns: 1fr;
  }

  .arcade-actions .button:first-child {
    grid-column: span 2;
  }

  .panda-helper {
    right: 14px;
    bottom: 84px;
  }

  .panda-helper-bubble {
    max-width: 190px;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
    padding-bottom: 100px;
  }

  main {
    gap: 24px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    z-index: 21;
  }

  .admin-entry {
    display: none;
  }

  .button-arcade {
    width: 100%;
  }

  .panda-helper {
    right: 12px;
    bottom: 76px;
    gap: 8px;
  }

  .panda-helper-bubble {
    max-width: 160px;
    padding: 12px 14px;
  }

  .panda-helper-bubble strong {
    font-size: 0.9rem;
  }

  .panda-helper-avatar {
    width: 106px;
    height: 120px;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

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

  .menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .topnav {
    position: fixed;
    top: 88px;
    left: 10px;
    right: 10px;
    z-index: 19;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(5, 14, 39, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 8, 30, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .topnav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .topnav a {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero,
  .section {
    padding: 22px;
  }

  .contact-panel,
  .footer-utility,
  .footer-map-card,
  .footer-links,
  .footer-contacts,
  .footer-brand {
    padding: 20px;
  }

  .section::before,
  .section::after {
    opacity: 0.7;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .lead,
  .section-heading p:last-child,
  .contact-panel p,
  .schedule-note,
  .schedule-place {
    font-size: 1rem;
  }

  .hero-actions,
  .program-grid,
  .schedule-grid,
  .matches-layout,
  .matches-summary,
  .venues,
  .social-grid,
  .footer-venue-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-panel-logo {
    width: min(100%, 140px);
    top: 0;
    right: 0;
  }

  .hero-panel-side {
    max-width: 220px;
    left: 0;
    bottom: 0;
  }

  .floating-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 20px;
  }

  .footer-contact-card {
    align-items: flex-start;
    padding: 14px;
  }

  .footer-contact-copy strong,
  .footer-venue-item strong {
    font-size: 1rem;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .topbar {
    top: 10px;
    padding-left: 14px;
  }

  .section {
    border-radius: 24px;
  }

  .page-shell {
    width: min(100% - 12px, 1180px);
  }

  .section::before {
    height: 52px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand img,
  .footer img {
    width: 38px;
    height: 38px;
  }

  .hero-stage {
    min-height: 320px;
  }

  .hero-panel-main {
    padding: 14px;
  }

  .hero-panel-side {
    left: auto;
    right: 0;
    bottom: 0;
    max-width: 200px;
  }

  .hero-slider {
    min-height: 48svh;
    border-radius: 28px;
  }

  .hero-slider-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .hero-slider-controls {
    left: 14px;
    right: 14px;
    top: 14px;
  }

  .contact-panel {
    gap: 18px;
    padding: 18px;
  }

  .contact-item,
  .footer-venue-item {
    padding: 16px;
  }

  .footer-map-card,
  .footer-contacts,
  .footer-links,
  .footer-brand,
  .footer-contact-card,
  .footer-venue-item,
  .contact-item {
    border-radius: 20px;
  }

  .footer {
    padding: 8px 0 20px;
  }

  .footer-social-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-social-pill {
    justify-content: flex-start;
    min-width: 0;
    white-space: normal;
  }

  .hero-slider-dots {
    gap: 8px;
    padding: 8px 12px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .contact-panel h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }
}
