:root {
  --peach: #FF9A86;
  --rose: #FFB399;
  --gold: #FFD6A6;
  --cream: #FFF0BE;
  --accent-text: #F4E7E1;
  --bg: #100f17;
  --panel: rgba(255, 240, 190, 0.08);
  --panel-strong: rgba(255, 179, 153, 0.14);
  --line: rgba(244, 231, 225, 0.18);
  --text: #fff7f1;
  --muted: rgba(244, 231, 225, 0.74);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 154, 134, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(255, 214, 166, 0.18), transparent 25rem),
    radial-gradient(circle at 50% 95%, rgba(123, 231, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #0b0a11 0%, #17121b 46%, #23161c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.35) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.24) 25%, transparent 25%);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(1120px, calc(100% - 28px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16, 15, 23, 0.62);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  background: rgba(16, 15, 23, 0.86);
  border-color: rgba(255, 214, 166, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #1b1013;
  background: linear-gradient(135deg, var(--peach), var(--cream));
  box-shadow: 0 0 28px rgba(255, 154, 134, 0.45);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  color: #201016;
  background: linear-gradient(135deg, var(--peach), var(--cream));
  box-shadow: 0 0 22px rgba(255, 179, 153, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--accent-text);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.7rem, 8vw, 8rem);
  line-height: 0.88;
  text-shadow: 0 0 50px rgba(255, 154, 134, 0.34);
}

.hero h2 {
  margin-top: 20px;
  color: var(--accent-text);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
}

.hero-text {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn,
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn:hover,
.buy-button:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #211015;
  background: linear-gradient(135deg, var(--peach), var(--gold) 55%, var(--cream));
  box-shadow: 0 18px 46px rgba(255, 154, 134, 0.28);
}

.btn-ghost {
  color: var(--accent-text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 214, 166, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 18%, rgba(255, 240, 190, 0.22), transparent 18rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.halo {
  position: absolute;
  inset: 85px 58px 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 153, 0.34), transparent 64%);
  filter: blur(4px);
  animation: breathe 5s ease-in-out infinite;
}

.minecraft-character {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 188px;
  height: 315px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 42px 45px rgba(0,0,0,.42));
  animation: float 4.8s ease-in-out infinite;
}

.minecraft-character div {
  position: absolute;
  image-rendering: pixelated;
}

.head {
  left: 38px;
  top: 0;
  width: 112px;
  height: 112px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.12) 12px 24px, transparent 24px),
    linear-gradient(135deg, #ffd8b3, #ff9a86);
  box-shadow: inset -12px -14px rgba(123, 59, 60, 0.2);
}

.eye {
  position: absolute;
  top: 46px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #1c1520;
}

.eye.left { left: 30px; }
.eye.right { right: 30px; }

.mouth {
  position: absolute;
  left: 46px;
  bottom: 28px;
  width: 20px;
  height: 8px;
  border-radius: 2px;
  background: #6f2730;
}

.torso {
  left: 48px;
  top: 115px;
  width: 92px;
  height: 112px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--peach), #423a5e);
  box-shadow: inset -10px -10px rgba(0,0,0,.18);
}

.arm {
  top: 122px;
  width: 38px;
  height: 120px;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffb399, #6b4960);
}

.arm-left { left: 6px; transform: rotate(7deg); }
.arm-right { right: 6px; transform: rotate(-7deg); }

.leg {
  top: 232px;
  width: 42px;
  height: 82px;
  border-radius: 7px;
  background: linear-gradient(180deg, #3b3555, #1d1a2b);
}

.leg-left { left: 48px; }
.leg-right { right: 48px; }

.floating-item {
  position: absolute;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.35));
  animation: float 5s ease-in-out infinite;
}

.diamond {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #d9fdff, #68ddff 45%, #1c96c8);
  transform: rotate(45deg);
  border-radius: 8px;
}

.key {
  width: 78px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cream), var(--peach));
}

.key::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -13px;
  width: 42px;
  height: 42px;
  border: 10px solid var(--gold);
  border-radius: 50%;
}

.key::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -13px;
  width: 10px;
  height: 18px;
  background: var(--peach);
  box-shadow: 16px 0 var(--gold);
}

.sword {
  width: 24px;
  height: 112px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #f8ffff, #8feeff 55%, #3b6980);
  transform: rotate(35deg);
}

.sword::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 20px;
  width: 72px;
  height: 14px;
  border-radius: 6px;
  background: var(--gold);
}

.cube {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, #7a5337, #52a659);
}

.item-1 { left: 50px; top: 90px; animation-delay: -.8s; }
.item-2 { right: 62px; top: 150px; animation-delay: -1.4s; }
.item-3 { left: 70px; bottom: 95px; animation-delay: -2.1s; }
.item-4 { right: 64px; bottom: 90px; animation-delay: -2.8s; }

.stat-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--accent-text);
  background: rgba(14, 13, 20, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  font-weight: 800;
}

.chip-players { left: 28px; bottom: 26px; }
.chip-delivery { right: 28px; top: 28px; }

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #69ffb1;
  box-shadow: 0 0 0 8px rgba(105, 255, 177, 0.14);
}

