:root {
  --bg: #10001f;
  --bg-deep: #090012;
  --bg-soft: #17072b;
  --panel: #1c0c33;
  --panel-2: #24113f;
  --line: rgba(152, 139, 195, .18);
  --text: #ffffff;
  --muted: #aaa2c2;
  --purple: #7d40ff;
  --purple-soft: #a982ff;
  --green: #1cc68d;
  --green-2: #55e0b1;
  --cyan: #15a4fd;
  --orange: #ff9b42;
  --yellow: #ffd45d;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
}

h3 {
  font-size: 1.35rem;
}

.alignwide {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: #05010b;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: .79rem;
}

.button-large {
  min-height: 56px;
  padding: 16px 28px;
  font-size: .96rem;
}

.button-large svg {
  width: 22px;
  margin-right: 10px;
  fill: currentColor;
}

.button-primary {
  color: #06170f;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  box-shadow: 0 10px 30px rgba(28, 198, 141, .2);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .22);
}

.button-dark {
  color: #fff;
  background: rgba(7, 2, 13, .84);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.text-link span {
  color: var(--green-2);
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--green-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.2;
}

.eyebrow {
  gap: 9px;
  padding: 8px 12px;
  color: #d9fff3;
  background: rgba(28, 198, 141, .12);
  border: 1px solid rgba(85, 224, 177, .24);
  border-radius: 999px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 224, 177, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(10, 0, 20, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
}

.brand-mark,
.mini-app-icon,
.final-app-icon,
.app-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #07170f;
  background: linear-gradient(145deg, var(--green-2), var(--cyan));
  box-shadow: inset 0 1px rgba(255, 255, 255, .5), 0 8px 22px rgba(21, 164, 253, .2);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px 10px 10px 4px;
  transform: rotate(-8deg);
}

.brand-mark span {
  font-size: 18px;
  transform: rotate(8deg);
}

.brand-word i,
.mini-logo i {
  color: var(--green-2);
  font-style: normal;
}

.primary-navigation {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.primary-navigation a {
  position: relative;
  color: #c8c1d7;
  font-size: .82rem;
  font-weight: 700;
  transition: color .2s ease;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-navigation a:hover {
  color: #fff;
}

.primary-navigation a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(125, 64, 255, .28), transparent 28%),
    linear-gradient(180deg, #120124 0%, #10001f 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(16, 0, 31, .96) 0%, rgba(16, 0, 31, .88) 37%, rgba(16, 0, 31, .22) 66%, rgba(16, 0, 31, .5) 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("img/pino-cashback-hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .72;
}

.hero-glow {
  position: absolute;
  z-index: 2;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  left: 23%;
  background: rgba(21, 164, 253, .35);
}

.hero-glow-two {
  right: -260px;
  bottom: -230px;
  background: rgba(28, 198, 141, .25);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 50px;
  align-items: center;
  min-height: 720px;
  padding: 64px 0 70px;
}

.hero-inner > *,
.feature-layout > *,
.install-grid > *,
.security-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  font-weight: 900;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #fff 10%, #aeb8ff 55%, var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #c5bed3;
  font-size: 1.03rem;
}

.hero-lead strong {
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #9f98b3;
  font-size: .75rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.hero-notes b {
  color: var(--green-2);
}

.phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 630px;
}

.phone-orbit {
  position: absolute;
  border: 1px solid rgba(133, 116, 195, .18);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 530px;
  animation: spin 18s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--green-2);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green-2);
}

.orbit-one::before {
  top: 54px;
  right: 76px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  animation: spin 13s linear infinite reverse;
}

.orbit-two::before {
  bottom: 25px;
  left: 106px;
  background: var(--purple-soft);
  box-shadow: 0 0 18px var(--purple-soft);
}

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

