:root {
  --bg: #fff8f1;
  --paper: #ffffff;
  --ink: #332934;
  --muted: #746572;
  --pink: #d93686;
  --rose: #b82a68;
  --peach: #ff9d7d;
  --mint: #8bd9c2;
  --lemon: #ffd66a;
  --sky: #78c7ed;
  --line: rgba(184, 42, 104, 0.17);
  --shadow: 0 22px 62px rgba(124, 71, 102, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  background:
    linear-gradient(180deg, #fff8f1 0%, #fffefd 54%, #fff3f7 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(184, 42, 104, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(184, 42, 104, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2.45rem, 5.6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: 0 14px 34px rgba(55, 31, 44, 0.36);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.28rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--rose), var(--peach));
  box-shadow: 0 12px 28px rgba(184, 42, 104, 0.24);
  font-size: 0.86rem;
}

.brand strong {
  color: var(--rose);
  font-size: 1.08rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #655563;
  font-size: 0.93rem;
  font-weight: 850;
}

.top-cta,
.primary,
.secondary,
.mobile-cta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.top-cta,
.primary,
.mobile-cta a {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 16px 34px rgba(184, 42, 104, 0.24);
}

.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.mobile-cta {
  display: none;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mobile-cta a {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(47, 33, 44, 0.78) 0%, rgba(71, 42, 57, 0.48) 44%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(255, 248, 241, 0.16));
}

.hero-content {
  padding: 92px 0 82px;
}

.eyebrow,
.kicker {
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe3ef;
}

.hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

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

.facts {
  padding: 22px 0 54px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.facts article {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(124, 71, 102, 0.07);
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.facts strong {
  display: block;
  margin-top: 6px;
  color: var(--rose);
  font-size: 1.28rem;
  line-height: 1.12;
}

.section {
  padding: 76px 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.92fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 34px;
}

.section-index {
  align-self: start;
  padding-top: 6px;
}

.section-index span {
  display: block;
  color: var(--peach);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 950;
  line-height: 1;
}

.section-index strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--rose);
  font-size: 1.12rem;
}

.section-index p {
  font-size: 0.96rem;
}

.article-copy p,
.copy-wide p,
.tips-layout p {
  font-size: 1.05rem;
}

.visual-frame {
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mechanics {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(139, 217, 194, 0.18), rgba(255, 214, 106, 0.18)),
    rgba(255, 255, 255, 0.62);
}

.copy-wide {
  max-width: 960px;
}

.bonus-grid,
.rtp-grid {
  display: grid;
  align-items: center;
  gap: 44px;
}

.bonus-grid {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
}

.bonus {
  background: #fffdf8;
}

.rtp {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 246, 239, 0.82), rgba(255, 255, 255, 0.76));
}

.rtp-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: start;
}

.rtp-card {
  position: sticky;
  top: 96px;
  padding: 16px 16px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rtp-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.rtp-card strong {
  display: block;
  margin: 18px 2px 10px;
  color: var(--rose);
  font-size: 1.16rem;
}

.rtp-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.rtp-card li + li {
  margin-top: 9px;
}

.tips-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
}

.tips-layout > p {
  grid-column: 2;
}

.player-notes {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(120, 199, 237, 0.16), rgba(255, 157, 125, 0.12)),
    rgba(255, 255, 255, 0.72);
}

.notes-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.notes-heading {
  position: sticky;
  top: 100px;
}

.notes-copy p {
  font-size: 1.05rem;
}

.tips-list {
  display: grid;
  gap: 14px;
}

.tips-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(124, 71, 102, 0.08);
}

.tips-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--pink);
  font-weight: 950;
}

.tips-list p {
  margin-bottom: 0;
}

.cta-section {
  padding: 28px 0 76px;
}

.cta-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 214, 106, 0.26), rgba(217, 54, 134, 0.13)),
    #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  max-width: 840px;
  margin-inline: auto;
}

.faq {
  padding-top: 18px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(124, 71, 102, 0.08);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq details p {
  padding: 0 20px 20px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong {
  color: var(--rose);
}

@media (max-width: 1080px) {
  .nav {
    gap: 10px;
  }

  .top-cta {
    display: none;
  }

  .mobile-cta {
    position: sticky;
    top: 74px;
    z-index: 35;
    display: block;
  }

  .editorial-grid,
  .bonus-grid,
  .rtp-grid,
  .tips-layout,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .tips-layout > p {
    grid-column: auto;
  }

  .notes-heading {
    position: static;
  }

  .section-index {
    max-width: 560px;
  }

  .rtp-card {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar-inner {
    min-height: 68px;
  }

  .brand span {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav {
    display: none;
  }

  .mobile-cta {
    top: 68px;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(47, 33, 44, 0.82), rgba(71, 42, 57, 0.55)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(255, 248, 241, 0.08));
  }

  .hero-content {
    padding: 52px 0 48px;
  }

  h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.45rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

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

  .section {
    padding: 54px 0;
  }

  .visual-frame {
    border-width: 6px;
  }

  .cta-panel {
    padding: 28px 18px;
  }

  .cta-panel .primary {
    width: 100%;
  }

  .footer-inner {
    display: block;
  }
}
