:root {
  --vnl-purple-950: #12081f;
  --vnl-purple-900: #1a0d2e;
  --vnl-purple-850: #22113d;
  --vnl-purple-800: #2d1b4e;
  --vnl-purple-700: #452473;
  --vnl-blue-600: #3d5af1;
  --vnl-orange: #ff5722;
  --vnl-orange-bright: #ff6b3d;

  --vnl-white: #ffffff;
  --vnl-surface: #ffffff;
  --vnl-surface-soft: #f8f8fc;
  --vnl-surface-muted: #f4f5fa;

  --vnl-gray-900: #111827;
  --vnl-gray-700: #374151;
  --vnl-gray-600: #4b5563;
  --vnl-gray-500: #6b7280;
  --vnl-gray-300: #d8dce8;
  --vnl-gray-200: #e5e7eb;
  --vnl-gray-100: #f3f4f6;

  --vnl-focus: #3d5af1;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
}

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

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

.site-bg {
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 45, 158, 0.32), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(61, 90, 241, 0.20), transparent 18%),
    linear-gradient(180deg, #130820 0%, #170b29 42%, #12081f 100%);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.25));
}

.page-glow {
  pointer-events: none;
  position: fixed;
  width: 15rem;
  height: 15rem;
  border-radius: 9999px;
  opacity: 0.42;
  filter: blur(58px);
}

.page-glow--one {
  top: -4rem;
  right: -2.5rem;
  background: rgba(107, 45, 158, 0.34);
}

.page-glow--two {
  bottom: 5rem;
  left: -4rem;
  background: rgba(61, 90, 241, 0.24);
}

.main-wrap {
  width: min(100%, 440px);
  max-width: 440px;
  margin: 0 auto;
  padding: 22px 14px 30px;
  box-sizing: border-box;
}

.main-wrap > * {
  min-width: 0;
}

.hero-stage {
  position: relative;
  padding-bottom: 18px;
}

.hero-header {
  position: relative;
  padding: 0 10px 50px;
}

.hero-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 87, 34, 0.05) 36%,
    rgba(255, 255, 255, 0.10) 68%,
    rgba(255, 255, 255, 0.16) 100%
  );
}

