@font-face {
  font-family: 'Msyi';
  src: url('../msyi.ttf') format('truetype');
}

.brand-text {
  font-family: 'Msyi', sans-serif;
  font-weight: bold;
  font-size: 30px;
}

.try-it-link {
  font-weight: 600 !important;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold), var(--green), var(--teal), var(--blue), var(--purple), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  background-size: 200% auto;
  animation: slide 5s linear infinite;
}

:root {
  --ink: #101015;
  --muted: #6A6A78;
  --line: #ECECEF;
  --paper: #FFFFFF;
  --cream: #FAFAF7;
  --red: #E32227;
  --green: #169E4F;
  --blue: #1B79C4;
  --orange: #F59A1C;
  --navy: #21215C;
  --purple: #7E2D9E;
  --teal: #0E8C8C;
  --gold: #F2C24B;
  --r: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h3,
.fred {
  font-family: "Fredoka", sans-serif;
  letter-spacing: -.5px;
}

h2 {
  font-family: "Fredoka", sans-serif;
  letter-spacing: 0.5px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Animated background dots */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-orbs i {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .12;
  animation: drift 18s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.15);
  }

  66% {
    transform: translate(-30px, 30px) scale(.9);
  }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(242, 194, 75, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  mix-blend-mode: multiply;
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2, 1.4, .4, 1), box-shadow .25s;
  will-change: transform;
}

.btn span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: left .55s;
  transform: skewX(-18deg);
}

.btn:hover::after {
  left: 160%;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 16, 21, .22);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(16, 16, 21, .3);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(242, 194, 75, .5);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 34px rgba(242, 194, 75, .65);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

/* ---------- nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.chip13 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  animation: spin13 6s ease-in-out infinite;
}

@keyframes spin13 {

  0%,
  80%,
  100% {
    transform: rotate(0);
  }

  88% {
    transform: rotate(-12deg);
  }

  94% {
    transform: rotate(8deg);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: .96rem;
}

.nav-links a {
  color: var(--muted);
  transition: color .15s;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--ink);
  transition: width .2s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  font-size: .92rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s;
}

.back-btn:hover {
  color: var(--ink);
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-grid .tagline {
  grid-column: 1;
  grid-row: 1;
}

.hero-grid h1 {
  grid-column: 1;
  grid-row: 2;
}

.hero-grid p.lead {
  grid-column: 1;
  grid-row: 3;
}

.hero-grid .hero-cta {
  grid-column: 1;
  grid-row: 4;
}

.hero-grid .fan {
  grid-column: 2;
  grid-row: 1 / 5;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Fredoka";
  font-weight: 500;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  background: #F6EEFA;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.tagline .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: .95;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Proper Clean Outline Font layering to prevent crossing/overlapping stroke lines */
.stroke-wrapper {
  position: relative;
  display: inline-block;
  color: var(--paper);
  /* Foreground fill color */
  z-index: 2;
}

.stroke-wrapper::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-text-stroke: 6px var(--ink);
  /* Thick black background outline */
  color: var(--ink);
  /* Background solid color matches outline */
  z-index: -1;
}

.rainbow {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold), var(--green), var(--teal), var(--blue), var(--purple), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: slide 5s linear infinite;
}

@keyframes slide {
  to {
    background-position: 200% center;
  }
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-family: "Fredoka";
  color: var(--ink);
}

.play-tri {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  transition: .2s;
}

.play-link:hover .play-tri {
  border-color: var(--red);
  transform: scale(1.08);
}

/* V1 Hero fanned cards placement & transitions */
.fan {
  position: relative;
  height: 430px;
  display: grid;
  place-items: center;
  will-change: transform;
  perspective: 1200px;
}

.fan .card-img {
  position: absolute;
  transition: transform .5s cubic-bezier(.2, 1.2, .4, 1);
  will-change: transform;
  width: 148px;
  height: auto;
  box-shadow: 0 18px 40px rgba(16, 16, 21, .18);
}

