:root {
  color-scheme: light;
  --ink: #170716;
  --ink-2: #351021;
  --panel: #ffffff;
  --paper: #fff8ef;
  --muted: #674c5a;
  --gold: #ffc436;
  --gold-2: #ffe58a;
  --maroon: #76113a;
  --rose: #d9165c;
  --orange: #ff6b22;
  --violet: #7838ff;
  --cyan: #23bfa7;
  --green: #36b84a;
  --line: rgba(118, 17, 58, 0.16);
  --dark-line: rgba(118, 17, 58, 0.14);
  --shadow: 0 24px 56px rgba(97, 18, 52, 0.2);
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff8ef 0%, #fff1e8 46%, #fff8ef 100%);
  color: var(--ink);
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(118, 17, 58, 0.1);
  box-shadow: 0 10px 28px rgba(97, 18, 52, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 228px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo .logo-tile {
  width: 238px;
  height: 48px;
  padding: 5px 17px;
}

.logo-tile {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.logo-tile-light {
  background: #fff8ef;
  box-shadow: inset 0 0 0 1px rgba(118, 17, 58, 0.06);
}

.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-tile-light img {
  width: auto;
  height: 80%;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #24131d;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.header-cta,
.primary-action,
.secondary-action {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--rose);
}

.nav-links a {
  position: relative;
  padding: 20px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 900;
}

.header-cta {
  min-width: 108px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(255, 107, 34, 0.24);
}

.hero {
  position: relative;
  min-height: 91svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(520px, 1.08fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  align-content: center;
  column-gap: clamp(32px, 5vw, 76px);
  row-gap: 22px;
  padding: 106px clamp(18px, 5vw, 72px) 30px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 88px clamp(18px, 5vw, 72px) auto;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3e6c, #ffc436 24%, #36b84a 48%, #23bfa7 68%, #7838ff 86%, #ff6b22);
  box-shadow: 0 12px 28px rgba(255, 107, 34, 0.2);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 196, 54, 0.38), transparent 32%),
    radial-gradient(circle at 10% 42%, rgba(217, 22, 92, 0.5), transparent 30%),
    radial-gradient(circle at 42% 8%, rgba(35, 191, 167, 0.2), transparent 26%),
    linear-gradient(135deg, #7b123e 0%, #ff6b22 42%, #38115c 72%, #150716 100%);
  filter: saturate(1.1);
}

.hero-content,
.hero-utility,
.hero-banner,
.quick-cards {
  position: relative;
  z-index: 2;
}

.gold-effect {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.gold-effect::before {
  content: "";
  position: absolute;
  inset: 84px 0 16%;
  opacity: 0.3;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 236, 154, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 58%, rgba(248, 191, 66, 0.92) 0 3px, transparent 4px),
    radial-gradient(circle at 36% 18%, rgba(255, 248, 205, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 44%, rgba(255, 222, 110, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 28%, rgba(255, 248, 205, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 54%, rgba(248, 191, 66, 0.92) 0 3px, transparent 4px),
    radial-gradient(circle at 92% 20%, rgba(255, 236, 154, 0.9) 0 2px, transparent 3px);
  filter: drop-shadow(0 0 12px rgba(248, 191, 66, 0.78));
  animation: sparkleDrift 4.6s ease-in-out infinite alternate;
}

.gold-effect::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 8px;
  height: 118px;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 18% 72%, rgba(255, 239, 166, 0.82), transparent 28%),
    radial-gradient(ellipse at 46% 74%, rgba(248, 191, 66, 0.82), transparent 30%),
    radial-gradient(ellipse at 78% 70%, rgba(255, 239, 166, 0.78), transparent 28%);
  filter: blur(1px) drop-shadow(0 -16px 32px rgba(248, 191, 66, 0.32));
  animation: goldPulse 3.8s ease-in-out infinite alternate;
}

.gold-wave {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -146px;
  height: 292px;
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(255, 237, 160, 0.94), transparent 24%),
    radial-gradient(ellipse at 68% 18%, rgba(255, 202, 75, 0.78), transparent 28%),
    linear-gradient(100deg, rgba(118, 17, 58, 0), rgba(248, 191, 66, 0.72) 38%, rgba(255, 231, 160, 0.92) 54%, rgba(248, 191, 66, 0.68) 72%, rgba(118, 17, 58, 0));
  clip-path: polygon(0 36%, 9% 28%, 18% 38%, 28% 26%, 39% 35%, 51% 22%, 63% 34%, 75% 25%, 87% 35%, 100% 27%, 100% 100%, 0 100%);
  filter: blur(0.4px) drop-shadow(0 -26px 58px rgba(248, 191, 66, 0.3));
  animation: goldWave 7s ease-in-out infinite alternate;
}

.gold-wave::before,
.gold-wave::after {
  content: "";
  position: absolute;
  inset: 28px -4% auto;
  height: 96px;
  background:
    radial-gradient(ellipse at 12% 60%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(ellipse at 42% 44%, rgba(255, 236, 153, 0.86), transparent 17%),
    radial-gradient(ellipse at 72% 56%, rgba(255, 255, 255, 0.7), transparent 18%);
  opacity: 0.52;
  transform: translateX(-3%);
  animation: goldRipple 5.8s ease-in-out infinite;
}

.gold-wave::after {
  top: 72px;
  opacity: 0.32;
  animation-duration: 7.4s;
  animation-direction: reverse;
}

.coin-field {
  position: absolute;
  inset: 24% 0 0;
}

.coin {
  position: absolute;
  left: var(--x);
  bottom: -44px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff5ba 0 15%, transparent 16%),
    linear-gradient(135deg, #fff0a8 0%, #f8bf42 34%, #d58b19 66%, #fff0a8 100%);
  border: 1px solid rgba(255, 247, 190, 0.88);
  box-shadow:
    0 0 14px rgba(248, 191, 66, 0.42),
    inset 0 0 0 2px rgba(118, 17, 58, 0.16);
  opacity: 0;
  transform: translateY(0) rotate(0deg) scale(0.82);
  animation: coinRise var(--dur) cubic-bezier(0.18, 0.72, 0.16, 1) infinite;
  animation-delay: var(--delay);
}

.coin::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(118, 17, 58, 0.28);
}

.eyebrow,
.section-kicker,
.detail-label {
  margin: 0;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-top: 0;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero h1 {
  max-width: 610px;
  margin: 14px 0 16px;
  color: var(--paper);
  font-size: clamp(50px, 6.2vw, 86px);
  line-height: 0.96;
  font-weight: 950;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 570px;
  margin: 0;
  color: #fff8ef;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.44;
  font-weight: 720;
}

.hero-utility {
  max-width: 570px;
  align-self: start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-width: 156px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.primary-action {
  background: linear-gradient(135deg, var(--gold), #ffdd68);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(255, 196, 54, 0.28);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--paper);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 248, 239, 0.86);
  font-size: 14px;
  line-height: 1.65;
}

.hero-banner-link {
  grid-column: 2;
  grid-row: 1 / 3;
  display: block;
}

.hero-banner-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
  border-radius: 8px;
}

.hero-banner {
  width: 100%;
  max-width: 1081px;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 78px rgba(53, 8, 31, 0.42),
    0 0 34px rgba(255, 196, 54, 0.2);
}

.hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 1081 / 596;
  object-fit: contain;
  border-radius: 6px;
}

.logo-tile::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 54%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 226, 132, 0.55), transparent);
  animation: logoSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.brand,
.logo-tile {
  position: relative;
  overflow: hidden;
}

.quick-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.quick-cards article {
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(53, 8, 31, 0.2);
  backdrop-filter: blur(6px);
}

.quick-cards article:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 196, 54, 0.26), rgba(255, 255, 255, 0.12));
}

