:root {
  --bg: #050505;
  --bg-elev: #0c0c0c;
  --ink: #f2f2f2;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.1);
  --red: #e10600;
  --red-soft: rgba(225, 6, 0, 0.35);
  --red-glow: rgba(225, 6, 0, 0.18);
  --ok: #c8c8c8;
  --radius: 2px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, var(--red-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(225, 6, 0, 0.08), transparent 45%),
    linear-gradient(180deg, #080808 0%, var(--bg) 40%, #030303 100%);
  animation: atmosphere-shift 14s ease-in-out infinite alternate;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.35) 3px
  );
}

@keyframes atmosphere-shift {
  from {
    filter: hue-rotate(0deg) brightness(1);
  }
  to {
    filter: hue-rotate(-6deg) brightness(1.05);
  }
}

.top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 0.04em;
  line-height: 1;
  animation: brand-in 0.8s ease-out both;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 0.8rem/1 var(--font-body);
  letter-spacing: 0.08em;
  padding: 0.65rem 0.85rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang button.is-active {
  color: var(--ink);
  background: rgba(225, 6, 0, 0.2);
}

.lang button:hover {
  color: var(--ink);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.hero {
  min-height: min(72vh, 40rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0 2.5rem;
  animation: hero-in 0.9s ease-out 0.1s both;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
  max-width: 14ch;
}

.hero h1 span {
  display: block;
}

.hero .accent {
  color: var(--red);
  margin-top: 0.15em;
}

.sub {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 400;
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.6rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 transparent;
}

.cta:hover {
  background: #ff1a12;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--red-soft);
}

.cta:active {
  transform: translateY(0);
}

.cta-note {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ok);
}

.sports {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  animation: sports-in 0.9s ease-out 0.25s both;
}

.sports-head {
  margin: 1.75rem 0 1.25rem;
}

.sports-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.sports-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 36rem;
}

.sports-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .sports-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

.sport {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 7.5rem;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 55%),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

a.sport {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a.sport:hover {
  border-color: rgba(225, 6, 0, 0.55);
  background: linear-gradient(145deg, rgba(225, 6, 0, 0.12), transparent 60%),
    #101010;
  transform: translateY(-2px);
}

a.sport:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.sport.is-soon {
  opacity: 0.55;
  cursor: not-allowed;
}

.sport-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sport-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.sport-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  color: var(--muted);
}

.sport.is-live .sport-status {
  color: #fff;
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.25);
}

.sport-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28rem;
  padding-right: 2rem;
}

.sport-arrow {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  font-size: 1.35rem;
  color: var(--red);
  transition: transform 0.2s ease;
}

a.sport:hover .sport-arrow {
  transform: translateX(4px);
}

.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.foot img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
}

.foot p {
  margin: 0;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sports-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere,
  .brand,
  .hero,
  .sports,
  .cta,
  a.sport,
  .sport-arrow {
    animation: none !important;
    transition: none !important;
  }
}