.store-intro {
  padding: 45px 0 20px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading h2,
.status-panel h2,
.discord-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.discord-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.product-section,
.testimonials,
.faq {
  padding: 72px 0;
}

.rank-grid,
.key-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.rank-grid {
  display: grid;
  gap: 18px;
}

.rank-row {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.rank-row-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rank-row-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.rank {
  min-width: 0;
  width: 100%;
}

.product-card,
.key-card,
.testimonial,
.faq-list,
.status-panel,
.discord-cta {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.04)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.product-card,
.key-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card::before,
.key-card::before {
  content: "";
  position: absolute;
  inset: -90px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rank-glow, var(--key-color)), transparent 68%);
  opacity: .9;
}

.product-card:hover,
.key-card:hover,
.testimonial:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 214, 166, 0.38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), 0 0 38px var(--rank-glow, rgba(255,179,153,.22));
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: #13121b;
  background: linear-gradient(135deg, #7be7ff, var(--cream));
  font-size: 0.76rem;
  font-weight: 900;
}

.card-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.32), rgba(255,255,255,.06)), rgba(255,255,255,.07);
  box-shadow: inset 0 0 22px var(--rank-glow), 0 0 34px var(--rank-glow);
}

.rank-icon {
  display: block;
  animation: iconBob 3.2s ease-in-out infinite;
}

.coal-icon,
.iron-icon,
.lapis-icon,
.gold-icon,
.diamond-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.coal-icon {
  background: linear-gradient(135deg, #808895, #1e222b);
}

.iron-icon {
  background: linear-gradient(135deg, #ffffff, #9fa5af);
}

.lapis-icon {
  background: linear-gradient(135deg, #95c2ff, #225dff);
  transform: rotate(45deg);
}

.gold-icon {
  background: linear-gradient(135deg, #fff3a0, #ffbf2f);
  clip-path: polygon(50% 0, 88% 18%, 100% 58%, 74% 100%, 26% 100%, 0 58%, 12% 18%);
}

.diamond-icon {
  background: linear-gradient(135deg, #e9ffff, #69e7ff 50%, #0c92c7);
  transform: rotate(45deg);
}

.card-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
}

.card-topline h3,
.key-card h3 {
  font-size: 1.45rem;
}

.rank.featured .card-topline {
  padding-right: 96px;
}

.price {
  margin: 0;
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 900;
}

.product-card ul {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.product-card li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 2px;
  background: var(--rank-color);
  box-shadow: 0 0 14px var(--rank-glow);
}

.buy-button {
  position: relative;
  width: 100%;
  color: #170f14;
  background: linear-gradient(135deg, var(--rank-color, var(--key-color)), var(--cream));
  box-shadow: 0 14px 34px var(--rank-glow, rgba(255, 179, 153, 0.3));
}

.key-grid {
  grid-template-columns: repeat(5, 1fr);
}

.key-card {
  text-align: center;
  align-items: center;
}

.key-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 8px auto 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.28), rgba(255,255,255,.02)),
    rgba(255,255,255,.06);
  box-shadow:
    inset 0 0 26px color-mix(in srgb, var(--key-color), transparent 35%),
    0 0 34px color-mix(in srgb, var(--key-color), transparent 58%);
  overflow: hidden;
}

.key-icon-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
  animation: iconBob 3.1s ease-in-out infinite;
}

.key-card .price {
  margin: 12px 0 20px;
}

.status-band {
  padding: 44px 0 70px;
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.status-metrics div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.status-metrics strong {
  color: var(--cream);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.testimonial blockquote {
  margin: 0;
  color: var(--accent-text);
  line-height: 1.7;
}

.testimonial figcaption {
  margin-top: 18px;
  color: var(--cream);
  font-weight: 900;
}

.faq-list {
  overflow: hidden;
  border-radius: 24px;
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--accent-text);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.discord-cta {
  margin-top: 34px;
  margin-bottom: 72px;
  padding: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 240, 190, 0.24), transparent 22rem),
    linear-gradient(145deg, rgba(255, 154, 134, 0.18), rgba(255,255,255,.04));
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 30px 20px 45px;
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes iconBob {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -6px; rotate: 4deg; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .rank-grid {
    gap: 18px;
  }

  .rank-row-top,
  .rank-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank.featured {
    grid-column: 1 / -1;
  }

  .key-grid,
  .testimonial-grid,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .status-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(16, 15, 23, 0.94);
    backdrop-filter: blur(22px);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .brand {
    font-size: .92rem;
  }

  .hero {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-stage {
    min-height: 430px;
    border-radius: 22px;
  }

  .minecraft-character {
    scale: .78;
  }

  .item-1 { left: 28px; top: 72px; }
  .item-2 { right: 34px; top: 126px; }
  .item-3 { left: 36px; bottom: 86px; }
  .item-4 { right: 34px; bottom: 72px; }

  .rank-grid,
  .key-grid,
  .testimonial-grid,
  .status-metrics {
    grid-template-columns: 1fr;
  }

  .rank-row-top,
  .rank-row-bottom {
    grid-template-columns: 1fr;
  }

  .product-card ul {
    min-height: auto;
  }

  .discord-cta {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