.fan:hover .c1 {
  transform: rotate(-26deg) translate(-150px, 18px);
}

.fan:hover .c2 {
  transform: rotate(-13deg) translate(-78px, -8px);
}

.fan:hover .c3 {
  transform: rotate(0deg) translate(0, -22px) scale(1.04);
}

.fan:hover .c4 {
  transform: rotate(13deg) translate(78px, -8px);
}

.fan:hover .c5 {
  transform: rotate(26deg) translate(150px, 18px);
}

.c1 {
  transform: rotate(-16deg) translate(-92px, 14px);
}

.c2 {
  transform: rotate(-8deg) translate(-46px, -2px);
}

.c3 {
  transform: rotate(0deg) translate(0, -10px);
}

.c4 {
  transform: rotate(8deg) translate(46px, -2px);
}

.c5 {
  transform: rotate(16deg) translate(92px, 14px);
}

/* ---------- the card component ---------- */
.card {
  width: 148px;
  height: 210px;
  background: #fff;
  border-radius: 16px;
  border: 3px solid var(--c, var(--ink));
  position: relative;
  box-shadow: 0 18px 40px rgba(16, 16, 21, .18);
  display: grid;
  place-items: center;
  flex: none;
}

.card .corner {
  position: absolute;
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 1rem;
  color: var(--c, var(--ink));
}

.card .tl {
  top: 9px;
  left: 12px;
}

.card .br {
  bottom: 9px;
  right: 12px;
  transform: rotate(180deg);
}

.card .orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--c, var(--ink));
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
}

.card .orb .pl {
  position: absolute;
  top: 14px;
  font-family: "Fredoka";
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .5px;
  opacity: .92;
}

.card .orb .num {
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

.card .orb .word {
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1.05;
  letter-spacing: .5px;
  padding: 0 4px;
}

.card.dark {
  background: var(--ink);
  border-color: var(--ink);
}

.card.dark .corner {
  color: var(--gold);
}

.card.dark .orb {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 54px auto 0;
  max-width: 760px;
  position: relative;
  z-index: 5;
}

.stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  text-align: center;
  transition: .2s;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .07);
}

.stat .big {
  font-family: "Fredoka";
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
}

.stat .lbl {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 6px;
}

.s1 .big {
  color: var(--red);
}

.s2 .big {
  color: var(--green);
}

.s3 .big {
  color: var(--blue);
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tick 26s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker span {
  font-family: "Fredoka";
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.ticker .star {
  color: var(--gold);
}

@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- section base ---------- */
section {
  padding: 90px 0;
  position: relative;
}

.eyebrow {
  font-family: "Fredoka";
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
}

.h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 14px;
}

.sub {
  text-align: center;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* INTERACTIVE DRAW DECK */
.draw-zone {
  background: var(--cream);
  text-align: center;
}

.deck-stage {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.deck {
  position: relative;
  width: 148px;
  height: 210px;
  cursor: pointer;
}

.deck .back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: url('../img/svg/back.svg') no-repeat center/contain;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  transition: transform .3s;
}

.deck .back:nth-child(1) {
  transform: translate(-6px, 6px) rotate(-4deg);
}

.deck .back:nth-child(2) {
  transform: translate(3px, 3px) rotate(2deg);
}

.deck:hover .back:nth-child(1) {
  transform: translate(-12px, 8px) rotate(-7deg);
}

.deck:hover .back:nth-child(2) {
  transform: translate(6px, 4px) rotate(4deg);
}

.deck .tap {
  position: absolute;
  bottom: -34px;
  left: 0;
  right: 0;
  font-family: "Fredoka";
  font-weight: 500;
  color: var(--muted);
  font-size: .9rem;
}

.drawn {
  min-width: 148px;
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--muted);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
}

.drawn img {
  width: 148px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16, 16, 21, .18);
  animation: dealIn .5s cubic-bezier(.2, 1.3, .4, 1);
}

