:root {
  --bg: #070b14;
  --surface: rgba(16, 24, 42, 0.72);
  --surface-solid: #111a2c;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f9ff;
  --muted: #8f9bb2;
  --green: #54ef9b;
  --green-bright: #7bffb5;
  --purple: #8667ff;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 76% 48%, rgba(96, 68, 213, 0.14), transparent 30%),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto, auto;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.65;
  pointer-events: none;
}

.ambient-one {
  top: -210px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(83, 239, 155, 0.17), transparent 69%);
}

.ambient-two {
  right: -280px;
  bottom: -280px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(126, 91, 255, 0.2), transparent 67%);
}

.site-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand > span:last-child > span {
  color: var(--green);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 96, 72, 0.42);
  border-radius: 50%;
  background: #ff6048;
  box-shadow: 0 0 20px rgba(255, 96, 72, 0.16);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b7c0d2;
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(84, 239, 155, 0.8);
}

.status-dot::before {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(84, 239, 155, 0.25);
  border-radius: inherit;
  content: "";
}

main {
  display: block;
  flex: 1;
  padding: 66px 0 58px;
}

.hero {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.82fr);
  gap: clamp(56px, 8vw, 108px);
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(84, 239, 155, 0.18);
  border-radius: 999px;
  color: var(--green-bright);
  background: rgba(84, 239, 155, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  fill: currentColor;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--green) 0%, #78e6d4 58%, #9c87ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 570px;
  margin: 27px 0 25px;
  color: #a1acc0;
  font-size: 17px;
  line-height: 1.72;
}

.destination {
  display: flex;
  max-width: 540px;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.destination-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #b6a7ff;
  background: rgba(134, 103, 255, 0.12);
}

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

.destination > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.destination small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.destination em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  color: #06110b;
  background: linear-gradient(135deg, #71f6aa, #45df8b);
  box-shadow: 0 12px 35px rgba(68, 220, 137, 0.18);
  text-decoration: none;
}

.primary-button svg {
  width: 19px;
  fill: currentColor;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(68, 220, 137, 0.26);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: #aab4c7;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.download-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(84, 239, 155, 0.35);
  outline-offset: 4px;
}

.fine-print {
  max-width: 535px;
  margin: 18px 0 0;
  color: #616c81;
  font-size: 10px;
  line-height: 1.6;
}

.fine-print a {
  color: #8bf3bb;
  font-weight: 700;
  text-decoration: none;
}

.guide,
.faq {
  margin-top: clamp(58px, 9vw, 104px);
}

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

.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2,
h3 {
  margin: 0;
  font-weight: 800;
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: #a1acc0;
  font-size: 15px;
  line-height: 1.72;
}

.facts-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fact-item {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.fact-item span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-item strong {
  color: #dce5f4;
  font-size: 14px;
  line-height: 1.45;
}

.topic-links {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.topic-links a,
.related-links a {
  display: grid;
  gap: 9px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.topic-links a:hover,
.related-links a:hover {
  border-color: rgba(84, 239, 155, 0.32);
  background: rgba(84, 239, 155, 0.045);
  transform: translateY(-1px);
}

.topic-links span,
.related-links span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topic-links strong,
.related-links strong {
  color: #dce5f4;
  font-size: 13px;
  line-height: 1.45;
}

.page-hero {
  max-width: 840px;
  padding: 34px 0 28px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
}

.page-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #a1acc0;
  font-size: 17px;
  line-height: 1.72;
}

.article-content {
  display: grid;
  max-width: 920px;
  gap: 30px;
  margin-top: 26px;
}

.article-content section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-content h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.article-content h3 {
  margin-top: 18px;
  color: #f5f8ff;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.article-content p,
.article-content li {
  color: #a6b0c2;
  font-size: 15px;
  line-height: 1.78;
}

.article-content p {
  margin: 14px 0 0;
}

.article-content ul,
.article-content ol {
  margin: 14px 0 0;
  padding-left: 21px;
}

.article-content li + li {
  margin-top: 8px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.note-box {
  padding: 18px;
  border: 1px solid rgba(84, 239, 155, 0.18);
  border-radius: 8px;
  color: #b9c5d8;
  background: rgba(84, 239, 155, 0.055);
  font-size: 14px;
  line-height: 1.7;
}

.guide-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
}

.guide-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.guide-block h3 {
  color: #f5f8ff;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.guide-block p,
.guide-block li,
.faq details p {
  color: #a6b0c2;
  font-size: 14px;
  line-height: 1.75;
}

.guide-block p {
  margin: 14px 0 0;
}

.guide-block ul {
  margin: 14px 0 0;
  padding-left: 19px;
}

.guide-block li + li {
  margin-top: 7px;
}

.download-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 11px;
  color: #07110c;
  background: linear-gradient(135deg, #71f6aa, #45df8b);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  margin-top: 28px;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.faq summary {
  min-height: 58px;
  padding: 18px 20px;
  color: #eef3ff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  margin: 0;
  padding: 0 20px 19px;
}

.match-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20, 29, 49, 0.95), rgba(11, 17, 30, 0.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.match-panel::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

.panel-glow {
  position: absolute;
  top: -170px;
  right: -80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 239, 155, 0.14), transparent 68%);
  pointer-events: none;
}

.panel-topbar,
.score-card,
.fixture-list,
.security-note {
  position: relative;
  z-index: 1;
}

.panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 14px;
  font-weight: 700;
}

.preview-badge {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #79859a;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.score-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(7, 12, 23, 0.64);
}

.league-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7c879b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  margin: 24px 0 21px;
}

