:root {
  --bg: #0b0f0c;
  --bg-2: #111827;
  --white: #f9fafb;

  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --panel-soft: rgba(255, 255, 255, 0.04);

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f9fafb;
  --text-soft: #d1d5db;
  --text-muted: #9ca3af;

  --green: #16a34a;
  --green-2: #22c55e;
  --blue: #1d4ed8;
  --blue-soft: #0f172a;
  --violet: #4f46e5;
  --gold: #facc15;
  --red: #dc2626;

  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.45);
  --shadow-glass: 0 20px 60px rgba(0, 0, 0, 0.24);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 44px;

  --max-width: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.08), transparent 20%),
    radial-gradient(circle at 50% 120%, rgba(79, 70, 229, 0.08), transparent 30%),
    linear-gradient(180deg, #0b0f0c 0%, #111827 42%, #0f172a 100%);
}

img {
  max-width: 100%;
}

a {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-160%) skewX(-22deg);
  }
  100% {
    transform: translateX(320%) skewX(-22deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(34, 197, 94, 0.2);
  }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 20px;
  background: rgba(11, 15, 12, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  text-shadow: none;
  animation: fadeUp 0.7s ease both;
}

/* HERO */
.pro-hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.pro-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.72) 0%, rgba(5, 8, 7, 0.46) 40%, rgba(5, 8, 7, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 8, 7, 0.18) 0%, rgba(5, 8, 7, 0.5) 100%),
    url("https://media.bizj.us/view/img/12777131/fwc26-fanfest2*900xx4242-2383-0-454.jpg") center/cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

.pro-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(34, 197, 94, 0.14), transparent 23%),
    radial-gradient(circle at 84% 18%, rgba(29, 78, 216, 0.12), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.08), transparent 24%);
  z-index: 1;
}

.pro-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 250px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 12, 0.96) 100%);
  z-index: 1;
}

.pro-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 20px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 430px;
  gap: 40px;
  align-items: center;
}

.pro-hero-copy {
  color: var(--text);
}

.pro-hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: fadeUp 0.7s ease both;
}

.pro-hero-copy h1 {
  margin: 0;
  max-width: 1600px;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 1000;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.85s ease both;
  animation-delay: 0.08s;
}

.pro-hero-copy h1 span {
  background: linear-gradient(135deg, var(--green-2), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pro-hero-copy h2 {
  max-width: 1600px;
  margin: 24px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-soft);
  animation: fadeUp 0.95s ease both;
  animation-delay: 0.16s;
}

.pro-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: fadeUp 1s ease both;
  animation-delay: 0.24s;
}

.pro-btn {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.pro-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  opacity: 0.7;
  pointer-events: none;
}

.pro-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
}

.pro-btn:hover::after {
  animation: shineSweep 0.9s ease;
}

.pro-btn:hover {
  transform: translateY(-3px);
}

.pro-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow:
    0 16px 36px rgba(22, 163, 74, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.pro-btn-primary:hover {
  box-shadow:
    0 24px 46px rgba(22, 163, 74, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.pro-btn-glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.pro-btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* HERO STATS */
.pro-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  animation: fadeUp 1.08s ease both;
  animation-delay: 0.32s;
}

.pro-stat {
  min-width: 140px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.pro-stat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.pro-stat strong {
  display: block;
  font-size: 31px;
  line-height: 1;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.pro-stat span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* HERO CARD */
.pro-hero-card {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)),
    rgba(8, 12, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: var(--text);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: fadeUp 1.05s ease both;
  animation-delay: 0.22s;
}

.pro-hero-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.pro-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%);
  pointer-events: none;
}

.pro-hero-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  transition: left 0.7s ease, opacity 0.4s ease;
  pointer-events: none;
}

.pro-hero-card:hover::after {
  left: 120%;
  opacity: 1;
}

.pro-hero-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.pro-hero-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pro-hero-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-soft);
}

.pro-hero-pill-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pro-hero-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.pro-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.pro-card-link:hover {
  color: #86efac;
}

/* MAIN */
.main-layout {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: -56px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 16px 42px;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* MATCHES */
.matches-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1600px;
}

.match-row-inline {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    rgba(12, 18, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.match-row-inline:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 197, 94, 0.45);
}

.match-row-empty {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.match-date-time {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

.date-line {
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge.live {
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.18);
}

.badge.today {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.18);
}

.badge.upcoming {
  color: #bfdbfe;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.3), rgba(96,165,250,0.08));
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.badge.passed {
  color: var(--text-soft);
  background: linear-gradient(135deg, rgba(148,163,184,0.12), rgba(100,116,139,0.08));
}

.match-teams-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-teams-inline {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.team-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  min-width: 0;
  white-space: nowrap;
}

.team-inline:first-child {
  justify-content: flex-end;
  text-align: right;
}

.team-inline:last-child {
  justify-content: flex-start;
  text-align: left;
}

.team-name {
  display: inline-block;
  line-height: 1.2;
}

.flag-img {
  width: 50px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  display: block;
}

.vs-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  font-size: 20px;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.match-extra-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 16px;
  color: var(--text-soft);
}

.match-extra-info span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.match-group-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(29,78,216,0.14));
  color: var(--text);
  font-weight: 800;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.match-action-inline {
  display: flex;
  justify-content: center;
}