.quick-cards article:nth-child(2) {
  background: linear-gradient(135deg, rgba(35, 191, 167, 0.26), rgba(255, 255, 255, 0.12));
}

.quick-cards article:nth-child(3) {
  background: linear-gradient(135deg, rgba(120, 56, 255, 0.24), rgba(255, 107, 34, 0.16));
}

.quick-cards strong {
  display: block;
  color: var(--gold-2);
  font-size: 32px;
  line-height: 1;
}

.quick-cards span {
  display: block;
  margin-top: 8px;
  color: #fff8ef;
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 78px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.game-content h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.section-heading p,
.game-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.event-section {
  background:
    linear-gradient(180deg, #fff8ef 0%, #fff0f5 100%);
  color: var(--ink);
}

.event-section .section-kicker,
.game-section .section-kicker {
  color: var(--maroon);
}

.event-section .section-heading p,
.event-grid p,
.game-content p {
  color: rgba(16, 10, 18, 0.72);
}

.event-grid,
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-grid article,
.flow-steps article,
.tier-card {
  border-radius: 8px;
}

.event-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(118, 17, 58, 0.08);
}

.event-grid span,
.flow-steps span {
  color: var(--maroon);
  font-size: 13px;
  font-weight: 950;
}

.event-grid h3,
.flow-steps h3 {
  margin: 34px 0 12px;
  font-size: 26px;
  line-height: 1.15;
}

.event-grid p,
.flow-steps p {
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
}

.pool-section,
.terms-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 196, 54, 0.2), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(35, 191, 167, 0.16), transparent 24%),
    linear-gradient(135deg, #5c123a 0%, #160817 58%, #2d1052 100%);
  color: var(--paper);
}

