:root {
  --bg: #06070a;
  --bg-soft: #0d1016;
  --panel: rgba(18, 20, 28, 0.88);
  --panel-2: rgba(10, 12, 18, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 215, 120, 0.22);
  --text: #f5f1e8;
  --muted: #b7b0a1;
  --gold: #f3c768;
  --gold-2: #d89b2b;
  --purple: #7f4dff;
  --purple-2: #511fcb;
  --green: #1db954;
  --orange: #ff6b2c;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(127, 77, 255, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 107, 44, 0.12), transparent 28%),
    radial-gradient(circle at bottom center, rgba(29, 185, 84, 0.1), transparent 22%),
    linear-gradient(180deg, #05060a 0%, #0a0d13 45%, #05060a 100%);
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}
.game-preview-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(18,20,28,.9), rgba(10,12,18,.96));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.game-preview-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.game-preview-copy h4 {
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.game-preview-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .game-preview-card {
    grid-template-columns: 1fr;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--gold);
  transition: 0.2s ease;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.site-nav a:hover {
  color: white;
  background: rgba(127,77,255,0.2);
  border-color: rgba(127,77,255,0.35);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}

/* HERO */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
  min-height: 90vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(127, 77, 255, 0.18), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 44, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(243,199,104,0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, rgba(127,77,255,0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 70%, rgba(243,199,104,0.35) 0 2px, transparent 3px);
  background-size: 240px 240px, 320px 320px, 260px 260px;
  animation: driftParticles 20s linear infinite;
  pointer-events: none;
}

@keyframes driftParticles {
  from { transform: translateY(0); }
  to { transform: translateY(-30px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(180deg, rgba(14, 16, 24, 0.92), rgba(10, 12, 19, 0.96));
  border: 1px solid rgba(243, 199, 104, 0.16);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.animated-panel {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(127,77,255,0.18), transparent 34%),
    radial-gradient(circle at 50% 75%, rgba(243,199,104,0.08), transparent 28%);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
  background:
    radial-gradient(circle at 50% 50%, rgba(127,77,255,0.20), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(243,199,104,0.08), transparent 30%),
    linear-gradient(180deg, rgba(14,16,24,0.92), rgba(10,12,19,0.96));
  border-radius: 28px;
  border: 1px solid rgba(243, 199, 104, 0.16);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-image {
  position: relative;
  z-index: 1;
  max-height: 700px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.45));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.eyebrow,
.section-kicker,
.book-label,
.ca-label,
.chart-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-copy h1 {
  margin: 8px 0 6px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.hero-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-text {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 48ch;
}

.hero-buttons,
.hero-token-links,
.trailer-cta-group,
.token-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons {
  margin-bottom: 18px;
}

.btn,
.realm-btn,
.token-link,
.community-card,
.copy-btn,
.soon-btn,
.chart-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: 0.2s ease;
  cursor: pointer;
  font-weight: 800;
}

.btn:hover,
.realm-btn:hover,
.token-link:hover,
.community-card:hover,
.copy-btn:hover,
.soon-btn:hover,
.chart-full-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
}

.btn-secondary,
.realm-btn,
.token-link,
.community-card,
.copy-btn,
.soon-btn,
.chart-full-btn {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-ca-box {
  margin-top: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.ca-row {
  margin: 10px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ca-short {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-token-links a {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  color: var(--gold);
}

.hero-token-links a:hover {
  background: rgba(127,77,255,0.18);
  color: white;
  border-color: rgba(127,77,255,0.35);
}

/* SECTIONS */
.section-block {
  padding: 68px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-heading p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}

/* CARDS */
.trailer-card,
.trailer-copy-card,
.token-card,
.book-card,
.shop-card,
.world-card,
.chart-panel,
.stats-panel {
  background: linear-gradient(180deg, rgba(18, 20, 28, 0.88), rgba(11, 13, 20, 0.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* TRAILER */
.trailer-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
  align-items: stretch;
}

.video-shell {
  padding: 16px;
}

.main-video {
  width: 100%;
  border-radius: 18px;
  background: #000;
}

.trailer-copy-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trailer-copy-card h4,
.token-card h4,
.book-card-body h4,
.shop-card-body h4,
.world-card-body h4,
.chart-panel h4,
.stats-panel h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--gold);
}

.trailer-copy-card p,
.token-card p,
.book-card-body p,
.shop-card-body p,
.world-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* BOOKS */
.books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.book-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243,199,104,0.24);
}

.book-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.book-card-body {
  padding: 16px;
}

/* WORLD */
.world-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.world-scroll::-webkit-scrollbar {
  height: 10px;
}

.world-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.world-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  flex: 0 0 auto;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.world-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243,199,104,0.24);
}

.world-media {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #000;
}

.world-card img,
.world-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-card-jungle img {
  animation: jungleDrift 10s ease-in-out infinite alternate;
}

.world-card-gorge img {
  animation: gorgePulse 8s ease-in-out infinite alternate;
}

@keyframes jungleDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.08) translateX(-10px); }
}

