:root {
  --black: #111316;
  --panel: #191d20;
  --panel-2: #242629;
  --gold: #ffbb24;
  --gold-soft: #ffe58d;
  --orange: #ff6233;
  --cyan: #18d9ff;
  --blue: #0499dd;
  --paper: #f4f1ef;
  --white: #fff;
  --muted: #6d6865;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1f2024;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 58px;
  margin: 0;
  padding: 0 max(14px, calc((100vw - var(--max)) / 2 + 14px));
  background: linear-gradient(180deg, #171a1d, #0f1114);
  border-bottom: 1px solid rgba(255, 98, 51, 0.36);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 42px;
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.rating {
  display: block;
  width: 175px;
  height: 27px;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 574px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 35%, rgba(24, 217, 255, 0.22), transparent 24%),
    radial-gradient(circle at 44% 16%, rgba(255, 98, 51, 0.24), transparent 26%),
    #0d0f12;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  opacity: 0.72;
  transition: opacity 360ms ease;
}

.hero-video {
  opacity: 0.72;
  transition: opacity 360ms ease;
}

.hero-video:not(.is-ready) {
  opacity: 0;
}

.hero.is-video-ready .hero-poster {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.92) 0 18%, rgba(10, 12, 15, 0.62) 38%, rgba(10, 12, 15, 0.18) 66%, rgba(8, 10, 12, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(8, 10, 12, 0.72) 96%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 590px minmax(520px, 1fr);
  align-items: center;
  gap: 36px;
  width: min(var(--max), 100%);
  min-height: 574px;
  margin: 0 auto;
  padding: 28px 16px 38px;
}

.offer-card {
  min-height: 450px;
  padding: 56px 32px 28px;
  background:
    radial-gradient(circle at 85% 0, rgba(24, 217, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(34, 36, 39, 0.96), rgba(16, 18, 21, 0.98));
  border: 2px solid rgba(255, 187, 36, 0.88);
  border-radius: 8px;
  box-shadow:
    0 0 0 2px rgba(255, 98, 51, 0.72),
    0 0 28px rgba(255, 98, 51, 0.56),
    0 24px 80px rgba(0, 0, 0, 0.42);
}

.offer-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 98, 51, 0.8), 0 0 22px rgba(255, 187, 36, 0.65);
}

.offer-card h1,
.why-section h2,
.wins-section h2 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-card h1 {
  max-width: 520px;
  font-size: 60px;
  line-height: 0.98;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.34), 0 0 20px rgba(255, 255, 255, 0.16);
}

.offer-copy {
  max-width: 510px;
  margin: 18px 0 26px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.offer-copy strong {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 187, 36, 0.45);
}

.primary-btn,
.play-link {
  display: inline-grid;
  min-height: 59px;
  place-items: center;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, #50e9ff, #0098dd 58%, #0070b8);
  border: 3px solid #f8fbff;
  border-radius: 8px;
  box-shadow:
    0 0 0 3px rgba(255, 98, 51, 0.95),
    0 0 0 6px rgba(24, 217, 255, 0.74),
    0 0 28px rgba(24, 217, 255, 0.45),
    inset 0 0 14px rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.primary-btn {
  width: 100%;
  max-width: 543px;
  text-transform: none;
}

.fine-print {
  max-width: 480px;
  margin: 26px auto 0;
  color: #fff7da;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.wheel-stage {
  position: relative;
  display: grid;
  width: min(620px, 100%);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  filter: none;
}

.wheel-stage.is-rewarding {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: min(620px, 72vmin);
  pointer-events: none;
  animation: rewardWheelDock 0.9s cubic-bezier(0.2, 0.92, 0.2, 1) forwards;
}

.pointer {
  position: absolute;
  top: -3%;
  z-index: 5;
  display: block;
  width: 11.5%;
  height: auto;
  object-fit: contain;
  transform: translateY(0);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.wheel-shell {
  position: relative;
  display: grid;
  width: 96%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  transition: transform 5.2s cubic-bezier(0.08, 0.76, 0.12, 1);
}

.wheel::after {
  position: absolute;
  inset: -4%;
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 54%, rgba(255, 232, 134, 0.42) 63%, transparent 72%),
    conic-gradient(from 20deg, transparent 0 20deg, rgba(255, 255, 255, 0.82) 30deg, transparent 46deg, transparent 120deg, rgba(24, 217, 255, 0.32) 138deg, transparent 156deg, transparent 360deg);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.wheel.is-win {
  animation: wheelWinGlow 1.25s ease-out both;
}

.wheel.is-win::after {
  animation: prizeFlash 1.25s ease-out both;
}

.wheel-base,
.wheel-start,
.wheel-arc {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.wheel-base {
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.38));
}

.wheel-start {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transform-origin: 50% 50%;
  transition: opacity 280ms ease;
}

.wheel.has-spun .wheel-start {
  opacity: 0;
}

.wheel-arc {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: arcCounterSpin 18s linear infinite;
}

.wheel.is-spinning .wheel-arc {
  animation-play-state: paused;
}

.wheel-center {
  position: absolute;
  inset: 50%;
  z-index: 4;
  display: block;
  width: 27%;
  aspect-ratio: 1;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: spinPulse 1.35s ease-in-out infinite;
}

.wheel-center img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(255, 187, 36, 0.46)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.42));
}

