:root {
  --bg: #070b14;
  --bg-2: #0b1223;
  --card: rgba(16, 24, 42, 0.78);
  --card-strong: rgba(20, 30, 52, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #aab3c6;
  --muted-2: #758199;
  --red: #ff263d;
  --red-2: #b41127;
  --blue: #178bff;
  --orange: #ff8a1f;
  --green: #41d37a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 38, 61, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(23, 139, 255, 0.22), transparent 34rem),
    linear-gradient(180deg, #070912 0%, #07101f 48%, #070b14 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 10, 19, 0.74);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(6, 10, 19, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}
.brand img,
.footer-brand img {
  filter: drop-shadow(0 8px 20px rgba(255, 38, 61, 0.28));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--muted);
  font-weight: 700;
  padding: 12px 15px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}
.main-nav .nav-pill {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
}

.section { padding: 90px 0; position: relative; }
.hero { padding: 100px 0 80px; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.16em;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 26px;
  text-wrap: balance;
}
h1 span {
  background: linear-gradient(135deg, var(--red) 0%, #ff6171 38%, #ffffff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}
.hero-text,
.section-heading p,
.studio-copy p,
.support-card p,
.game-content p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-text {
  font-size: 1.16rem;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}
.button:hover,
.store-button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, #ff263d, #b41127);
  box-shadow: 0 18px 42px rgba(255, 38, 61, 0.28);
}
.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span,
.meta-row span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.glow-ring {
  position: absolute;
  width: min(88vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 48%),
    conic-gradient(from 220deg, rgba(255,38,61,0.1), rgba(255,38,61,0.95), rgba(23,139,255,0.95), rgba(23,139,255,0.12), rgba(255,38,61,0.1));
  box-shadow: 0 0 80px rgba(255, 38, 61, 0.22), 0 0 110px rgba(23, 139, 255, 0.18);
  animation: slow-spin 12s linear infinite;
}
.logo-orb {
  position: relative;
  width: min(64vw, 300px);
  aspect-ratio: 1;
  border-radius: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: rotate(-6deg);
}
.logo-orb img { width: 74%; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.42)); }
.energy-line {
  position: absolute;
  height: 2px;
  width: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,38,61,0.85), transparent);
  filter: blur(0.3px);
}
.line-a { transform: translate(-210px, -170px) rotate(20deg); }
.line-b { transform: translate(230px, 130px) rotate(-18deg); background: linear-gradient(90deg, transparent, rgba(23,139,255,0.85), transparent); }
.line-c { transform: translate(-150px, 205px) rotate(-9deg); width: 160px; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.game-card,
.support-card,
.stats-panel,
.studio-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.game-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: radial-gradient(circle at top right, var(--accent, var(--red)), transparent 24rem);
}
.live-card { --accent: var(--blue); }
.coming-card { --accent: var(--orange); }
.status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 0.82rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.status.live { color: #072313; background: #8ff0b1; }
.status.upcoming { color: #381700; background: #ffb15d; }
.game-art {
  position: relative;
  min-height: 270px;
  background: rgba(0,0,0,0.28);
  overflow: hidden;
}
.game-art img { width: 100%; height: 100%; object-fit: cover; }
.game-content {
  position: relative;
  z-index: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.game-kicker {
  color: var(--red) !important;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 22px;
}
.store-button {
  width: fit-content;
  margin-top: auto;
  color: var(--text);
  border: 1px solid rgba(23, 139, 255, 0.5);
  background: linear-gradient(135deg, rgba(23,139,255,0.23), rgba(255,255,255,0.04));
}
.coming-card .store-button {
  border-color: rgba(255, 138, 31, 0.5);
  background: linear-gradient(135deg, rgba(255,138,31,0.24), rgba(255,255,255,0.04));
}
.store-button.disabled { cursor: default; }
.store-button.disabled:hover { transform: none; }
.play-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  font-size: 0.75rem;
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.studio-copy { padding: 34px; }
.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.stats-panel div {
  padding: 34px;
  background: rgba(10, 16, 30, 0.86);
}
.stats-panel strong {
  display: block;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.07em;
}
.stats-panel span { color: var(--muted); font-weight: 700; }

.support-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
}
.support-actions {
  display: grid;
  gap: 14px;
}
.contact-tile {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}
.contact-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 38, 61, 0.44);
  background: rgba(255,255,255,0.07);
}
.contact-tile span {
  display: block;
  color: var(--muted-2);
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-tile strong { word-break: break-word; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 16, 0.72);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-grid p {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--muted);
  font-weight: 700;
}
.footer-links a:hover { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 13, 25, 0.96);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { border-radius: 14px; }
  .main-nav .nav-pill { margin-left: 0; text-align: center; }
  .hero-grid,
  .games-grid,
  .studio-grid,
  .support-card {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 70px; }
  .hero-visual { min-height: 380px; order: -1; }
  .glow-ring { width: min(82vw, 360px); }
  .logo-orb { width: min(56vw, 240px); border-radius: 32px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 66px; }
  .brand span { font-size: 1rem; }
  .section { padding: 64px 0; }
  .hero { padding-top: 54px; }
  .hero-actions .button,
  .store-button { width: 100%; }
  .game-art { min-height: 210px; }
  .game-content,
  .studio-copy,
  .support-card { padding: 22px; }
  .stats-panel { grid-template-columns: 1fr; }
  .stats-panel div { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Real game artwork styles for game cards and media section */
.game-art {
  height: 310px;
  min-height: 0;
}
.ice-art img {
  object-fit: cover;
}
.road-art {
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 28% 35%, rgba(23,139,255,0.28), transparent 42%),
    radial-gradient(circle at 76% 72%, rgba(255,138,31,0.22), transparent 45%),
    linear-gradient(145deg, rgba(4,8,16,0.58), rgba(13,21,38,0.95));
}
.road-art img {
  width: 96%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.55));
}
.media-section {
  padding-top: 10px;
}
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  gap: 22px;
}
.media-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}
.media-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(23,139,255,0.26), transparent 26rem);
  pointer-events: none;
  z-index: 1;
}
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-logo-tile {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at center, rgba(40, 179, 255, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}
.media-logo-tile img {
  width: min(88%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,0.36));
}
.media-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(5, 10, 20, 0.72);
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .game-art { height: 230px; }
  .media-tile { min-height: 220px; }
  .media-logo-tile { min-height: 260px; }
}