.tier-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.tier-card {
  display: grid;
  min-height: 184px;
  align-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(53, 16, 33, 0.9);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.tier-card span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tier-card strong {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.tier-card small {
  color: #e7d3dc;
  font-size: 14px;
  line-height: 1.45;
}

.tier-card.is-active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 196, 54, 0.26), rgba(217, 22, 92, 0.18)), #3c1029;
  box-shadow: 0 18px 48px rgba(255, 107, 34, 0.2);
  position: relative;
  overflow: hidden;
}

.tier-card.is-active::after {
  content: "";
  position: absolute;
  inset: auto -20% -42px;
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(248, 191, 66, 0.34), transparent);
  transform: rotate(-4deg);
  animation: cardGlow 3.4s ease-in-out infinite alternate;
}

.tier-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.tier-detail h3 {
  margin: 8px 0 6px;
  font-size: 34px;
}

.tier-detail p {
  margin: 0;
  color: #f2dfea;
  font-size: 16px;
  line-height: 1.7;
}

.currency-badge {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--ink);
}

.currency-badge span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.currency-badge strong {
  font-size: 32px;
  line-height: 1.05;
}

.flow-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 196, 54, 0.26), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(35, 191, 167, 0.18), transparent 26%),
    linear-gradient(180deg, #fff8ef 0%, #fff2f7 48%, #fff8ef 100%);
  color: var(--ink);
  border-top: 1px solid rgba(118, 17, 58, 0.08);
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--cyan), var(--violet), var(--orange));
}

.flow-section .section-kicker {
  color: var(--rose);
}

.flow-section .section-heading h2 {
  color: var(--ink);
}

.flow-steps article {
  min-height: 232px;
  padding: 26px;
  border: 1px solid rgba(118, 17, 58, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(118, 17, 58, 0.1);
  position: relative;
  overflow: hidden;
}

.flow-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
}

.flow-steps article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.flow-steps article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.flow-steps span {
  color: var(--rose);
}

.flow-steps h3 {
  color: var(--ink);
}

.flow-steps p {
  color: #5b4451;
}

.game-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 196, 54, 0.22), transparent 30%),
    radial-gradient(circle at 8% 24%, rgba(217, 22, 92, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff2f6 46%, #fff8ef 100%);
  color: var(--ink);
}

.game-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.game-card {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(118, 17, 58, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(118, 17, 58, 0.14);
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255, 235, 155, 0.34), transparent);
  transform: skewX(-15deg);
  animation: gameSheen 6.6s ease-in-out infinite;
  pointer-events: none;
}

.game-card img {
  width: 100%;
  aspect-ratio: 350 / 492;
  object-fit: cover;
}

.game-card h3 {
  min-height: 62px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

.game-card h3::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 28px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rose), var(--orange));
}

.more-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  align-items: center;
  min-height: 136px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 231, 160, 0.46), transparent 26%),
    linear-gradient(135deg, #d9165c 0%, #7838ff 48%, #ff6b22 100%);
  color: var(--paper);
  border-color: rgba(118, 17, 58, 0.34);
}

.more-card::after {
  background: linear-gradient(100deg, transparent, rgba(255, 231, 160, 0.48), transparent);
}

.more-card-visual {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 136px;
  border-right: 1px solid rgba(255, 248, 234, 0.18);
}

.more-card-visual span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 231, 160, 0.42);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  box-shadow:
    inset 0 0 26px rgba(248, 191, 66, 0.12),
    0 0 26px rgba(248, 191, 66, 0.18);
}

.more-card h3 {
  min-height: 0;
  padding: 18px 22px 4px;
  color: var(--paper);
  font-size: clamp(28px, 4vw, 44px);
}

.more-card h3::before {
  display: none;
}

.more-card p {
  margin: 0;
  padding: 0 22px 18px;
  color: #ead8bd;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.terms-list {
  max-width: 920px;
  margin: 0 auto;
}

.terms-section .section-kicker {
  color: #ffb6cf;
  text-shadow: 0 0 16px rgba(255, 182, 207, 0.22);
}

.terms-section .section-heading h2 {
  color: #fff8ef;
}

details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: #fff8ef;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: var(--gold-2);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #ead8e2;
  font-size: 17px;
  line-height: 1.72;
}