.hero-top {
  position: relative; /* needed for absolute switcher */
  display: flex;
  justify-content: center;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-copy-wrap {
  text-align: center;
}

.hero-logo {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  object-fit: contain;
}


.hero-welcome {
  margin: 0 0 6px;
  color: var(--vnl-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  
}

.hero-title {
  text-align: center;
  margin-top: 2px;
  color: #fff;
  font-family: "Oswald", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.6rem, 11vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.lang-switcher {
  position: absolute;
  top: 0;
  right: 0;

  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 9999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  overflow: hidden; /* important */
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 30px;
  height: 30px; /* slightly smaller so it fits inside */
  width: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 9999px;

  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: background 180ms ease, color 180ms ease;
}

.lang-switcher__btn.is-active {
  background: linear-gradient(135deg, var(--vnl-orange) 0%, var(--vnl-orange-bright) 100%);
  color: #fff;
  box-shadow: none; /* remove outer glow that visually crosses border */
}

.match-wrap {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.match-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 72%, rgba(255, 87, 34, 0.18), transparent 20%),
    radial-gradient(circle at 15% 20%, rgba(107, 45, 158, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(41, 24, 72, 0.98), rgba(19, 26, 56, 0.98));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.team-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.team-badge {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-flag {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 9999px;
}

.team-name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}

.match-center {
  min-width: 116px;
  text-align: center;
}

.match-vs {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.match-label {
  margin: 0;
  color: var(--vnl-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.match-date {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.match-time {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.match-venue {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.content-stack {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.content-stack > *,
.hero-top > *,
.match-card > *,
.stack > *,
.grid > * {
  min-width: 0;
}

.surface-card {
  width: 100%;
  max-width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 252, 0.98) 100%);
  color: var(--vnl-gray-900);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.section-label {
  display: inline-block;
  margin: 0;
  color: var(--vnl-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.section-title {
  margin: 5px 0 0;
  max-width: 320px;
  color: var(--vnl-gray-900);
  font-family: "Oswald", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 7vw, 40px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.96;
  text-transform: uppercase;
}

.quick-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.quick-rail::-webkit-scrollbar {
  display: none;
}

.quick-chip {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--vnl-gray-200);
  border-radius: 9999px;
  background: #fff;
  color: var(--vnl-gray-900);
  transition: all 200ms ease;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
}

.quick-chip:hover,
.quick-chip:focus-visible {
  transform: translateY(-2px);
  border-color: #ffd1c3;
  background: #fff7f3;
  color: var(--vnl-orange);
}

.quick-chip__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.quick-chip__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-chip__text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stack {
  display: grid;
  gap: 12px;
}

.game-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px;
}

.game-card--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 87, 34, 0.18), transparent 18%),
    radial-gradient(circle at 12% 100%, rgba(61, 90, 241, 0.14), transparent 26%);
}

.game-card--primary {
  background: linear-gradient(135deg, #2d1b4e 0%, #1b2458 100%);
  border: 1px solid #1b2458;
  color: #fff;
  box-shadow: 0 8px 20px rgba(45, 27, 78, 0.36);
}

.game-card--soon {
  border: 1px solid var(--vnl-gray-200);
  color: var(--vnl-gray-900);
  box-shadow: 0 0px 20px rgba(17, 24, 39, 0.16);
}


.game-body,
.game-action {
  position: relative;
  z-index: 1;
}

.game-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-kicker--warm {
  color: #ff9a7a;
}

.game-kicker--brand {
  color: var(--vnl-orange);
}

.game-title {
  margin: 0;
  font-family: "Oswald", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.game-text {
  margin: 10px 0 0;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.55;
}

.game-text--light {
  color: rgba(255, 255, 255, 0.82);
}

.game-text--dark {
  color: var(--vnl-gray-600);
}

.game-action {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 46px;
  height: 46px;
  padding: 10px 15px;
  border-radius: 9999px;
  font-size: 21px;
  font-weight: 800;
}

.game-action--light {
  background: rgba(255, 255, 255, 0.12);
}

.game-action--dark {
  background: var(--vnl-gray-100);
  color: var(--vnl-gray-900);
}

.sponsor-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 245, 255, 0.98) 100%);
}

.sponsor-logo {
  min-height: 150px;
  border: 1px solid #ececf2;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 87, 34, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff7f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.sponsor-logo-text {
  margin: 0;
  color: #151515;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background: linear-gradient(135deg, #2d1b4e 0%, #1b2458 100%);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 87, 34, 0.22);
  border-radius: 9999px;
  background: rgba(255, 87, 34, 0.12);
  color: #ffb298;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-title {
  margin: 14px 0 0;
  font-family: "Oswald", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.card-title--light {
  color: var(--vnl-white);
}

.card-text {
  margin: 10px 0 16px;
  max-width: 255px;
  font-size: 14px;
  line-height: 1.55;
}

.card-text--light {
  color: rgba(255, 255, 255, 0.82);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vnl-orange) 0%, var(--vnl-orange-bright) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 200ms ease;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.18);
}

.cta-btn:hover,
.cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255, 87, 34, 0.34);
}

.plain-card {
  padding: 18px;
  border: 1px solid var(--vnl-gray-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.social-copy {
  margin: 0 0 14px;
  color: var(--vnl-gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #ffffff;

  flex-shrink: 0;

  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* icon */
.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* hover */
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  background: #f9fafb;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--vnl-focus);
  outline-offset: 2px;
}

.footer {
  padding: 28px 4px 8px;
  text-align: center;
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 200ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
}

.footer-copy {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

@media (min-width: 640px) {
  .main-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 390px) {
  .match-card {
    padding: 18px 12px;
  }

  .team-badge {
    width: 60px;
    height: 60px;
  }

  .team-flag {
    width: 44px;
    height: 44px;
  }

  .match-center {
    min-width: 100px;
  }
}

@media (max-width: 520px) {
  .content-stack {
    gap: 12px;
  }

  .surface-card {
    padding: 14px;
    border-radius: 22px;
  }

    /* HERO STYLE SECTION */
  .surface-card--hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 20px 18px;

    /* kill white card look */
    background:
      radial-gradient(circle at 85% 20%, rgba(255, 87, 34, 0.18), transparent 25%),
      radial-gradient(circle at 10% 100%, rgba(61, 90, 241, 0.18), transparent 30%),
      linear-gradient(135deg, rgba(41, 24, 72, 0.98), rgba(19, 26, 56, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);

    color: #fff;
  }

  /* subtle hero glow overlay (like header) */
  .surface-card--hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 87, 34, 0.05) 40%,
      rgba(255, 255, 255, 0.12) 100%
    );
  }

  /* text adjustments */
  .section-label--hero {
    color: var(--vnl-orange);
  }

  .section-title--hero {
    color: #fff;
  }

  /* inner cards = glass instead of solid */
  .info-card--hero {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    box-shadow: none;
  }

  .section-title {
    max-width: none;
    font-size: 24px;
    line-height: 1;
  }

  .game-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .game-action {
    justify-self: start;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .game-text,
  .card-text {
    max-width: none;
  }

  .sponsor-logo {
    min-height: 120px;
    padding: 14px;
    border-radius: 18px;
  }

  .sponsor-logo-text {
    font-size: 22px;
  }

  .info-card,
  .plain-card {
    padding: 14px;
    border-radius: 20px;
  }

  .card-title {
    font-size: 22px;
  }

  .social-grid {
    gap: 0px;
  }

  .social-link {
    min-height: 46px;
    font-size: 13px;
  }
}


.quick-rail {
  max-width: 100%;
}
