:root {
  --bg: #07122e;
  --bg-2: #0c1f46;
  --ink: #f5f8ff;
  --muted: #b7c5e6;
  --accent: #f7b233;
  --accent-2: #ff4d5e;
  --accent-3: #2d8cff;
  --card: #0f214a;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 60px rgba(4, 10, 28, 0.6);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Trebuchet MS", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  font-size: 1rem;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(45, 140, 255, 0.22), transparent 55%),
    radial-gradient(circle at 82% 10%, rgba(255, 77, 94, 0.2), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(247, 178, 51, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(7, 18, 46, 0.9), rgba(10, 25, 56, 0.98));
  z-index: -2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 18px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(7, 18, 46, 0.68);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Avenir Next", "Avenir", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(5, 11, 30, 0.55);
  background: rgba(15, 33, 74, 0.8);
  object-fit: cover;
}

.logo-wordmark {
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #1a1a1a;
  box-shadow: 0 14px 28px rgba(247, 178, 51, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding: 70px 0 90px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--accent-3);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  margin: 0 0 18px;
  line-height: 1.05;
}

.lede {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(10, 20, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(4, 10, 28, 0.35);
  max-width: 220px;
}

.store-badge svg {
  width: 26px;
  height: 26px;
  display: block;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge-top {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.store-badge-main {
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(15, 33, 74, 0.85);
  border: 1px solid var(--stroke);
  padding: 12px 18px;
  border-radius: 14px;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px solid rgba(247, 178, 51, 0.5);
  box-shadow: 0 0 40px rgba(247, 178, 51, 0.25);
  transform: rotate(14deg);
  animation: spin 24s linear infinite;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 94, 0.45);
  transform: rotate(-10deg);
}

.hero-logo-wrap {
  position: relative;
  padding: 20px;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), rgba(11, 24, 60, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(320px, 70vw);
  max-width: 360px;
  border-radius: 26px;
  display: block;
}

.trump {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: rgba(45, 140, 255, 0.2);
  border: 1px solid rgba(45, 140, 255, 0.35);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.panel,
.features,
.guide,
.rules,
.faq {
  margin: 70px 0;
}

.panel-head {
  max-width: 600px;
  margin-bottom: 30px;
}

.panel-head p {
  color: var(--muted);
  line-height: 1.6;
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.play-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.play-card p {
  color: var(--muted);
  line-height: 1.5;
}

.link {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 600;
}

.embed {
  margin-top: 28px;
  background: linear-gradient(140deg, rgba(12, 25, 56, 0.85), rgba(16, 35, 78, 0.95));
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 28px;
}

.embed-inner {
  text-align: center;
  padding: 40px 12px;
}

.embed-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.embed-copy {
  color: var(--muted);
  margin-bottom: 16px;
}

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

.guide-body {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.guide-body p {
  color: var(--muted);
  line-height: 1.7;
}

.guide-body a {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 600;
}

.guide-body a:hover {
  text-decoration: underline;
}


.feature {
  background: rgba(16, 35, 78, 0.85);
  border: 1px solid var(--stroke);
  padding: 20px;
  border-radius: 16px;
}

.feature p {
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.split-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.mode-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.mode-list li {
  padding: 12px 16px;
  background: rgba(16, 35, 78, 0.8);
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.split-card {
  background: linear-gradient(150deg, rgba(247, 178, 51, 0.18), rgba(45, 140, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rules .rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rule {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(16, 35, 78, 0.75);
  color: var(--muted);
  line-height: 1.6;
}

.rule-step {
  display: inline-block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.community {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.community-card {
  background: linear-gradient(140deg, rgba(45, 140, 255, 0.18), rgba(247, 178, 51, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  border-radius: var(--radius);
}

.community-card p {
  color: var(--muted);
  line-height: 1.6;
}

.community-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.community-stats {
  display: grid;
  gap: 14px;
}

.community-stats div {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(16, 35, 78, 0.7);
}

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

.faq-item {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(16, 35, 78, 0.75);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 6vw 60px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.8s ease forwards;
}

[data-reveal]:nth-of-type(1) {
  animation-delay: 0.1s;
}

[data-reveal]:nth-of-type(2) {
  animation-delay: 0.2s;
}

[data-reveal]:nth-of-type(3) {
  animation-delay: 0.3s;
}

[data-reveal]:nth-of-type(4) {
  animation-delay: 0.4s;
}

[data-reveal]:nth-of-type(5) {
  animation-delay: 0.5s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .play-grid,
  .feature-grid,
  .rules .rule-grid,
  .faq-grid,
  .community {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero-orbit {
    width: 280px;
    height: 280px;
  }
}


@media (min-width: 1200px) {
  body {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .community-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}