.terms-section details p {
  color: #f3dfea;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px clamp(18px, 6vw, 78px) 32px;
  background:
    radial-gradient(circle at 4% 28%, rgba(255, 196, 54, 0.24) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(217, 22, 92, 0.16), transparent 28%, rgba(35, 191, 167, 0.12)),
    #010306;
  color: #aebee5;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.footer-ps-logo {
  width: min(218px, 62vw);
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

@keyframes goldWave {
  from {
    transform: translate3d(-2%, 0, 0) scaleY(1);
  }
  to {
    transform: translate3d(2%, -12px, 0) scaleY(1.05);
  }
}

@keyframes goldRipple {
  0%,
  100% {
    transform: translateX(-4%) scaleX(1);
  }
  50% {
    transform: translateX(4%) scaleX(1.06);
  }
}

@keyframes coinRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.76);
  }
  14% {
    opacity: 0.46;
  }
  72% {
    opacity: 0.36;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -82vh, 0) rotate(var(--spin)) scale(1.05);
  }
}

@keyframes sparkleDrift {
  from {
    transform: translate3d(-6px, 0, 0);
  }
  to {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes goldPulse {
  from {
    opacity: 0.42;
    transform: translateY(8px) scaleX(0.98);
  }
  to {
    opacity: 0.72;
    transform: translateY(-6px) scaleX(1.03);
  }
}

@keyframes logoSheen {
  0%,
  54% {
    transform: translateX(0) skewX(-18deg);
  }
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@keyframes gameSheen {
  0%,
  62% {
    transform: translateX(0) skewX(-15deg);
  }
  100% {
    transform: translateX(390%) skewX(-15deg);
  }
}

@keyframes cardGlow {
  from {
    opacity: 0.34;
    transform: translateX(-8%) rotate(-4deg);
  }
  to {
    opacity: 0.72;
    transform: translateX(8%) rotate(-4deg);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    max-width: 960px;
  }

  .hero-banner-link {
    grid-column: 1;
    grid-row: auto;
  }

  .game-section {
    grid-template-columns: 1fr;
  }

  .game-gallery {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 190px;
  }

  .quick-cards,
  .event-grid,
  .flow-steps,
  .tier-board {
    grid-template-columns: 1fr;
  }

  .game-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding-inline: 14px;
    gap: 12px;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
    max-width: calc(100vw - 28px);
    width: 100%;
    justify-content: center;
  }

  .brand-logo .logo-tile {
    width: min(68vw, 222px);
    height: 46px;
    padding: 5px 13px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 90px 16px 30px;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .hero-content,
  .hero-utility,
  .hero-banner-link,
  .hero-banner,
  .hero-copy,
  .hero-note,
  .hero-actions {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    margin: 12px 0 14px;
    font-size: 42px;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero h1 span:last-child {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.46;
    overflow-wrap: break-word;
  }

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

  .primary-action,
  .secondary-action {
    min-width: 0;
  }

  .hero-banner {
    padding: 4px;
    border-radius: 8px;
  }

  .hero-banner img {
    border-radius: 5px;
  }

  .gold-wave {
    bottom: -150px;
    height: 244px;
    opacity: 0.54;
  }

  .gold-effect::before {
    inset: 74px 0 28%;
    opacity: 0.36;
  }

  .gold-effect::after {
    bottom: 34px;
    height: 150px;
    opacity: 0.36;
  }

  .coin {
    animation-duration: calc(var(--dur) * 1.16);
  }

  .coin-field {
    inset: 42% 0 0;
  }

  .section {
    padding: 54px 16px;
  }

  .quick-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
  }

  .quick-cards article {
    min-height: 78px;
    padding: 12px 10px;
  }

  .quick-cards strong {
    font-size: 25px;
  }

  .quick-cards span {
    font-size: 11px;
    line-height: 1.25;
  }

  .section-heading h2,
  .game-content h2 {
    font-size: 36px;
  }

  .tier-detail {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .currency-badge {
    min-width: 0;
  }

  .game-gallery {
    gap: 12px;
  }

  .game-card h3 {
    min-height: 66px;
    font-size: 14px;
  }

  .more-card {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    min-height: 150px;
  }

  .more-card-visual {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 234, 0.18);
  }

  .more-card-visual span {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }

  .more-card h3 {
    min-height: 0;
    padding: 14px 16px 2px;
    font-size: 28px;
  }

  .more-card p {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  .footer-ps-logo {
    width: min(206px, 70vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gold-wave,
  .gold-wave::before,
  .gold-wave::after,
  .gold-effect::before,
  .gold-effect::after,
  .coin,
  .logo-tile::after,
  .tier-card.is-active::after,
  .game-card::after {
    animation: none;
  }

  .coin {
    display: none;
  }
}