@keyframes gorgePulse {
  from { transform: scale(1.02) translateY(0); filter: saturate(1); }
  to { transform: scale(1.08) translateY(-6px); filter: saturate(1.15); }
}

.world-card-body {
  padding: 16px;
}

/* TOKEN */
.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.top-token-grid {
  margin-bottom: 22px;
}

.token-card {
  padding: 22px;
}

.token-ca-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* CHART DASHBOARD */
.chart-dashboard {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
}

.chart-panel {
  padding: 22px;
}

.chart-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.chart-timeframes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-timeframes span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 700;
}

.chart-timeframes span.active {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.fake-chart {
  position: relative;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.96), rgba(6, 8, 14, 0.98));
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 18px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 20%, 10% 100%;
  opacity: 0.35;
}

.chart-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 20%;
  bottom: 18%;
}

.chart-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0% 8%, rgba(0,0,0,0) 8%);
  clip-path: polygon(
    0% 80%, 6% 78%, 12% 62%, 18% 67%, 24% 54%, 30% 58%, 36% 50%, 42% 55%,
    48% 42%, 54% 46%, 60% 38%, 66% 44%, 72% 30%, 78% 36%, 84% 22%, 90% 28%,
    96% 16%, 100% 24%, 100% 100%, 0% 100%
  );
  background: linear-gradient(180deg, rgba(29,185,84,0.3), rgba(127,77,255,0.04));
}

.chart-line::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0% 80%, 6% 78%, 12% 62%, 18% 67%, 24% 54%, 30% 58%, 36% 50%, 42% 55%,
    48% 42%, 54% 46%, 60% 38%, 66% 44%, 72% 30%, 78% 36%, 84% 22%, 90% 28%,
    96% 16%, 100% 24%, 100% 26%, 96% 18%, 90% 30%, 84% 24%, 78% 38%, 72% 32%,
    66% 46%, 60% 40%, 54% 48%, 48% 44%, 42% 57%, 36% 52%, 30% 60%, 24% 56%,
    18% 69%, 12% 64%, 6% 80%, 0% 82%
  );
  background: linear-gradient(90deg, #2af598, #7f4dff, #f3c768);
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(127,77,255,0.35));
}

.chart-bars {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 12px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 90px;
}

.chart-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(29,185,84,0.9), rgba(29,185,84,0.3));
  animation: barBounce 3s ease-in-out infinite;
}

.chart-bars span:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255,107,44,0.9), rgba(255,107,44,0.3));
}

.chart-bars span:nth-child(1) { height: 20%; animation-delay: 0.1s; }
.chart-bars span:nth-child(2) { height: 35%; animation-delay: 0.2s; }
.chart-bars span:nth-child(3) { height: 28%; animation-delay: 0.3s; }
.chart-bars span:nth-child(4) { height: 44%; animation-delay: 0.4s; }
.chart-bars span:nth-child(5) { height: 30%; animation-delay: 0.5s; }
.chart-bars span:nth-child(6) { height: 54%; animation-delay: 0.6s; }
.chart-bars span:nth-child(7) { height: 38%; animation-delay: 0.7s; }
.chart-bars span:nth-child(8) { height: 62%; animation-delay: 0.8s; }
.chart-bars span:nth-child(9) { height: 42%; animation-delay: 0.9s; }
.chart-bars span:nth-child(10) { height: 72%; animation-delay: 1s; }
.chart-bars span:nth-child(11) { height: 52%; animation-delay: 1.1s; }
.chart-bars span:nth-child(12) { height: 66%; animation-delay: 1.2s; }

@keyframes barBounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

.chart-full-btn {
  width: 100%;
  border-radius: 16px;
  min-height: 54px;
  color: var(--gold);
}

.stats-panel {
  padding: 22px;
}

.stat-box {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  margin-bottom: 12px;
}