.details-btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow:
    0 14px 28px rgba(22, 163, 74, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.details-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.details-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(22, 163, 74, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.details-btn:hover::after {
  left: 120%;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  width: 100%;
  max-width: 1600px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    rgba(11, 15, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 22px;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.sidebar-card h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* TABLE */
.sidebar-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.sidebar-card thead th {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-card tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  vertical-align: middle;
  color: var(--text-soft);
}

.sidebar-card tbody tr:last-child td {
  border-bottom: none;
}

.sidebar-card th:first-child,
.sidebar-card td:first-child {
  width: 40px;
  text-align: center;
}

.sidebar-card th:nth-child(2),
.sidebar-card td:nth-child(2) {
  width: auto;
}

.sidebar-card th:last-child,
.sidebar-card td:last-child {
  width: 55px;
  text-align: center;
  font-weight: 900;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.table-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.top-team {
  background: linear-gradient(90deg, rgba(22,163,74,0.1), rgba(29,78,216,0.06));
}

/* FAN ZONES */
.modern-zone-card {
  width: 100%;
  max-width: 1600px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    rgba(11, 15, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.modern-zone-card:last-child {
  margin-bottom: 0;
}

.modern-zone-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}

.zone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.zone-title-row h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

.zone-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(255, 244, 180, 0.16));
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.16);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.zone-location {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.14);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

/* SEARCH */
.search-container {
  margin-top: 16px;
  max-width: 420px;
}

.search-container input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}

.search-container input:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
}

.search-container input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* HERO SEARCH (BOTTOM) */
.hero-search-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  z-index: 50;
}

.hero-search-bottom input {
  width: 100%;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-search-bottom input::placeholder {
  color: rgba(255,255,255,0.6);
}

.hero-search-bottom input:focus {
  border-color: var(--green-2);
  box-shadow:
    0 0 0 2px rgba(34,197,94,0.25),
    0 24px 70px rgba(0,0,0,0.5);
}

/* GROUP FILTERS */
.group-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.group-btn {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.05);
  color: var(--text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.group-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  opacity: 0.65;
  pointer-events: none;
}

.group-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
}

.group-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(34, 197, 94, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.group-btn:hover::after {
  animation: shineSweep 0.9s ease;
}

.group-btn.active {
  color: #fff;
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow:
    0 16px 34px rgba(22, 163, 74, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.group-btn.active::before {
  opacity: 0.35;
}

.group-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.22),
    0 16px 34px rgba(0, 0, 0, 0.24);
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .main-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    gap: 24px;
  }

  .match-row-inline {
    grid-template-columns: 170px minmax(0, 1fr) 110px 180px;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .match-date-time,
  .match-group-inline {
    text-align: center;
  }

  .match-group-inline {
    margin: 0 auto;
  }

  .details-btn {
    min-width: 155px;
  }
}

@media (max-width: 1100px) {
  .pro-hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 78px;
    padding-bottom: 64px;
  }

  .pro-hero-card {
    max-width: 560px;
  }

  .sidebar-card,
  .modern-zone-card {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .navbar {
    min-height: 70px;
  }

  .pro-hero {
    min-height: auto;
  }

  .pro-hero-container {
    padding: 58px 16px 52px;
  }

  .pro-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
    line-height: 0.95;
  }

  .pro-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pro-btn {
    width: 100%;
  }

  .pro-hero-stats {
    gap: 12px;
  }

  .pro-stat {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }

  .pro-hero-card {
    padding: 22px 18px;
  }

  .pro-hero-card h3 {
    font-size: 24px;
  }

  .main-layout {
    margin-top: 10px;
    padding: 0 14px 34px;
  }

  .match-teams-inline {
    grid-template-columns: 1fr 50px 1fr;
    gap: 10px;
  }

  .team-inline {
    flex-direction: row;
    gap: 8px;
    font-size: 22px;
  }

  .team-inline:first-child {
    justify-content: flex-end;
  }

  .team-inline:last-child {
    justify-content: flex-start;
  }

  .flag-img {
    width: 40px;
    height: 30px;
  }

  .team-name {
    white-space: normal;
  }

  .group-filters {
    gap: 10px;
    margin: 14px 0 18px;
  }

  .group-btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .hero-search-bottom {
    bottom: 10px;
  }

  .hero-search-bottom input {
    padding: 14px 18px;
    font-size: 14px;
  }
}