.wheel-center:disabled {
  cursor: default;
}

@keyframes spinPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    filter: brightness(1);
  }
  42% {
    transform: translate(-50%, -50%) scale(1.05);
    filter: brightness(1.13);
  }
  68% {
    transform: translate(-50%, -50%) scale(1.018);
    filter: brightness(1.05);
  }
}

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

@keyframes wheelWinGlow {
  0% {
    filter: brightness(1);
  }
  28% {
    filter: brightness(1.2) drop-shadow(0 0 18px rgba(255, 187, 36, 0.72));
  }
  58% {
    filter: brightness(1.08) drop-shadow(0 0 26px rgba(24, 217, 255, 0.46));
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes prizeFlash {
  0% {
    opacity: 0;
    transform: scale(0.9) rotate(0deg);
  }
  22% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: scale(1.18) rotate(24deg);
  }
}

.result-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 18px max(16px, calc((100vw - var(--max)) / 2 + 16px)) 20px;
  color: #fff;
  background: linear-gradient(180deg, #171a1e, #0f1114);
  border-top: 1px solid rgba(255, 98, 51, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.result-strip::before {
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 36%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-18deg);
}

.result-strip.is-win {
  border-top-color: rgba(255, 187, 36, 0.78);
  box-shadow: 0 0 28px rgba(255, 187, 36, 0.22), 0 10px 24px rgba(0, 0, 0, 0.16);
}

.result-strip.is-win::before {
  animation: stripShine 1.1s ease-out both;
}

.result-strip.is-win span {
  animation: prizeTextPop 0.9s ease-out both;
}

.result-strip span {
  color: var(--gold-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.play-link {
  min-width: 204px;
  min-height: 46px;
  padding: 0 22px;
}

@keyframes stripShine {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-18deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(430%) skewX(-18deg);
  }
}

@keyframes prizeTextPop {
  0%,
  100% {
    color: var(--gold-soft);
    text-shadow: none;
  }
  34% {
    color: #fff5b8;
    text-shadow: 0 0 14px rgba(255, 187, 36, 0.86), 0 0 24px rgba(255, 98, 51, 0.55);
  }
}

@keyframes rewardWheelDock {
  0% {
    opacity: 1;
    filter: brightness(1);
    transform: translate(calc(-50% + var(--wheel-start-x, 0px)), calc(-50% + var(--wheel-start-y, 0px))) scale(1);
  }
  55% {
    opacity: 1;
    filter: brightness(1.25) drop-shadow(0 0 34px rgba(255, 187, 36, 0.78));
    transform: translate(-50%, calc(-50% + var(--wheel-target-y, -240px))) scale(0.28);
  }
  100% {
    opacity: 0;
    filter: brightness(1.1) drop-shadow(0 0 26px rgba(255, 187, 36, 0.72)) drop-shadow(0 0 18px rgba(24, 217, 255, 0.34));
    transform: translate(-50%, calc(-50% + var(--wheel-target-y, -240px))) scale(0.24);
  }
}

.reward-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 150px 18px 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 187, 36, 0.22), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(24, 217, 255, 0.14), transparent 34%),
    rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(8px);
}

.reward-overlay[hidden] {
  display: none;
}

