:root {
  --bg: #070b12;
  --panel: rgba(17, 26, 40, .78);
  --border: rgba(130, 162, 205, .16);
  --text: #eef5ff;
  --muted: #8f9caf;
  --blue: #2478ff;
  --blue2: #6ea8ff;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(36,120,255,.24), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(79,70,229,.18), transparent 30%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
.page { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #0f4fc7);
  box-shadow: 0 16px 48px rgba(36,120,255,.36);
}
.logo-title { font-weight: 950; font-size: 24px; letter-spacing: -.05em; }
.logo-title span { color: var(--blue2); }
.logo-subtitle { color: var(--muted); font-size: 12px; margin-top: 2px; }
.status {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: #dbeafe;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
}

.content { position: relative; z-index: 2; padding-top: 80px; }
.kicker { color: var(--blue2); font-weight: 900; margin-bottom: 14px; }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -.075em;
}
.content p {
  max-width: 640px;
  margin: 26px 0 0;
  color: #c6d1df;
  line-height: 1.75;
  font-size: 18px;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
}
.primary { background: linear-gradient(135deg, #2d80ff, #1264df); color: white; }
.secondary { border: 1px solid var(--border); color: #dbeafe; background: rgba(255,255,255,.05); }

.preview-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17,26,40,.86), rgba(10,16,26,.88));
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  backdrop-filter: blur(20px);
}
.preview-top { display: flex; gap: 8px; margin-bottom: 28px; }
.preview-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); }
.game-row { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: center; }
.cover {
  height: 128px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(36,120,255,.8), transparent 40%),
    linear-gradient(135deg, #1e3a8a, #0f172a 70%);
}
.game-row strong { font-size: 22px; }
.game-row p { margin: 8px 0 0; color: var(--muted); line-height: 1.45; }
.progress { height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); margin: 28px 0 12px; overflow: hidden; }
.progress div { width: 68%; height: 100%; background: linear-gradient(90deg, var(--blue), #75b4ff); border-radius: inherit; }
.preview-card small { color: var(--muted); }

.glow { position: absolute; border-radius: 999px; filter: blur(34px); opacity: .45; }
.glow-one { width: 260px; height: 260px; right: 14%; top: 24%; background: var(--blue); }
.glow-two { width: 180px; height: 180px; right: 0; bottom: 18%; background: #7c3aed; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 64px;
}
.features article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--panel);
}
.features span { color: var(--blue2); font-weight: 950; }
.features h2 { margin: 12px 0 10px; }
.features p { margin: 0; color: var(--muted); line-height: 1.65; }
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer p { margin: 0; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 0 44px; gap: 28px; }
  .content { padding-top: 0; }
  .features { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .page { width: min(100% - 20px, 1180px); }
  .header { top: 16px; }
  .status { display: none; }
  h1 { font-size: 42px; }
  .content p { font-size: 16px; }
  .game-row { grid-template-columns: 1fr; }
  .cover { height: 180px; }
}
