:root {
  --bg: #0b0f14;
  --panel: rgba(255,255,255,0.03);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);

  /* IMAGE MATCHED TEAL */
  --teal: #2fe4da;
  --teal-dark: #1ecad0;

  --max: 1100px;
}

* { box-sizing: border-box }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, #070a0f, #0a0f16 40%, #070a0f);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,7,10,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 20px;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-list a {
  color: rgba(255,255,255,0.75);
}

.nav-list a.is-active {
  color: var(--teal);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 380px at 50% 35%, rgba(47,228,218,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.75)),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 18px;
  display: flex;
  justify-content: center;
}

.hero-players {
  width: 100%;
  max-width: 920px;
  height: 420px;
  background: url("../images/hero-players.png") center bottom / contain no-repeat;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

.hero-cta {
  position: absolute;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ================= CTA BUTTON ================= */

.btn-primary {
  width: 260px;
  height: 64px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* COMING SOON — IMAGE MATCHED TEAL */
.hero .btn-primary[aria-disabled="true"] {
  background: linear-gradient(
    90deg,
    var(--teal-dark),
    var(--teal)
  );

  box-shadow: 0 14px 34px rgba(47, 228, 218, 0.45);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;

  opacity: 1;
  cursor: default;
}

/* subtle glow like mockup */
@keyframes softPulse {
  0%   { box-shadow: 0 0 0 rgba(47,228,218,0); }
  50%  { box-shadow: 0 0 28px rgba(47,228,218,0.45); }
  100% { box-shadow: 0 0 0 rgba(47,228,218,0); }
}

.hero .btn-primary[aria-disabled="true"] {
  animation: softPulse 3.5s ease-in-out infinite;
}

/* ================= STORE BADGE ================= */

.store-row {
  display: flex;
  justify-content: center;
}

.store-badge {
  width: 180px;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ================= SECTIONS ================= */

.section {
  padding: 46px 0;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.section-title {
  font-size: 14px;
  letter-spacing: 1.6px;
}

/* ================= FEATURES ================= */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--panel);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.feature-icon {
  font-size: 30px;
  color: var(--teal);
}

.feature-label {
  margin-top: 10px;
  font-weight: 800;
  color: var(--teal);
}

/* ================= NEWS ================= */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  overflow: hidden;
}

.news-thumb {
  height: 110px;
  background-size: cover;
}

.news-body {
  padding: 14px;
}

.news-title {
  font-weight: 900;
}

.news-excerpt {
  font-size: 12px;
  color: var(--muted);
}

/* ================= FOOTER ================= */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  text-align: center;
  font-size: 12px;
}

/* ================= MOBILE ================= */

@media (max-width: 860px) {
  .features,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-players {
    height: 320px;
  }
}