.stat-box span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.stat-box strong {
  font-size: 1rem;
  color: var(--text);
}

/* SHOP */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.shop-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243,199,104,0.24);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shop-card-body {
  padding: 16px;
}

/* COMMUNITY */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.community-card {
  min-height: 84px;
  border-radius: 22px;
  font-size: 1rem;
}

/* FOOTER */
.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .trailer-layout,
  .token-grid,
  .chart-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10, 12, 18, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.show-nav {
    display: flex;
  }

  .hero-copy,
  .hero-image-wrap,
  .trailer-copy-card,
  .token-card,
  .chart-panel,
  .stats-panel {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .books-grid,
  .shop-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-width: 84%;
    max-width: 84%;
  }

  .section-block {
    padding: 54px 0;
  }

  .container {
    width: min(100% - 20px, var(--max));
  }

  .chart-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .fake-chart {
    height: 280px;
  }
}
.hero-video{
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.clickable-stat {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

.clickable-stat {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.clickable-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(243,199,104,0.35);
  background: rgba(127,77,255,0.10);
  box-shadow: 0 14px 34px rgba(127,77,255,0.20);
}

.clickable-stat::after {
  content: "↗";
  float: right;
  color: var(--gold);
  opacity: 0.75;
}
.community-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 20% 30%, rgba(127,77,255,0.22), transparent 26%),
    radial-gradient(circle at 80% 70%, rgba(243,199,104,0.14), transparent 28%),
    linear-gradient(180deg, rgba(5,7,10,0.96), rgba(10,12,18,0.96));
}

.community-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(243,199,104,0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 30%, rgba(127,77,255,0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 75%, rgba(29,185,84,0.35) 0 2px, transparent 3px);
  background-size: 240px 240px, 320px 320px, 280px 280px;
  opacity: 0.32;
  animation: driftParticles 22s linear infinite;
}

.community-hero {
  position: relative;
  z-index: 1;
  text-align: center;
}

.community-hero h3 {
  margin: 10px 0 12px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.community-hero p {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.community-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.community-big-card {
  min-height: 170px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(18,20,28,0.86), rgba(9,11,17,0.96));
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.community-big-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(243,199,104,0.22), transparent 45%);
  opacity: 0;
  transition: 0.25s ease;
}

.community-big-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243,199,104,0.35);
}

.community-big-card:hover::before {
  opacity: 1;
}

.social-icon,
.community-big-card strong,
.community-big-card small {
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
}

.community-big-card strong {
  color: white;
  font-size: 1.2rem;
}

.community-big-card small {
  color: var(--muted);
}

.telegram-card:hover {
  box-shadow: 0 22px 55px rgba(38, 166, 255, 0.18);
}

.x-card:hover {
  box-shadow: 0 22px 55px rgba(255,255,255,0.12);
}

.trailer-card-link:hover {
  box-shadow: 0 22px 55px rgba(243,199,104,0.18);
}

@media (max-width: 768px) {
  .community-actions {
    grid-template-columns: 1fr;
  }

  .community-section {
    padding: 70px 0;
  }
}
.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 22px;
  filter: brightness(0.82) contrast(1.08) saturate(1.08);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}