.phone {
  position: relative;
  z-index: 2;
  width: 320px;
  padding: 10px;
  background: linear-gradient(145deg, #3a3651, #100d19 38%, #050508);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 43px;
  box-shadow: 0 45px 80px rgba(0, 0, 0, .55), 0 0 80px rgba(125, 64, 255, .22), inset 0 0 0 2px rgba(0, 0, 0, .7);
  transform: rotate(2deg);
}

.phone::after {
  position: absolute;
  top: 105px;
  right: -4px;
  width: 3px;
  height: 78px;
  content: "";
  background: #3c3848;
  border-radius: 0 3px 3px 0;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 22px;
  background: #050508;
  border-radius: 30px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 606px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(28, 198, 141, .12), transparent 25%),
    #120421;
  border-radius: 34px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 17px 17px 8px;
}

.mini-logo {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.app-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #0e0620;
  background: var(--green);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.app-wallet {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 13px 16px;
  margin: 0 12px 11px;
  background: linear-gradient(135deg, #291355, #1c1133);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
}

.app-wallet small {
  grid-column: 1;
  color: #9790b2;
  font-size: .58rem;
  line-height: 1.2;
}

.app-wallet strong {
  grid-column: 1;
  font-size: 1.12rem;
  line-height: 1.3;
}

.app-wallet a {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 7px 10px;
  color: #06170f;
  background: var(--green);
  border-radius: 7px;
  font-size: .58rem;
  font-weight: 900;
}

.app-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px;
  margin: 0 12px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% 10%, rgba(255, 212, 93, .8), transparent 31%),
    linear-gradient(135deg, #4024a0, #6a2ed6);
  border-radius: 14px;
}

.app-promo::after {
  position: absolute;
  right: 20px;
  bottom: -30px;
  width: 75px;
  height: 75px;
  content: "♠";
  color: rgba(255, 255, 255, .12);
  font-size: 70px;
  line-height: 1;
}

.app-promo div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.app-promo small {
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.app-promo strong {
  margin-top: 4px;
  font-size: .95rem;
}

.app-promo > span {
  position: relative;
  z-index: 1;
  padding: 6px 9px;
  color: #211037;
  background: #fff;
  border-radius: 6px;
  font-size: .55rem;
  font-weight: 900;
}

.app-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
  font-size: .65rem;
}

.app-section-head span {
  color: var(--green-2);
  font-size: .55rem;
}

.app-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 12px 70px;
}

.app-game-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.app-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 10px 11px;
  background: rgba(13, 3, 25, .95);
  border-top: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.app-nav span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  color: #756d88;
  font-size: .92rem;
  line-height: 1;
}

.app-nav small {
  font-size: .45rem;
}