.reward-modal {
  position: relative;
  width: min(448px, 100%);
  overflow: visible;
  padding: 48px 24px 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 98, 51, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(38, 41, 45, 0.98), rgba(13, 15, 18, 0.99));
  border: 2px solid rgba(255, 187, 36, 0.88);
  border-radius: 8px;
  box-shadow:
    0 0 0 2px rgba(255, 98, 51, 0.75),
    0 0 34px rgba(255, 98, 51, 0.46),
    0 28px 80px rgba(0, 0, 0, 0.62);
  animation: rewardModalIn 0.55s 0.16s ease-out both;
}

.reward-wheel-badge {
  position: absolute;
  top: -108px;
  left: 50%;
  z-index: 2;
  width: 142px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.82);
  animation: rewardBadgeIn 0.55s 0.62s ease-out forwards;
  filter: drop-shadow(0 0 22px rgba(255, 187, 36, 0.74)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

.reward-wheel-pointer {
  position: absolute;
  top: -12%;
  left: 50%;
  z-index: 4;
  display: block;
  width: 16%;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.42));
}

.reward-wheel-base,
.reward-wheel-arc {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.reward-wheel-arc {
  animation: arcCounterSpin 18s linear infinite;
}

.reward-modal::before {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(24, 217, 255, 0.22), transparent 68%);
  content: "";
  pointer-events: none;
}

.reward-kicker {
  position: relative;
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 98, 51, 0.8);
}

.reward-modal h2 {
  position: relative;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.reward-prize {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 22px 0 24px;
  padding: 18px 14px;
  color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(255, 187, 36, 0.12), rgba(255, 98, 51, 0.08));
  border: 1px solid rgba(255, 187, 36, 0.5);
  border-radius: 8px;
  box-shadow: inset 0 0 24px rgba(255, 187, 36, 0.08);
}

.reward-prize span,
.reward-prize strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.reward-prize small {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reward-btn {
  position: relative;
  display: grid;
  min-height: 58px;
  place-items: center;
  width: 100%;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(180deg, #50e9ff, #0098dd 58%, #0070b8);
  border: 3px solid #f8fbff;
  border-radius: 8px;
  box-shadow:
    0 0 0 3px rgba(255, 98, 51, 0.95),
    0 0 0 6px rgba(24, 217, 255, 0.64),
    0 0 30px rgba(24, 217, 255, 0.45),
    inset 0 0 14px rgba(255, 255, 255, 0.3);
  animation: rewardButtonPulse 1.1s ease-in-out infinite;
}

@keyframes rewardModalIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rewardBadgeIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.72);
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes rewardButtonPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.035);
    filter: brightness(1.12);
  }
}

.why-section,
.wins-section {
  width: 100%;
  margin: 0;
  padding: 32px max(16px, calc((100vw - var(--max)) / 2 + 16px)) 28px;
  background:
    radial-gradient(circle at 18px 20px, rgba(255, 98, 51, 0.035) 0 2px, transparent 3px),
    radial-gradient(circle at 80px 76px, rgba(24, 217, 255, 0.038) 0 2px, transparent 3px),
    var(--paper);
  background-size: 112px 112px, 148px 148px, auto;
}

.why-section h2,
.wins-section h2 {
  margin-bottom: 24px;
  color: #24252a;
  font-size: 38px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 66px;
  padding: 0 44px;
}

.benefit-card {
  display: grid;
  min-height: 134px;
  min-width: 0;
  place-items: center;
  padding: 22px 18px 17px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 98, 51, 0.14), transparent 42%),
    linear-gradient(180deg, #25272a, #15181b);
  border: 1px solid rgba(255, 98, 51, 0.45);
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255, 187, 36, 0.14), 0 10px 24px rgba(45, 27, 16, 0.16);
}

.benefit-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 90, 31, 0.45));
}

.benefit-card h3 {
  margin: 8px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head p {
  margin: -16px 0 0;
  color: #343033;
  font-size: 16px;
  font-weight: 700;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  padding: 20px 48px 0;
}

.game-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 0;
  text-align: center;
  padding: 0 0 8px;
}

.game-art {
  width: 100%;
  max-width: 158px;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(255, 98, 51, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 187, 36, 0.08), transparent 42%),
    #111316;
  box-shadow: 0 0 0 2px rgba(24, 217, 255, 0.16), 0 10px 28px rgba(40, 24, 16, 0.26);
}

