 :root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card-bg: #111827;
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.15);
  --accent-strong: #a855f7;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.2);
  --danger: #f97373;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #111827 0, var(--bg) 40%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.75rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-image {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-block;
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.08s ease,
    box-shadow 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #f9fafb;
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.7);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--border-subtle);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.3);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

.full-width {
  width: 100%;
}

/* Hero */

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.8rem;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.2rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.pill-large {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  border-radius: 26px;
  padding: 1.4rem 1.3rem 1.5rem;
  background: radial-gradient(circle at top left, #1d2437 0, var(--card-bg) 35%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.status-dot.live {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.status-text {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card-body {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #111827 0, #020617 40%);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section h2 {
  font-size: 1.6rem;
  margin: 0;
}

.section-lead {
  color: var(--muted);
  max-width: 34rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.card {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.7);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
}

/* Schedule */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.schedule-item {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.9rem;
}

.schedule-item h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

/* Games / content */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

/* Featured game */

.game-feature-card {
  margin-top: 1rem;
}

.game-feature-inner {
  border-radius: 26px;
  padding: 2rem 1.75rem;
  background: radial-gradient(circle at top left, #1d2437 0, var(--card-bg) 35%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.game-feature-content h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}

.game-feature-content p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.game-feature-content .btn {
  margin-top: 0.25rem;
}

/* Twitch embed */

.twitch-embed-wrapper {
  margin-top: 1.4rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #000;
  box-shadow: var(--shadow-soft);
}

#twitch-embed iframe {
  display: block;
}

.centered-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* Links / community */

.link-card h3 {
  margin-top: 0;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}

.link-list li + li {
  margin-top: 0.3rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.2rem 0 1.6rem;
  background: #020617;
  margin-top: 1.4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-note a {
  color: var(--accent-strong);
}

/* Responsive */

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 4.2rem;
  }

  .header-cta {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .container {
    padding: 0 1.1rem;
  }
}