@keyframes dealIn {
  from {
    opacity: 0;
    transform: translateX(-90px) rotate(-20deg) scale(.7);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.draw-msg {
  margin-top: 46px;
  font-family: "Fredoka";
  font-weight: 600;
  font-size: 1.3rem;
  min-height: 1.6em;
  transition: .2s;
}

.draw-total {
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
}

.draw-reset {
  margin-top: 18px;
  font-family: "Fredoka";
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  border: none;
  background: none;
  font-size: .95rem;
  text-decoration: underline;
}

/* 3D FLIP ROLES */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.flip {
  perspective: 1000px;
  height: 200px;
}

.flip-in {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4, .2, .2, 1);
  transform-style: preserve-3d;
}

.flip:hover .flip-in {
  transform: rotateY(180deg);
}

.face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  background: #fff;
  transition: box-shadow .2s;
}

.face.front .role-img {
  width: 100%;
  height: 95px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 12px;
}

.face.front h3 {
  font-size: 1.15rem;
  font-weight: 400;
}

.face.back {
  transform: rotateY(180deg);
  color: #fff;
  border: none;
}

.face.back p {
  font-size: .85rem;
  line-height: 1.4;
}

.face.back .tag {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

/* ---------- how to play ---------- */
.howto {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: .2s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.step .no {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.step:nth-child(1) .no {
  background: var(--red);
}

.step:nth-child(2) .no {
  background: var(--green);
}

.step:nth-child(3) .no {
  background: var(--blue);
}

.step:nth-child(4) .no {
  background: var(--purple);
}

.step h3 {
  font-size: 1.16rem;
  margin-bottom: 7px;
  letter-spacing: 1px;
}

.step p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

/* SLOT MACHINE REELS */
.magic {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 90px 0;
}

.slot {
  display: inline-flex;
  height: 140px;
  overflow: hidden;
  margin-bottom: 14px;
}

.reel {

  height: 140px;
  overflow: hidden;
  position: relative;
}

.reel .strip {
  display: flex;
  flex-direction: column;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 6.5rem;
  line-height: 140px;
  background: linear-gradient(180deg, var(--gold), #E0A521);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reel .strip div {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magic h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 6px 0;
}

.magic p {
  color: #B7B7C4;
  font-size: 1.05rem;
  letter-spacing: .5px;
}

.verbs {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.verbs span {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .22);
  transition: .2s;
}

.verbs span:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ---------- pre-order / product ---------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.prod-visual {
  background: linear-gradient(135deg, #FBF3E0, #FDEFEF);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.prod-cards {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.prod-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.badge-save {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--red);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .84rem;
  line-height: 1.05;
  transform: rotate(11deg);
  box-shadow: 0 8px 20px rgba(227, 34, 39, .4);
  z-index: 5;
  animation: wobble 3s ease-in-out infinite;
}

@keyframes wobble {

  0%,
  100% {
    transform: rotate(11deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.06);
  }
}

.now {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
}

.was {
  font-size: 1.3rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 12px;
}

.off {
  background: #E9F8EF;
  color: var(--green);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-left: 10px;
}

.incl {
  list-style: none;
  margin: 22px 0 26px;
  display: grid;
  gap: 11px;
}

.incl li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-12px);
}

.incl li.in {
  opacity: 1;
  transform: none;
  transition: .4s;
}

.incl .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  font-size: .8rem;
}

.trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: .86rem;
}

.trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- reviews ---------- */
.reviews-wrap {
  background: var(--cream);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: .25s;
}

.rev:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .09);
}

.rev .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.rev p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.rev .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: #fff;
}

.rev .who b {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  display: block;
  font-size: .98rem;
}

.rev .who small {
  color: var(--muted);
}

/* ---------- faq ---------- */
.faq {
  max-width: 780px;
  margin: 40px auto 0;
}

.q {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  transition: .2s;
}

.q.open {
  border-color: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.q button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
}

.q .plus {
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform .25s;
}

.q .plus::before,
.q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}

.q .plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2.5px;
  transform: translateY(-50%);
}