.team {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.team-badge {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.team-badge-purple {
  color: #b9a8ff;
  background: linear-gradient(145deg, rgba(133, 103, 255, 0.32), rgba(133, 103, 255, 0.09));
}

.team-badge-green {
  color: #8affbd;
  background: linear-gradient(145deg, rgba(84, 239, 155, 0.29), rgba(84, 239, 155, 0.07));
}

.team strong {
  font-size: 12px;
  font-weight: 700;
}

.team small,
.kickoff span {
  color: #667287;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.kickoff {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.kickoff strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.kickoff span {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-row {
  display: grid;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stats-row > span {
  display: grid;
  gap: 4px;
}

.stats-row > span + span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-row small {
  color: #667287;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-row strong {
  color: #c2cad8;
  font-size: 10px;
  font-weight: 600;
}

.fixture-list {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.fixture {
  display: grid;
  min-height: 56px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
  grid-template-columns: auto 1fr auto;
  gap: 12px;
}

.fixture-sport {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #8b75ef;
  background: rgba(134, 103, 255, 0.1);
}

.fixture-sport.ball {
  color: #54d796;
  background: rgba(84, 239, 155, 0.08);
}

.fixture-sport svg {
  width: 14px;
  fill: currentColor;
}

.fixture-names {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}

.fixture-names strong {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixture-names small {
  color: #566176;
  font-size: 8px;
}

.fixture time {
  color: #818da2;
  font-size: 10px;
  font-weight: 600;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.security-note svg {
  width: 22px;
  fill: var(--green);
}

.security-note span {
  display: grid;
  gap: 3px;
}

.security-note strong {
  font-size: 10px;
  font-weight: 700;
}

.security-note small {
  color: #667287;
  font-size: 9px;
}

footer {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: #596477;
  font-size: 10px;
  font-weight: 500;
}

.footer-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3f495c;
}

.noscript-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #dce2ed;
  background: #182034;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 920px) {
  .site-shell {
    width: min(680px, calc(100% - 40px));
  }

  main {
    padding: 52px 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .hero-copy,
  .match-panel {
    min-width: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .match-panel {
    width: min(480px, 100%);
  }

  .facts-grid,
  .topic-links,
  .related-links,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 82px;
  }

  .header-status {
    font-size: 0;
  }

  main {
    padding: 42px 0;
  }

  h1 {
    font-size: clamp(39px, 10.8vw, 46px);
  }

  .hero-description {
    font-size: 15px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .facts-grid,
  .topic-links,
  .related-links,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide,
  .faq {
    margin-top: 58px;
  }

  .destination strong {
    font-size: 12px;
  }

  .destination em {
    display: block;
    margin-top: 3px;
  }

  .match-panel {
    padding: 18px;
    border-radius: 21px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row > span + span {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .footer-separator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