.app-nav .active {
  color: var(--green-2);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 155px;
  padding: 10px 12px;
  background: rgba(24, 12, 43, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.floating-chip b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: #0b0513;
  background: var(--green-2);
  border-radius: 9px;
}

.floating-chip > span {
  display: flex;
  flex-direction: column;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.3;
}

.floating-chip small {
  color: #9c94ae;
  font-size: .55rem;
  font-weight: 500;
}

.chip-fast {
  top: 125px;
  left: -7px;
}

.chip-live {
  right: -13px;
  bottom: 120px;
}

.chip-live b {
  color: var(--green-2);
  background: rgba(28, 198, 141, .14);
}

.mobile-trust-bar {
  display: none;
}

.proof-strip {
  background: #0c0117;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid > div {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--green-2);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.proof-grid span {
  max-width: 100px;
  color: #a39aae;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-section {
  position: relative;
  padding: 110px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-top: 15px;
}

.section-heading p {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading strong {
  color: #fff;
}

.intro-section {
  background:
    radial-gradient(circle at 0% 30%, rgba(21, 164, 253, .08), transparent 26%),
    var(--bg);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 2px;
}

.feature-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.feature-card:first-child {
  border-radius: var(--radius) var(--radius) 6px 6px;
}

.feature-card:last-child {
  border-radius: 6px 6px var(--radius) var(--radius);
}

.feature-card:hover {
  background: rgba(125, 64, 255, .08);
  border-color: rgba(125, 64, 255, .32);
  transform: translateX(5px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--green-2);
  background: #120423;
  border: 1px solid rgba(85, 224, 177, .22);
  border-radius: 14px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.feature-card h3 {
  margin: 3px 0 9px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.app-facts {
  position: sticky;
  top: 98px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(125, 64, 255, .27), transparent 36%),
    linear-gradient(145deg, #251340, #160828);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.facts-title {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.app-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 26px;
}

.facts-title small,
.payment-card > small {
  color: var(--green-2);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.facts-title h3 {
  margin: 4px 0 0;
  font-size: 1.3rem;
}

.app-facts dl {
  margin: 0 0 22px;
}

.app-facts dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

.app-facts dt {
  color: #8e85a2;
}

.app-facts dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.install-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(22, 7, 43, .96), rgba(22, 7, 43, .96)),
    radial-gradient(circle, rgba(125, 64, 255, .4), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.install-section::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 600px;
  height: 600px;
  content: "";
  background: rgba(21, 164, 253, .09);
  border-radius: 50%;
  filter: blur(80px);
}

.install-grid {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 90px;
  align-items: center;
}

.install-copy h2 {
  margin-top: 15px;
}

.install-copy > p {
  color: var(--muted);
}

.install-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  margin-top: 28px;
  background: rgba(255, 212, 93, .06);
  border: 1px solid rgba(255, 212, 93, .18);
  border-radius: 12px;
}

.install-note b {
  color: var(--yellow);
  font-size: .78rem;
}

.install-note span {
  color: #bdb5c9;
  font-size: .78rem;
}

.install-panel {
  padding: 12px;
  background: #0f021c;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  background: #180b29;
  border-radius: 12px;
}

.tab-button {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #8f87a3;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: var(--purple);
}

.tab-button span {
  color: var(--green-2);
}

.tab-panel {
  padding: 24px;
}

.install-steps {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.install-steps li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--green-2);
  background: rgba(28, 198, 141, .08);
  border: 1px solid rgba(28, 198, 141, .18);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.install-steps b {
  display: block;
  margin: 1px 0 4px;
  font-size: .86rem;
}

.install-steps p {
  margin: 0;
  color: #968da8;
  font-size: .75rem;
}

.games-section {
  padding-bottom: 90px;
  overflow: hidden;
  background: #0b0116;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
}

.heading-row > div:first-child {
  max-width: 760px;
}

.slider-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #1c0d2f;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.slider-arrow:hover {
  color: #09170f;
  background: var(--green);
}

.game-categories {
  display: flex;
  gap: 9px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.game-categories span {
  flex: 0 0 auto;
  padding: 8px 15px;
  color: #938ba5;
  background: #180a29;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.game-categories .active {
  color: #fff;
  background: var(--purple);
  border-color: #9c72ff;
}

.game-rail {
  display: grid;
  grid-auto-columns: 178px;
  grid-auto-flow: column;
  gap: 14px;
  padding-bottom: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: #3c2c51 transparent;
  scrollbar-width: thin;
}

.game-card {
  position: relative;
  min-width: 0;
  padding: 8px 8px 12px;
  background: #180b29;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
  scroll-snap-align: start;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.game-card:hover {
  z-index: 2;
  border-color: rgba(85, 224, 177, .42);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.game-card b,
.game-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card b {
  margin: 10px 3px 2px;
  font-size: .72rem;
}

.game-card small {
  margin: 0 3px;
  color: #8f86a2;
  font-size: .6rem;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  padding: 5px 7px;
  color: #07160f;
  background: var(--green-2);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  font-size: .46rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.tag.hot {
  color: #fff;
  background: #ff405f;
}

.tag.new {
  color: #fff;
  background: var(--purple);
}

.tag.live {
  color: #fff;
  background: #e53b59;
}

.provider-bar {
  display: flex;
  gap: 38px;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 22px;
  margin-top: 50px;
  background: rgba(255, 255, 255, .018);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.provider-bar span {
  color: #71687f;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.provider-bar img {
  width: 105px;
  max-height: 30px;
  opacity: .55;
  filter: grayscale(1) brightness(3);
  transition: opacity .2s ease, filter .2s ease;
}

.provider-bar img:hover {
  opacity: 1;
  filter: none;
}

.bonus-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(28, 198, 141, .07), transparent 30%),
    var(--bg);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bonus-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .24);
}

.bonus-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 15%, rgba(5, 2, 10, .87) 84%);
}

.bonus-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .95;
}

.bonus-character {
  position: absolute;
  top: -4px;
  right: -3px;
  z-index: 1;
  width: 67%;
  height: 87%;
  object-fit: contain;
  object-position: top right;
  transition: transform .3s ease;
}

.bonus-card:hover .bonus-character {
  transform: scale(1.04) translateY(-4px);
}

.bonus-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 9px;
  color: #f0fffa;
  background: rgba(9, 1, 20, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: .5rem;
  font-weight: 900;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.bonus-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.bonus-content small {
  color: var(--green-2);
  font-size: .55rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.bonus-content h3 {
  margin: 5px 0 0;
  font-size: 1.25rem;
}

.bonus-content h3 b {
  color: var(--yellow);
  font-size: 1.65rem;
}

.bonus-content p {
  margin: 4px 0 14px;
  color: #c6bfd2;
  font-size: .74rem;
}

.bonus-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: .73rem;
  font-weight: 900;
}

.bonus-content a span {
  color: var(--green-2);
  font-size: 1.1rem;
}

.terms-line {
  margin-top: 20px;
  margin-bottom: 0;
  color: #776f87;
  font-size: .65rem;
  text-align: center;
}

.cashback-section {
  padding: 0 0 110px;
}

.cashback-banner {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #0f1634;
  border: 1px solid rgba(104, 169, 255, .2);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cashback-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: radial-gradient(circle at center, rgba(16, 26, 63, .15), rgba(7, 10, 30, .32));
}

.cashback-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cashback-copy {
  position: relative;
  z-index: 2;
  width: min(455px, 48%);
  padding: 62px 30px;
  margin: 0 auto;
  text-align: center;
}

.cashback-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cashback-copy h2 b {
  color: #52d7ff;
}

.cashback-copy p {
  color: #bac5dc;
  font-size: .88rem;
}

.cashback-copy .button {
  margin: 6px 0 15px;
}

.cashback-copy > small {
  display: block;
  color: #75809d;
  font-size: .58rem;
}

.rewards-section {
  background: #0b0116;
  border-top: 1px solid var(--line);
}

.reward-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reward-card {
  position: relative;
  min-height: 480px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
}

.reward-loyalty {
  background:
    radial-gradient(circle at 80% 75%, rgba(255, 206, 59, .3), transparent 28%),
    linear-gradient(145deg, #77361c, #2e1437 75%);
}

.reward-mystery {
  background:
    radial-gradient(circle at 75% 85%, rgba(255, 65, 136, .25), transparent 30%),
    linear-gradient(145deg, #2d1d71, #210c38 75%);
}

.reward-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(8, 2, 16, .52));
}

.reward-copy {
  position: relative;
  z-index: 3;
  max-width: 340px;
}

.reward-copy > span {
  color: #fff2c4;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.reward-copy h3 {
  margin: 10px 0 14px;
  font-size: 2.1rem;
}

.reward-copy p {
  color: #c8bdd1;
  font-size: .78rem;
}

.reward-copy .button {
  position: absolute;
  top: 340px;
  left: 0;
  min-width: 165px;
}

.reward-card > img {
  position: absolute;
  right: -30px;
  bottom: -65px;
  z-index: 2;
  width: 63%;
  max-height: 350px;
  object-fit: contain;
  object-position: bottom right;
  transition: transform .35s ease;
}

.reward-card:hover > img {
  transform: scale(1.06) translateY(-5px);
}

.vip-panel {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 65px;
  align-items: center;
  padding: 42px;
  margin-top: 18px;
  background: linear-gradient(135deg, #1e1032, #10061d);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.vip-intro h3 {
  margin: 10px 0 14px;
  font-size: 1.8rem;
}

.vip-intro p {
  color: var(--muted);
  font-size: .8rem;
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.vip-levels div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 12px 5px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.vip-levels img {
  width: 100%;
  max-width: 84px;
  aspect-ratio: 1;
  object-fit: contain;
}

.vip-levels span {
  color: #aaa1b8;
  font-size: .56rem;
  font-weight: 800;
}

.security-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(21, 164, 253, .08), transparent 28%),
    var(--bg);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.security-copy h2 {
  margin-top: 15px;
}

.security-copy > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  padding: 0;
  margin: 27px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #c9c2d4;
  font-size: .78rem;
}

.check-list span {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #07170f;
  background: var(--green);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 900;
}

.payment-card {
  padding: 30px;
  background: linear-gradient(145deg, #201039, #150725);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 26px;
}

.payment-logos img {
  width: 100%;
  height: 58px;
  padding: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
}

.secure-row {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.secure-row img {
  max-height: 42px;
}

.secure-row b,
.secure-row span {
  display: block;
}

.secure-row b {
  margin-bottom: 3px;
  font-size: .8rem;
}

.secure-row span {
  color: #8f86a2;
  font-size: .68rem;
}

.article-section {
  padding-top: 20px;
  background: var(--bg);
}

.entry-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding: 48px;
  background: #160827;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.article-index {
  position: sticky;
  top: 105px;
  display: flex;
  height: max-content;
  flex-direction: column;
  gap: 10px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.article-index span {
  margin-bottom: 7px;
  color: #71677d;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.article-index a {
  color: #aca4b9;
  font-size: .76rem;
  font-weight: 700;
  transition: color .2s ease;
}

.article-index a:hover {
  color: var(--green-2);
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 15px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.article-body h3 {
  margin: 36px 0 12px;
  font-size: 1.45rem;
}

.article-body p {
  color: #a9a1b6;
  font-size: .91rem;
}

.article-body strong {
  color: #fff;
}

.article-callout {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  margin-top: 38px;
  background: linear-gradient(120deg, rgba(125, 64, 255, .18), rgba(28, 198, 141, .1));
  border: 1px solid rgba(85, 224, 177, .16);
  border-radius: 14px;
}

.article-callout b,
.article-callout span {
  display: block;
}

.article-callout b {
  margin-bottom: 4px;
  font-size: .9rem;
}

.article-callout span {
  color: #a69daf;
  font-size: .7rem;
}

.faq-section {
  background: #0b0116;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 105px;
  align-self: start;
}

.faq-heading h2 {
  margin: 15px 0;
}

.faq-heading p {
  margin-bottom: 25px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  font-size: .92rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 20px;
  color: var(--green-2);
  background: rgba(28, 198, 141, .07);
  border: 1px solid rgba(28, 198, 141, .14);
  border-radius: 50%;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details div {
  padding: 0 54px 21px 0;
}

.faq-list details p {
  margin: 0;
  color: #9c94a9;
  font-size: .8rem;
}

.final-cta {
  padding: 48px 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(21, 164, 253, .22), transparent 28%),
    linear-gradient(110deg, #362087, #5425a2 56%, #155e62);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 28px;
  align-items: center;
}

.final-app-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  font-size: 34px;
}

.final-cta h2 {
  margin: 8px 0 4px;
  font-size: 2.2rem;
}

.final-cta p {
  margin: 0;
  color: #d3cde3;
  font-size: .82rem;
}

.site-footer {
  padding: 70px 0 25px;
  background: #07000d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .7fr);
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand p {
  max-width: 350px;
  margin: 20px 0 26px;
  color: #766e82;
  font-size: .74rem;
}

.footer-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-badges img {
  max-width: 82px;
  max-height: 34px;
  opacity: .55;
  filter: grayscale(1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column b {
  margin-bottom: 8px;
  color: #fff;
  font-size: .78rem;
}

.footer-column a {
  color: #777080;
  font-size: .7rem;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--green-2);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 30px;
  padding-top: 22px;
  color: #554e5d;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .6rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 1080px) {
  .primary-navigation {
    gap: 19px;
  }

  .header-inner {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 10px;
  }

  .phone {
    width: 292px;
  }

  .phone-screen {
    min-height: 552px;
  }

  .phone-stage {
    min-height: 580px;
  }

  .orbit-one {
    width: 460px;
    height: 460px;
  }

  .orbit-two {
    width: 380px;
    height: 380px;
  }

  .floating-chip {
    min-width: 138px;
  }

  .chip-fast {
    left: -15px;
  }

  .chip-live {
    right: -15px;
  }

  .feature-layout,
  .security-grid {
    gap: 45px;
  }

  .install-grid {
    gap: 55px;
  }

  .reward-card {
    padding: 30px;
  }

  .vip-panel {
    gap: 35px;
  }

  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .alignwide {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    order: -1;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    padding: 26px 24px 110px;
    visibility: hidden;
    background: rgba(10, 0, 20, .99);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .menu-open .primary-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 18px 4px;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation a::after {
    display: none;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .header-actions .button-primary {
    min-height: 38px;
    padding: 9px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(16, 0, 31, .88) 0%, rgba(16, 0, 31, .8) 50%, rgba(16, 0, 31, .96) 100%);
  }

  .hero-art {
    height: 560px;
    background-position: 70% center;
    background-size: auto 560px;
    opacity: .45;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 70px 0 50px;
  }

  .hero-copy {
    max-width: 680px;
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin: 0 auto;
  }

  .hero h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-buttons,
  .hero-notes {
    justify-content: center;
  }

  .phone-stage {
    min-height: 600px;
  }

  .phone {
    width: 300px;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .content-section {
    padding: 85px 0;
  }

  .feature-layout,
  .install-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .app-facts {
    position: relative;
    top: auto;
  }

  .install-copy {
    max-width: 650px;
  }

  .install-panel {
    max-width: 650px;
  }

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

  .bonus-card {
    min-height: 340px;
  }

  .bonus-character {
    width: 53%;
  }

  .reward-showcase {
    grid-template-columns: 1fr;
  }

  .reward-card > img {
    width: 53%;
  }

  .vip-panel {
    grid-template-columns: 1fr;
  }

  .entry-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-index {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-index span {
    grid-column: 1 / -1;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }

  .final-cta-inner {
    grid-template-columns: 72px 1fr;
  }

  .final-cta-inner > .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 68px;
    font-size: 15px;
  }

  .alignwide {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: 2.1rem;
  }

  .site-header .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-header .brand-word {
    font-size: 1rem;
  }

  .site-header .header-actions {
    display: none;
  }

  .menu-toggle {
    margin-left: -8px;
  }

  .hero-inner {
    padding: 54px 0 36px;
  }

  .hero h1 {
    margin: 21px 0 18px;
  }

  .hero-lead {
    font-size: .93rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-notes {
    gap: 9px 14px;
    margin-top: 20px;
  }

  .hero-notes span:nth-child(2) {
    display: none;
  }

  .phone-stage {
    min-height: 565px;
    margin-top: 10px;
  }

  .phone {
    width: 280px;
  }

  .phone-screen {
    min-height: 520px;
  }

  .app-game-grid {
    padding-bottom: 62px;
  }

  .orbit-one {
    width: 370px;
    height: 370px;
  }

  .orbit-two {
    width: 320px;
    height: 320px;
  }

  .floating-chip {
    min-width: 126px;
    padding: 8px;
  }

  .floating-chip b {
    width: 28px;
    height: 28px;
  }

  .chip-fast {
    top: 116px;
    left: -3px;
  }

  .chip-live {
    right: -2px;
    bottom: 82px;
  }

  .mobile-trust-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 11px 12px;
    color: #777080;
    background: #08000e;
    border-bottom: 1px solid var(--line);
    font-size: .55rem;
  }

  .mobile-trust-bar span + span::before {
    margin-right: 10px;
    content: "•";
    color: #4c4555;
  }

  .proof-grid > div {
    min-height: 82px;
    padding: 14px;
  }

  .proof-grid strong {
    font-size: 1.45rem;
  }

  .proof-grid span {
    font-size: .58rem;
  }

  .content-section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    margin-top: 12px;
  }

  .feature-card {
    grid-template-columns: 47px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    font-size: .6rem;
  }

  .feature-card h3 {
    font-size: 1.12rem;
  }

  .feature-card p {
    font-size: .8rem;
  }

  .app-facts,
  .payment-card {
    padding: 20px;
  }

  .app-facts dl > div {
    grid-template-columns: 85px 1fr;
  }

  .install-grid {
    gap: 36px;
  }

  .tab-button {
    font-size: .69rem;
  }

  .tab-panel {
    padding: 16px 10px 10px;
  }

  .heading-row {
    display: block;
  }

  .slider-controls {
    display: none;
  }

  .game-rail {
    grid-auto-columns: 146px;
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .games-section .provider-bar {
    width: calc(100% - 24px);
  }

  .provider-bar {
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 35px;
  }

  .provider-bar span {
    width: 100%;
    text-align: center;
  }

  .provider-bar img {
    width: 75px;
    max-height: 22px;
  }

  .bonus-card {
    min-height: 360px;
  }

  .bonus-character {
    width: 69%;
  }

  .cashback-section {
    padding: 0 0 70px;
  }

  .cashback-banner {
    min-height: 610px;
  }

  .cashback-banner > img {
    width: 218%;
    max-width: none;
    height: 100%;
    left: -59%;
    object-fit: cover;
    opacity: .68;
  }

  .cashback-banner::after {
    background: linear-gradient(180deg, rgba(8, 10, 28, .15), rgba(8, 10, 28, .88) 66%);
  }

  .cashback-copy {
    position: absolute;
    right: 20px;
    bottom: 25px;
    left: 20px;
    width: auto;
    padding: 0;
  }

  .cashback-copy h2 {
    font-size: 2.8rem;
  }

  .reward-card {
    min-height: 520px;
    padding: 25px;
  }

  .reward-copy h3 {
    font-size: 1.8rem;
  }

  .reward-copy .button {
    top: 360px;
  }

  .reward-card > img {
    right: -35px;
    bottom: -45px;
    width: 78%;
  }

  .vip-panel {
    gap: 28px;
    padding: 25px 16px;
  }

  .vip-levels {
    grid-template-columns: repeat(5, 85px);
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .payment-logos {
    grid-template-columns: 1fr 1fr;
  }

  .entry-content {
    width: calc(100% - 24px);
    gap: 32px;
    padding: 28px 20px;
  }

  .article-index {
    display: none;
  }

  .article-body h2 {
    font-size: 2rem;
  }

  .article-body h3 {
    font-size: 1.25rem;
  }

  .article-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .article-callout .button {
    width: 100%;
  }

  .faq-list summary {
    padding: 20px 0;
    font-size: .82rem;
  }

  .faq-list details div {
    padding-right: 0;
  }

  .final-cta {
    padding: 38px 0;
  }

  .final-cta-inner {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .final-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 25px;
  }

  .final-cta h2 {
    font-size: 1.65rem;
  }

  .final-cta p {
    font-size: .7rem;
  }

  .final-cta-inner > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 8px 12px;
    background: rgba(8, 0, 15, .97);
    border-top: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
  }

  .mobile-cta > div {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .mini-app-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
  }

  .mobile-cta p,
  .mobile-cta b,
  .mobile-cta small {
    display: block;
    margin: 0;
  }

  .mobile-cta b {
    font-size: .76rem;
  }

  .mobile-cta small {
    color: #8a8295;
    font-size: .58rem;
  }

  .mobile-cta > a {
    min-width: 92px;
    padding: 10px 17px;
    color: #06170f;
    background: var(--green);
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 900;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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