.q .plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2.5px;
  transform: translateX(-50%);
  transition: opacity .2s;
}

.q.open .plus {
  transform: rotate(180deg);
}

.q.open .plus::after {
  opacity: 0;
}

.q .ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}

.q .ans p {
  padding: 0 24px 22px;
}

/* ---------- final cta ---------- */
.final {
  text-align: center;
  background: linear-gradient(135deg, #fff, var(--cream));
  border-top: 1px solid var(--line);
}

.final h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.final .stroke-wrapper::before {
  -webkit-text-stroke: 4.5px var(--ink);
}

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  z-index: 5;
  margin-top: auto;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

footer .brand {
  color: #fff;
}

footer .desc {
  color: #9A9AAA;
  font-size: .94rem;
  line-height: 1.6;
  max-width: 280px;
  margin-top: 14px;
}

footer h4 {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8A8A9A;
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

footer ul a {
  color: #C9C9D4;
  font-size: .94rem;
  transition: .15s;
}

footer ul a:hover {
  color: var(--gold);
}

.foot-bot {
  border-top: 1px solid #2A2A38;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7A7A8A;
  font-size: .88rem;
}

/* ---------- floating preorder bar ---------- */
.float {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(140%);
  z-index: 80;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  transition: transform .4s cubic-bezier(.3, 1.3, .5, 1);
}

.float.show {
  transform: translateX(-50%) translateY(0);
}

.float .fp {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

.float .fp s {
  color: #8A8A9A;
  font-weight: 400;
  margin-left: 8px;
  font-size: .85em;
}

.float .btn {
  padding: 11px 24px;
}

@media(max-width: 560px) {
  .float .fp {
    display: none;
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s, transform .6s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- CART STYLES ---------- */
.cart-container {
  padding: 50px 0;
  flex-grow: 1;
  position: relative;
  z-index: 5;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.cart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-card-thumb {
  width: 100px;
  height: 100px;
  background: var(--ink);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(16, 16, 21, .15);
  flex-shrink: 0;
}

.cart-card-thumb span {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.cart-item-name h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-name p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  height: 38px;
  width: 110px;
  justify-content: space-between;
}

.cart-qty button {
  background: none;
  border: none;
  font-size: 1.1rem;
  width: 34px;
  height: 100%;
  cursor: pointer;
  transition: background .15s;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.cart-qty button:hover {
  background: var(--cream);
}

.cart-qty span {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-price {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: right;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: underline;
}

.summary-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  height: fit-content;
}

.summary-card h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.96rem;
  border-bottom: 1.5px dashed var(--line);
}

.summary-row span:first-child {
  flex-shrink: 0;
}

.summary-row span:last-child {
  text-align: right;
}

.summary-row:last-of-type {
  border-bottom: none;
  padding-bottom: 24px;
}

.summary-row.total-row {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  padding-top: 20px;
  border-top: 2px solid var(--line);
  border-bottom: none;
}

.checkout-btn {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 16px;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(16, 16, 21, .2);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 16, 21, .3);
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-top: 24px;
  color: var(--muted);
  transition: color .15s;
}

.continue-shopping:hover {
  color: var(--ink);
}

.empty-state {
  text-align: center;
  padding: 80px 0;
}

.empty-state h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 30px;
}

/* ---------- CHECKOUT FORM & GATEWAY ---------- */
.checkout-container {
  padding: 50px 0;
  flex-grow: 1;
  position: relative;
  z-index: 5;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.form-card,
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-card h2,
.checkout-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}



/* ---------- POLICY TEMPLATE STYLES ---------- */
.policy-container {
  padding: 60px 0;
  flex-grow: 1;
  position: relative;
  z-index: 5;
  line-height: 1.7;
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.policy-container h3 {
  font-size: 1.3rem;
  margin: 35px 0 15px;
  color: var(--navy);
}

.policy-container p {
  margin-bottom: 18px;
  color: #3b3b4a;
}

.policy-container ul {
  margin-bottom: 18px;
  padding-left: 20px;
  color: #3b3b4a;
}

.policy-container li {
  margin-bottom: 8px;
}

/* ---------- media responsive limits ---------- */
@media(max-width: 860px) {
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .hero-grid .tagline,
  .hero-grid h1,
  .hero-grid p.lead,
  .hero-grid .fan,
  .hero-grid .hero-cta {
    grid-column: auto !important;
    grid-row: auto !important;

    max-width: 100% !important;
  }

  .hero p.lead {
    margin: 0 auto 10px !important;
  }

  .hero-cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 15px !important;
  }

  .hero-cta .btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 12px 6px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }

  .fan {
    height: 240px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .fan .card-img {
    width: 95px !important;
  }

  /* Safe translations for 360px screens - prevents expanding off-screen */
  .c1 {
    transform: rotate(-16deg) translate(-50px, 10px) !important;
  }

  .c2 {
    transform: rotate(-8deg) translate(-25px, -1px) !important;
  }

  .c3 {
    transform: rotate(0deg) translate(0, -6px) !important;
  }

  .c4 {
    transform: rotate(8deg) translate(25px, -1px) !important;
  }

  .c5 {
    transform: rotate(16deg) translate(50px, 10px) !important;
  }

  .fan:hover .c1 {
    transform: rotate(-26deg) translate(-80px, 12px) !important;
  }

  .fan:hover .c2 {
    transform: rotate(-13deg) translate(-40px, -4px) !important;
  }

  .fan:hover .c3 {
    transform: rotate(0deg) translate(0, -12px) scale(1.04) !important;
  }

  .fan:hover .c4 {
    transform: rotate(13deg) translate(40px, -4px) !important;
  }

  .fan:hover .c5 {
    transform: rotate(26deg) translate(80px, 12px) !important;
  }

  .roles {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  /* Stats grid 2x2 layout */
  .stats {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100% !important;
    gap: 12px !important;
    margin-top: 35px !important;
  }

  .stats .s3 {
    grid-column: span 2 !important;
  }

  /* Interactive Draw Deck Side-by-Side Sizing */
  .deck-stage {
    gap: 20px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }

  .deck,
  .drawn {
    width: 105px !important;
    height: 150px !important;
    min-width: 105px !important;
    min-height: 150px !important;
    border-radius: 12px !important;
  }

  .deck .back,
  .drawn img {
    border-radius: 12px !important;
  }

  .drawn img {
    width: 105px !important;
    height: 150px !important;
  }

  .deck .tap {
    font-size: 0.75rem !important;
    bottom: -28px !important;
  }

  .cart-item {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 12px !important;
    padding: 16px 0 !important;
  }

  .cart-item-visual {
    grid-column: span 2 !important;
  }

  .cart-qty {
    grid-column: 1 !important;
    margin-top: 5px !important;
  }

  .cart-price {
    grid-column: 2 !important;
    align-self: center !important;
    font-size: 1.15rem !important;
  }

  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.thank-you-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 50px 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.thank-you-card h2 {
  font-family: "Fredoka", sans-serif;
  font-size: 2.2rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 10px;
}

/* Video Teaser Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 21, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
  line-height: 1;
  transition: color 0.2s;
}

.video-modal-close:hover {
  color: var(--gold);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Product Image Slideshow Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide-item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide-item.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 10;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  color: var(--ink);
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  color: var(--red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn.prev {
  left: -15px;
}

.slider-btn.next {
  right: -15px;
}

.slider-dots {
  position: absolute;
  bottom: -22px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  padding: 15px 0;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 22px;
}

.reviews-track .rev {
  flex: 0 0 calc((100% - 44px) / 3);
  box-sizing: border-box;
  margin-bottom: 0;
}

@media(max-width: 900px) {
  .reviews-track .rev {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}

@media(max-width: 600px) {
  .reviews-track .rev {
    flex: 0 0 100%;
  }
}

.rev-control {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rev-control:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  color: var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.rev-control.prev {
  left: -22px;
}

.rev-control.next {
  right: -22px;
}