.game-card strong {
  color: #24252a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.game-card span {
  color: #514c49;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer {
  display: grid;
  grid-template-columns: 210px 270px 1fr;
  gap: 34px;
  width: 100%;
  margin: 28px 0 0;
  padding: 25px max(16px, calc((100vw - var(--max)) / 2 + 16px)) 30px;
  background: #1a1a1a;
  border-top: 3px solid rgba(255, 98, 51, 0.55);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer img {
  width: 118px;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-content: start;
  gap: 18px 46px;
}

.legal {
  margin: 0;
}

.policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 7%, rgba(255, 98, 51, 0.18), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(24, 217, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #111316 0, #191d20 330px, var(--paper) 331px);
}

.policy-shell {
  width: min(930px, calc(100% - 28px));
  margin: 0 auto;
  padding: 44px 0 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.back-link::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.policy-card {
  padding: 42px;
  color: #f9f4e8;
  background:
    linear-gradient(135deg, rgba(24, 217, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 187, 36, 0.08), rgba(255, 98, 51, 0.05)),
    #161a1d;
  border: 2px solid rgba(255, 187, 36, 0.75);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 98, 51, 0.42),
    0 22px 60px rgba(0, 0, 0, 0.35);
}

.policy-kicker,
.policy-updated {
  margin: 0;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-card h1,
.policy-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.policy-card h1 {
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.92;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.policy-card h2 {
  margin-top: 32px;
  color: var(--gold-soft);
  font-size: 30px;
  line-height: 1;
}

.policy-updated {
  margin-top: 12px;
  color: var(--cyan);
  font-size: 15px;
}

.policy-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 42%) minmax(360px, 1fr);
    gap: 18px;
    align-items: center;
  }

  .offer-card {
    min-height: 0;
    padding: 30px 18px 22px;
  }

  .offer-card h1 {
    font-size: 42px;
  }

  .offer-copy {
    font-size: 15px;
  }

  .wheel-stage {
    width: min(520px, 100%);
  }

  .benefits,
  .game-grid {
    gap: 24px;
    padding-inline: 16px;
  }
}

@media (max-width: 900px) {
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
    margin: 0 auto;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .game-grid {
    grid-template-columns: repeat(5, minmax(92px, 1fr));
    gap: 18px;
    padding-inline: 8px;
  }

  .game-art {
    max-width: 126px;
  }
}

@media (max-width: 699px) {
  .site-header {
    justify-content: space-between;
    height: 48px;
    padding: 0 10px;
  }

  .brand {
    width: 104px;
  }

  .rating {
    width: 132px;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px 9px 24px;
  }

  .offer-card {
    padding: 24px 12px 20px;
    text-align: left;
  }

  .offer-card h1 {
    font-size: 39px;
  }

  .offer-copy {
    font-size: 15px;
  }

  .fine-print {
    font-size: 11px;
  }

  .wheel-stage {
    width: min(420px, 100%);
    margin-top: 22px;
  }

  .pointer {
    top: -2%;
    width: 12%;
    height: auto;
  }

  .wheel-center {
    width: 28%;
  }

  .result-strip {
    display: grid;
    padding: 14px 10px 20px;
  }

  .result-strip span {
    font-size: 22px;
  }

  .play-link {
    width: 100%;
  }

  .reward-modal {
    padding: 42px 14px 18px;
  }

  .reward-wheel-badge {
    top: -80px;
    width: 104px;
  }

  .reward-modal h2 {
    font-size: 36px;
  }

  .reward-prize span,
  .reward-prize strong {
    font-size: 30px;
  }

  .reward-btn {
    font-size: 23px;
  }

  .why-section,
  .wins-section {
    padding-inline: 10px;
  }

  .why-section h2,
  .wins-section h2 {
    font-size: 34px;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
  }

  .benefit-card {
    min-height: 128px;
    padding: 16px 8px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card img {
    width: 70px;
    height: 70px;
  }

  .section-head {
    display: block;
  }

  .play-link--desktop {
    display: none;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
    padding: 18px 0 0;
  }

  .game-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .game-art {
    max-width: 132px;
  }

  .game-card strong {
    font-size: 21px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 22px;
    padding: 24px 12px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .policy-shell {
    width: min(100% - 20px, 930px);
    padding-top: 28px;
  }

  .policy-card {
    padding: 28px 16px;
  }

  .policy-card h2 {
    font-size: 25px;
  }
}