.hero-image-wrap {
  padding: 12px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .hero-video {
    min-height: 360px;
  }
}
@media (max-width: 768px) {
  .books-grid,
  .shop-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .book-card,
  .shop-card {
    min-width: 78%;
    max-width: 78%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .book-card img {
    max-height: 360px;
    object-fit: cover;
  }

  .shop-card img {
    max-height: 260px;
    object-fit: cover;
  }

  .books-grid::-webkit-scrollbar,
  .shop-grid::-webkit-scrollbar {
    height: 8px;
  }

  .books-grid::-webkit-scrollbar-thumb,
  .shop-grid::-webkit-scrollbar-thumb {
    background: rgba(243,199,104,0.35);
    border-radius: 999px;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,199,104,0.22), rgba(127,77,255,0.12));
    border: 1px solid rgba(243,199,104,0.35);
    color: var(--gold);
    box-shadow: 0 0 22px rgba(243,199,104,0.18);
  }

  .site-nav {
    top: 88px;
    left: 18px;
    right: 18px;
    padding: 18px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 20% 20%, rgba(127,77,255,0.22), transparent 32%),
      linear-gradient(180deg, rgba(12,14,22,0.96), rgba(6,7,11,0.98));
    border: 1px solid rgba(243,199,104,0.18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
    animation: menuDrop 0.25s ease;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
  }

  .site-nav a:hover {
    background: rgba(243,199,104,0.12);
    color: white;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .hero-image-wrap {
    order: 1;
    margin-bottom: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .hero-video {
    width: 100%;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
  }

  .hero-copy,
  .hero-content,
  .hero-text {
    order: 2;
  }
}
.hero-video{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
  cursor:pointer;
}
@media (max-width: 768px) {
  .hero-copy {
    text-align: center;
    gap: 14px;
  }

  .hero-text {
    order: 3;
    margin: 0 auto 10px;
  }

  .hero-buttons {
    order: 4;
    justify-content: center;
  }

  .hero-ca-box {
    order: 5;
    margin-top: 8px;
  }

  .hero-token-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-token-links a {
    width: 100%;
    justify-content: center;
  }

  .ca-row {
    justify-content: center;
  }
}
@media (max-width: 768px) {

  .site-footer {
    padding: 26px 18px 34px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    background:
      radial-gradient(circle at 50% 0%, rgba(127,77,255,0.18), transparent 35%),
      linear-gradient(180deg, rgba(8,10,16,0.96), rgba(5,6,10,0.98));
  }

  .footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 700;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-links a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    background: rgba(243,199,104,0.10);
    border-color: rgba(243,199,104,0.25);
  }
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(circle at center, rgba(127,77,255,0.22), transparent 35%),
    linear-gradient(180deg, #05060a, #0a0d13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader img {
  width: 120px;
  height: auto;
  margin-bottom: 18px;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader h1 {
  margin: 0;
  color: var(--gold);
  font-size: 2.8rem;
  letter-spacing: 0.12em;
}

.loader p {
  color: var(--muted);
  margin-top: 8px;
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(243,199,104,0.25));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 26px rgba(127,77,255,0.5));
  }
}
.mute-toggle{
  position:absolute;
  top:18px;
  right:18px;
  z-index:5;
}
.disabled-btn {
  opacity: 0.75;
  pointer-events: none;
  cursor: default;
}
/* SOCIAL ICONS */
.social-icons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:22px;
}

.social-icons a{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  color:#f3c768;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  font-size:1.25rem;
  transition:all 0.22s ease;
  box-shadow:0 8px 18px rgba(0,0,0,0.22);
}

.social-icons a:hover{
  transform:translateY(-4px) scale(1.08);
  background:rgba(243,199,104,0.14);
  border-color:rgba(243,199,104,0.35);
  box-shadow:0 14px 24px rgba(243,199,104,0.12);
}

.social-icons a:active{
  transform:scale(0.96);
}

@media (max-width:768px){
  .social-icons{
    gap:12px;
  }

  .social-icons a{
    width:48px;
    height:48px;
    font-size:1.15rem;
  }
}
/* HOW TO BUY */
.how-buy-video{
  margin-bottom:28px;
}

.how-buy-video video{
  width:100%;
  display:block;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 24px 60px rgba(0,0,0,0.32);
}

.buy-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.buy-step{
  background:linear-gradient(180deg, rgba(18,20,28,0.92), rgba(10,12,18,0.98));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:18px;
  box-shadow:0 16px 40px rgba(0,0,0,0.28);
}

.buy-step span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,#f3c768,#d89b2b);
  color:#111;
  font-weight:900;
  margin-bottom:12px;
}

.buy-step h4{
  margin:0 0 8px;
  color:#f3c768;
}

.buy-step p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

@media (max-width:1100px){
  .buy-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .buy-steps{
    grid-template-columns:1fr;
  }

  .buy-step{
    padding:16px;
  }
}
@media (max-width: 768px) {
  #how-to-buy .section-heading {
    text-align: center;
  }

  .buy-steps {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }

  .buy-step {
    min-width: 82%;
    flex: 0 0 auto;
    scroll-snap-align: center;
    padding: 20px;
    border-radius: 24px;
  }

  .buy-step span {
    margin: 0 auto 14px;
  }

  .buy-step h4,
  .buy-step p {
    text-align: center;
  }

  .buy-steps::-webkit-scrollbar {
    height: 8px;
  }

  .buy-steps::-webkit-scrollbar-thumb {
    background: rgba(243,199,104,0.35);
    border-radius: 999px;
  }
}
#how-to-buy img,
#how-to-buy video,
#how-to-buy .buy-banner {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  margin: 0 auto 24px;
}