/*
  SLOTGEMBIRA Landing Page
  CSS utama dipisah dari index.html supaya gampang dirawat, dimodif, dan dipakai ulang.
  Manusia akhirnya menemukan konsep file terpisah. Mengharukan.
*/

:root {
  --bg: #0d0d0d;
  --bg-soft: #151010;
  --panel: #191010;
  --panel-2: #211313;
  --border: rgba(255,255,255,.12);
  --red: #e1121b;
  --red-2: #9b050c;
  --red-dark: #5c0005;
  --gold: #f7c86b;
  --orange: #ff6524;
  --text: #ffffff;
  --muted: #cfc7c7;
  --muted-2: #9d9292;
  --shadow: 0 24px 80px rgba(225,18,27,.22);
  --radius: 22px;
  --max: 1560px;
  --hero-bg-image: url("../assets/bg-hero.webp");
  --hero-bg-position: center right;
  --hero-bg-opacity: .72;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(225,18,27,.22), transparent 34%),
    radial-gradient(circle at 78% 0%, rgba(247,200,107,.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 42%, #140b0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--max), calc(100% - 72px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5,5,5,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img { width: 228px; height: auto; filter: drop-shadow(0 12px 22px rgba(225,18,27,.25)); }

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
}

.menu a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}

.menu a:hover, .menu a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 24px rgba(225,18,27,.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .35px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 48%, #350003 100%);
  box-shadow: var(--shadow);
}

.btn-gold {
  color: #1b0b00;
  background: linear-gradient(135deg, #ffe79b 0%, var(--gold) 48%, #ff9b21 100%);
  border-color: rgba(255,222,138,.75);
  box-shadow: 0 24px 70px rgba(247,200,107,.20);
}

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
}

/*
  HERO BACKGROUND
  Ganti file assets/bg-hero.webp dengan gambar background lo sendiri.
  Kalau mau ubah posisi gambar: edit --hero-bg-position di :root.
*/
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 10% 18%, rgba(225,18,27,.30), transparent 34%),
    linear-gradient(90deg, rgba(28,4,4,.98) 0%, rgba(54,10,8,.92) 43%, rgba(38,7,7,.70) 68%, rgba(14,5,5,.82) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(14,3,3,.96) 0%, rgba(37,8,7,.82) 42%, rgba(37,8,7,.38) 68%, rgba(10,3,3,.74) 100%),
    var(--hero-bg-image);
  background-size: cover;
  background-position: var(--hero-bg-position);
  background-repeat: no-repeat;
  opacity: var(--hero-bg-opacity);
  filter: saturate(1.05) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 70%, rgba(247,200,107,.18), transparent 30%);
  background-size: 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.72), transparent 100%);
}

.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(247,200,107,.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(247,200,107,.08);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255,101,36,.16);
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .97;
  letter-spacing: -2.6px;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #ffd6d6 24%, var(--red) 58%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 46px rgba(225,18,27,.16);
}

.lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f4eeee;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 750;
  font-size: 13px;
}

.chip b { color: var(--gold); }

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(150deg, rgba(225,18,27,.18), rgba(255,255,255,.04) 34%, rgba(247,200,107,.10)),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 40px 120px rgba(0,0,0,.55), 0 26px 90px rgba(225,18,27,.14);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 48% 27%, rgba(247,200,107,.28), transparent 20%),
    radial-gradient(circle at 55% 55%, rgba(225,18,27,.32), transparent 30%);
  filter: blur(4px);
}

.phone {
  position: absolute;
  inset: 44px 68px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.20);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02)),
    #090606;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.035), 0 40px 80px rgba(0,0,0,.55);
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 26px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.phone-logo { width: 168px; }

.status {
  color: #111;
  font-size: 11px;
  font-weight: 950;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ff8a00);
}

.slot-panel { padding: 22px; }

.big-tile {
  min-height: 158px;
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(225,18,27,.76), rgba(55,0,3,.72)),
    radial-gradient(circle at 80% 20%, rgba(247,200,107,.45), transparent 30%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 52px rgba(225,18,27,.24);
}

.big-tile span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #190500;
  background: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.big-tile h3 { margin: 24px 0 0; font-size: 30px; letter-spacing: -1px; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.small-tile {
  min-height: 122px;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.small-tile .icon { font-size: 28px; }
.small-tile strong { display: block; margin-top: 13px; }
.small-tile small { display: block; margin-top: 4px; color: var(--muted-2); }


.hero-mobile {
  display: none;
}

.hero-desktop {
  display: block;
}

.mobile-hero-stack {
  display: grid;
  gap: 22px;
}

.mobile-visual {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 44%, rgba(0,0,0,.84) 100%),
    var(--mobile-hero-image, var(--hero-bg-image)),
    linear-gradient(135deg, #280405, #5b0c0f 52%, #100606);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 18px 48px rgba(225,18,27,.16);
}

.mobile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 15%, rgba(247,200,107,.22), transparent 28%),
    linear-gradient(180deg, rgba(8,5,5,.14), rgba(8,5,5,.72));
  pointer-events: none;
}

.mobile-visual-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.mobile-visual-logo {
  width: 150px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.5));
}

.mobile-status {
  font-size: 10px;
  padding: 7px 10px;
}

.mobile-visual-content {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(178,8,17,.84), rgba(48,0,4,.84));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.42);
}

.mobile-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #180500;
  background: linear-gradient(135deg, #ffe79b, var(--gold));
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-visual-title {
  margin: 20px 0 0;
  max-width: 280px;
  font-size: clamp(26px, 8vw, 34px);
  line-height: 1.08;
  letter-spacing: -1px;
}


.hero-banner-card {
  min-height: auto;
  aspect-ratio: 542 / 123;
  border-radius: 24px;
  padding: 0;
  background: rgba(11, 8, 8, .84);
}

.hero-banner-card::before {
  display: none;
}

.hero-banner-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(18, 8, 8, .24), rgba(18, 8, 8, .34));
}

.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroBannerFade var(--hero-slider-duration, 12s) linear infinite;
}

.hero-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: auto 16px 14px 16px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10, 10, 10, .72), rgba(44, 3, 5, .58));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,.34);
}

.hero-banner-badge {
  width: fit-content;
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1b0600;
  background: linear-gradient(135deg, #ffe79b, var(--gold));
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.hero-banner-overlay strong {
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.08;
  letter-spacing: -.4px;
}

.hero-banner-overlay small {
  color: rgba(255,255,255,.82);
  font-size: 12.5px;
  line-height: 1.45;
}

.mobile-bonus-visual {
  min-height: auto;
  aspect-ratio: 542 / 123;
  background: rgba(11, 8, 8, .84);
}

.mobile-bonus-visual::before {
  display: none;
}

@keyframes heroBannerFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  28% { opacity: 1; }
  34% { opacity: 0; }
  100% { opacity: 0; }
}

.mobile-copy {
  position: relative;
  z-index: 1;
}

section { padding: 58px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.4px;
}

.section-head p {
  margin: 0;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.024)),
    var(--panel);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225,18,27,.30), transparent 70%);
}

.card.hot::before { background: radial-gradient(circle, rgba(255,101,36,.36), transparent 70%); }
.card.gold::before { background: radial-gradient(circle, rgba(247,200,107,.32), transparent 70%); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #150600;
  background: linear-gradient(135deg, var(--gold), #ff8a00);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.card .emoji { font-size: 52px; margin: 24px 0 14px; }
.card h3 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.8px; }
.card p { margin: 0; color: var(--muted); line-height: 1.72; }


/* HOT GAME CARDS - model visual seperti referensi kanan */
.slot-games-section {
  position: relative;
  padding: 84px 0 92px;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.slot-games-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(225,18,27,.15), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(247,200,107,.10), transparent 24%);
  opacity: .65;
}

.slot-games-section > .wrap {
  position: relative;
  z-index: 1;
}

.game-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 58px;
}

.game-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(225,18,27,.65), 6px 6px 0 rgba(0,91,255,.35);
}

.game-head p {
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: end;
  border-radius: 24px;
  border: 1px solid rgba(255,196,39,.58);
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.92) 100%),
    var(--game-image),
    linear-gradient(135deg, #210405, #5b0c0f 52%, #110708);
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 70px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.game-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.game-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: gameSlideFade var(--slider-duration, 20s) infinite ease-in-out;
  will-change: opacity;
}

.game-slide:first-child { opacity: 1; }

.game-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  animation: gameSlideZoom var(--slider-duration, 20s) infinite linear;
  animation-delay: inherit;
  will-change: transform;
}

@keyframes gameSlideFade {
  0% { opacity: 1; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes gameSlideZoom {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  50% { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.04) translate3d(0, 0, 0); }
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,210,53,.95);
  box-shadow: 0 34px 90px rgba(0,0,0,.70), 0 0 38px rgba(255,178,0,.16);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 36%, rgba(0,0,0,.92) 100%);
  z-index: 1;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.18), transparent 26%);
  opacity: .32;
  z-index: 1;
}

.game-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px;
}

.game-card h3 {
  margin: 0 0 12px;
  color: #ffd400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -.7px;
  text-shadow: 0 4px 18px rgba(0,0,0,.72);
}

.game-card p {
  margin: 0;
  max-width: 330px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 3px 14px rgba(0,0,0,.84);
}

.game-card .game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 28px;
  border-radius: 999px;
  color: #080300;
  background: linear-gradient(135deg, #ffd400 0%, #ffaf00 55%, #ff7a00 100%);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  border: 1px solid rgba(255,225,104,.72);
  box-shadow: 0 14px 30px rgba(255,146,0,.22);
}


@media (prefers-reduced-motion: reduce) {
  .game-slide,
  .game-slide img {
    animation: none;
  }

  .game-slide:not(:first-child) {
    display: none;
  }
}

.game-arcade { --game-image: url("../assets/slides/arcade-01.webp"); }
.game-race { --game-image: url("../assets/slides/race-01.webp"); }
.game-hot { --game-image: url("../assets/slides/hot-games-01.webp"); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -1.2px;
  color: var(--gold);
}

.stat span { display: block; margin-top: 5px; color: var(--muted); font-weight: 750; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.panel {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel-2);
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.panel h2, .panel h3 { margin-top: 0; letter-spacing: -1px; }
.panel p { color: var(--muted); line-height: 1.78; }

.benefits {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #160500;
  background: linear-gradient(135deg, var(--gold), #ff9b21);
  font-weight: 950;
}

.benefit strong { display: block; margin-bottom: 3px; }
.benefit span { color: var(--muted); line-height: 1.55; }

.seo-article {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 10% 0%, rgba(225,18,27,.16), transparent 36%),
    rgba(255,255,255,.04);
  padding: clamp(24px, 4vw, 42px);
}

.seo-article h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -1.4px;
  line-height: 1.05;
}

.seo-article h3 { margin: 26px 0 10px; font-size: 24px; }
.seo-article p { color: var(--muted); line-height: 1.82; font-size: 16px; }
.seo-article a { color: var(--gold); font-weight: 850; }

.table-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th, td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

th {
  color: var(--gold);
  background: rgba(225,18,27,.18);
  font-size: 13px;
  letter-spacing: .45px;
  text-transform: uppercase;
}

td { color: var(--muted); }
td strong { color: #fff; }
tr:last-child td { border-bottom: 0; }

.faq { display: grid; gap: 14px; }

details {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 22px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); line-height: 1.72; }

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(247,200,107,.24);
  background:
    radial-gradient(circle at 85% 10%, rgba(247,200,107,.24), transparent 28%),
    linear-gradient(135deg, rgba(225,18,27,.28), rgba(38,0,3,.84));
  box-shadow: 0 30px 90px rgba(225,18,27,.20);
}

.cta-box h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 48px); letter-spacing: -1.4px; }
.cta-box p { margin: 0; color: var(--muted); line-height: 1.72; max-width: 700px; }

.app-barcode-card {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: clamp(150px, 12vw, 184px);
  padding: 12px;
  border-radius: 24px;
  border: 1px solid rgba(247,200,107,.34);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.app-barcode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(247,200,107,.62);
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
}

.app-barcode-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 9px;
  border-radius: 18px;
  background: #fff;
}

.app-barcode-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-barcode-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .7px;
  line-height: 1.1;
  text-transform: uppercase;
}

.app-barcode-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

footer {
  margin-top: 58px;
  padding: 42px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 24px;
}

.footer-logo { width: 220px; margin-bottom: 16px; }
footer p, footer a { color: var(--muted); line-height: 1.68; }
footer h4 { margin: 0 0 14px; color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.copyright { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted-2); font-size: 13px; }

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
}


/* Desktop full-width hero: judul melebar seperti versi awal, preview tidak lagi memaksa headline jadi sempit. */
@media (min-width: 1001px) {
  .topbar .wrap,
  .hero-desktop .wrap {
    width: calc(100% - clamp(40px, 5vw, 96px));
    max-width: none;
  }

  .hero-desktop {
    min-height: auto;
    padding: clamp(92px, 8.5vw, 150px) 0 78px;
  }

  .hero-desktop .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: clamp(34px, 4vw, 64px);
  }

  .hero-desktop .hero-grid > :first-child {
    max-width: none;
  }

  .hero-desktop h1 {
    max-width: min(1420px, 94vw);
    margin-top: 0;
    font-size: clamp(54px, 5.5vw, 104px);
    line-height: .96;
    letter-spacing: clamp(-4px, -.22vw, -2px);
  }

  .hero-desktop .lead {
    max-width: min(980px, 70vw);
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .hero-desktop .hero-card {
    width: min(980px, 100%);
    min-height: clamp(500px, 34vw, 620px);
    margin-top: 10px;
  }

  .hero-desktop .phone {
    inset: clamp(34px, 3vw, 58px);
  }

  .hero-desktop .mini-proof {
    max-width: 860px;
  }
}

@media (min-width: 1600px) {
  .slot-games-section > .wrap,
  section:not(.hero) > .wrap,
  footer > .wrap {
    width: min(1680px, calc(100% - 96px));
  }
}


@media (max-width: 1000px) {
  .menu { display: none; }
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  .app-barcode-card {
    justify-self: start;
    width: clamp(148px, 24vw, 178px);
  }
  .hero-card { min-height: 520px; }
  .phone { inset: 36px 46px; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 22px, var(--max));
  }

  .topbar {
    background: rgba(7,3,3,.92);
  }

  .nav {
    min-height: 64px;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand img {
    width: clamp(140px, 45vw, 178px);
  }

  .nav > .btn {
    display: inline-flex;
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: .15px;
    flex: 0 0 auto;
  }

  .cta-box {
    gap: 18px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .app-barcode-card {
    justify-self: start;
    width: clamp(138px, 52vw, 168px);
    padding: 10px;
    border-radius: 20px;
  }

  .app-barcode-frame {
    padding: 8px;
    border-radius: 15px;
  }

  .app-barcode-card strong {
    font-size: 12px;
  }

  .app-barcode-card small {
    font-size: 11.5px;
  }

  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
    padding: 24px 0 44px;
  }

  .hero-mobile::before {
    background-image:
      linear-gradient(180deg, rgba(18,3,3,.94) 0%, rgba(43,6,6,.78) 52%, rgba(12,3,3,.94) 100%),
      var(--hero-bg-image);
    background-position: center top;
  }

  .mobile-hero-stack {
    display: grid;
    gap: 24px;
  }

  .mobile-visual {
    min-height: 390px;
    border-radius: 28px;
  }

  .mobile-bonus-visual {
    min-height: auto;
    aspect-ratio: 542 / 123;
    border-radius: 22px;
  }

  .mobile-bonus-visual .hero-banner-overlay {
    inset: auto 10px 10px 10px;
    padding: 10px 12px;
    gap: 4px;
  }

  .mobile-bonus-visual .hero-banner-overlay strong {
    font-size: 14px;
  }

  .mobile-bonus-visual .hero-banner-overlay small {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .mobile-copy h1,
  .hero-mobile h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: .98;
    letter-spacing: -1.6px;
  }

  .mobile-copy .lead,
  .hero-mobile .lead {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }

  .mini-proof {
    gap: 10px;
    margin-top: 24px;
  }

  .chip {
    padding: 9px 12px;
    font-size: 12px;
  }

  section {
    padding: 48px 0;
  }

  .slot-games-section {
    padding: 58px 0 64px;
  }

  .game-head {
    margin-bottom: 28px;
  }

  .game-head h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: .98;
    letter-spacing: 1.2px;
  }

  .game-head p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
  }

  .game-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-card {
    min-height: 220px;
    width: 100%;
    border-radius: 24px;
    align-items: flex-end;
  }

  .game-card-content {
    padding: 24px;
  }

  .game-card h3 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1;
  }

  .game-card p {
    display: none;
  }

  .game-card .game-btn {
    min-height: 42px;
    margin-top: 18px;
    padding: 0 22px;
    font-size: 13px;
    white-space: nowrap;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

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

  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 24px;
    align-items: start;
  }

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

  .footer-logo {
    width: min(210px, 62vw);
    margin-bottom: 14px;
  }

  footer h4 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  footer ul {
    gap: 8px;
  }

  footer a {
    font-size: 13.5px;
    line-height: 1.45;
    word-break: normal;
  }

  footer p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .table-wrap {
    overflow-x: hidden;
  }

  .table-wrap table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 16px 12px;
    font-size: 14px;
    vertical-align: top;
  }

  .table-wrap th:nth-child(1),
  .table-wrap td:nth-child(1) {
    width: 30%;
  }

  .table-wrap th:nth-child(2),
  .table-wrap td:nth-child(2) {
    width: 38%;
  }

  .table-wrap th:nth-child(3),
  .table-wrap td:nth-child(3) {
    width: 32%;
  }

  .table-wrap th:nth-child(4),
  .table-wrap td:nth-child(4) {
    display: none;
  }

  .floating-cta {
    display: none !important;
  }
}

/* JS enhancement states */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

.topbar.is-scrolled {
  background: rgba(5,5,5,.88);
  box-shadow: 0 16px 44px rgba(0,0,0,.34);
}

/* === PC FULLWIDTH FINAL OVERRIDE 2026-06-23 === */
/*
  Desktop sengaja dibuat full-bleed seperti layout awal yang terasa lebar,
  sementara mobile fix dan HOT GAMES terakhir tetap dipertahankan.
*/
@media (min-width: 1001px) {
  :root {
    --max: none;
  }

  .topbar .wrap,
  .hero-desktop > .wrap,
  .slot-games-section > .wrap,
  section:not(.hero) > .wrap,
  footer > .wrap {
    width: calc(100% - clamp(40px, 5vw, 96px));
    max-width: none;
    margin-inline: auto;
  }

  .hero-desktop {
    display: block !important;
    min-height: auto;
    padding: clamp(86px, 7vw, 128px) 0 clamp(58px, 5vw, 86px);
  }

  .hero-mobile {
    display: none !important;
  }

  .hero-desktop .hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: clamp(30px, 4vw, 58px);
    align-items: start;
  }

  .hero-desktop .hero-grid > :first-child {
    width: 100%;
    max-width: none;
  }

  .hero-desktop h1 {
    max-width: min(1500px, 100%);
    margin-top: 0;
    font-size: clamp(56px, 5.35vw, 96px);
    line-height: .96;
    letter-spacing: clamp(-4px, -.22vw, -2px);
  }

  .hero-desktop .lead {
    max-width: min(1040px, 78vw);
    font-size: clamp(17px, 1.05vw, 20px);
  }

  .hero-desktop .hero-actions,
  .hero-desktop .mini-proof {
    max-width: 1040px;
  }

  .hero-desktop .hero-card {
    width: min(900px, 100%);
    min-height: clamp(500px, 34vw, 620px);
    margin-top: 4px;
  }

  .hero-desktop .hero-banner-card {
    width: min(980px, 100%);
    min-height: auto;
    aspect-ratio: 542 / 123;
  }

  .hero-desktop .phone {
    inset: clamp(34px, 3vw, 58px);
  }

  .slot-games-section {
    padding: clamp(72px, 6vw, 104px) 0 clamp(78px, 6.2vw, 112px);
  }

  .slot-games-section > .wrap {
    width: calc(100% - clamp(48px, 6vw, 120px));
  }

  .game-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 42px);
  }

  .game-card {
    min-height: clamp(360px, 27vw, 520px);
  }

  .game-card-content {
    padding: clamp(24px, 2.2vw, 36px);
  }

  .game-card h3 {
    font-size: clamp(30px, 2.6vw, 46px);
  }

  .game-card p {
    max-width: 420px;
    font-size: clamp(15px, .95vw, 18px);
  }
}

@media (min-width: 1440px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 238px;
  }
}


/* === DESKTOP FOOTER RIGHT GROUP FIX 2026-06-23 === */
/* Logo/deskripsi tetap kiri, Menu/Fitur/Kontak dibuat jadi grup rapat di kanan. */
@media (min-width: 1001px) {
  footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) auto auto auto;
    column-gap: clamp(44px, 4vw, 84px);
    row-gap: 24px;
    align-items: start;
  }

  footer .footer-grid > :first-child {
    max-width: 620px;
  }

  footer .footer-grid > :nth-child(n+2) {
    width: max-content;
    min-width: 118px;
  }
}

/* === SHOWCASE SECTION HEADINGS FIX 2026-06-23 === */
/* Update Aktivitas dan FAQ dibuat center seperti HOT GAMES, tapi efeknya beda dan tetap kebaca. */
.title-showcase {
  display: block;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 34px;
}

.title-showcase h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: .95;
  letter-spacing: .8px;
  color: #fff;
}

.title-showcase h2::after {
  content: "";
  display: block;
  width: min(180px, 62%);
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  box-shadow: 0 0 28px rgba(225,18,27,.32);
}

.title-showcase p {
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.75;
}

.activity-title h2 {
  text-shadow:
    2px 2px 0 rgba(225,18,27,.72),
    5px 5px 0 rgba(247,200,107,.22),
    0 18px 42px rgba(225,18,27,.26);
}

.faq-title h2 {
  background: linear-gradient(135deg, #fff 0%, #ffe0e0 28%, #ff3a42 56%, #ffd36f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 36px rgba(225,18,27,.18);
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,.42));
}

.faq-title h2::after {
  background: linear-gradient(90deg, transparent, #ff3a42, #ffd36f, transparent);
}

@media (max-width: 640px) {
  .title-showcase {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .title-showcase h2 {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: .2px;
  }

  .title-showcase p {
    max-width: 96%;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* === NAV PAGES UPDATE 2026-06-23 === */
.subpage-main {
  overflow: hidden;
}

.subpage-hero {
  position: relative;
  padding: clamp(78px, 7vw, 126px) 0 clamp(44px, 5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(120deg, rgba(92,0,5,.82), rgba(8,8,8,.58)),
    var(--hero-bg-image) center right / cover no-repeat;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 18%, rgba(247,200,107,.22), transparent 30%);
}

.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
}

.subpage-hero h1 {
  margin: 16px 0 18px;
  max-width: 1050px;
  font-size: clamp(42px, 5vw, 82px);
  line-height: .96;
  letter-spacing: -2.8px;
}

.subpage-hero .lead {
  max-width: 820px;
}

.page-highlight-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 70% 10%, rgba(247,200,107,.24), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(14px);
}

.page-highlight-card strong {
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: .92;
  letter-spacing: -2px;
}

.page-highlight-card span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.page-highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.subpage-games-list {
  padding-top: clamp(56px, 6vw, 96px);
}

.bonus-page-section {
  padding-bottom: 0;
}

.bonus-list-head {
  margin-bottom: 22px;
}

.bonus-promo-list {
  display: grid;
  gap: 18px;
}

.bonus-promo-item {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12,12,14,.98), rgba(8,8,10,.98));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
}

.bonus-promo-media {
  display: block;
  line-height: 0;
}

.bonus-promo-banner {
  display: block;
  width: 100%;
  aspect-ratio: 542 / 123;
  object-fit: cover;
  background: rgba(85, 6, 10, .4);
}

.bonus-promo-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 14px;
}

.bonus-promo-copy {
  min-width: 0;
}

.bonus-promo-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.65vw, 28px);
  line-height: 1.24;
  color: var(--text);
  text-transform: uppercase;
}

.bonus-promo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.bonus-promo-detail {
  flex: 0 0 auto;
  min-width: 102px;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.03);
}

.bonus-promo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(0,0,0,.42);
}

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

  .page-highlight-card {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    padding: 54px 0 36px;
  }

  .subpage-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
    letter-spacing: -1.8px;
  }

  .page-highlight-card {
    min-height: 210px;
    border-radius: 26px;
    padding: 22px;
  }

  .page-highlight-card strong {
    font-size: clamp(34px, 13vw, 56px);
  }

  .bonus-promo-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-promo-detail {
    width: 100%;
  }
}



/* SEO fix: mobile hero uses a visual title instead of a second H1. */
.mobile-hero-title {
  display: block;
  margin: 22px 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .97;
  letter-spacing: -2.6px;
  font-weight: 950;
}

@media (max-width: 760px) {
  .mobile-copy .mobile-hero-title,
  .hero-mobile .mobile-hero-title {
    margin: 0 0 16px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: .98;
    letter-spacing: -1.6px;
  }
}


/* === SUBPAGE HERO CENTER + IMAGE FIT UPDATE 2026-06-25 === */
.subpage-hero-grid {
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}

.subpage-hero-grid > div:first-child {
  max-width: 980px;
}

.subpage-hero .badge,
.subpage-hero .hero-actions,
.subpage-hero .page-highlight-card {
  display: none !important;
}

.subpage-hero h1 {
  max-width: 100%;
  margin: 0 0 18px;
}

.subpage-hero .lead {
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner-slider,
.game-slider,
.bonus-promo-media {
  background: linear-gradient(180deg, rgba(18,8,8,.92), rgba(32,10,10,.82));
}

.hero-banner-slide img,
.game-slide img,
.bonus-promo-banner {
  object-fit: contain !important;
  object-position: center center;
  background: rgba(12, 8, 8, .92);
}

.hero-banner-slide img,
.bonus-promo-banner {
  padding: 6px;
}

.game-card {
  background-size: cover, contain, cover;
  background-position: center center, center center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.game-slide img {
  padding: 12px;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 640px) {
  .subpage-hero {
    padding: 48px 0 32px;
  }

  .subpage-hero .lead {
    max-width: 100%;
  }

  .hero-banner-slide img,
  .bonus-promo-banner {
    padding: 4px;
  }

  .game-slide img {
    padding: 8px;
  }
}


/* === HERO MINIMAL + HOME CENTER UPDATE 2026-06-25C === */
.subpage-hero {
  padding: clamp(52px, 5vw, 84px) 0 clamp(24px, 3vw, 36px) !important;
}

.subpage-hero-grid {
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
  gap: 0 !important;
}

.subpage-hero-grid > div:first-child {
  max-width: 980px;
}

.subpage-hero .badge,
.subpage-hero .lead,
.subpage-hero .hero-actions,
.subpage-hero .page-highlight-card {
  display: none !important;
}

.subpage-hero h1 {
  margin: 0 !important;
  max-width: 100%;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.hero-desktop .hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center;
  text-align: center;
  align-items: center;
}

.hero-desktop .hero-grid > :first-child {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-desktop h1,
.hero-desktop .lead,
.hero-desktop .hero-actions,
.hero-desktop .mini-proof {
  margin-left: auto;
  margin-right: auto;
}

.hero-desktop .lead {
  max-width: min(920px, 90vw);
}

.hero-desktop .hero-actions,
.hero-desktop .mini-proof {
  justify-content: center;
}

.hero-desktop .hero-banner-card {
  width: min(980px, 100%);
  margin-inline: auto;
}

.hero-mobile .wrap,
.hero-mobile .mobile-copy {
  text-align: center;
}

.hero-mobile .mobile-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-mobile .lead {
  max-width: 680px;
  margin-inline: auto;
}

.hero-mobile .hero-actions,
.hero-mobile .mini-proof {
  justify-content: center;
}

.hero-mobile .mobile-bonus-visual {
  width: min(100%, 860px);
  margin-inline: auto;
}

@media (max-width: 1000px) {
  .subpage-hero {
    padding: 44px 0 22px !important;
  }

  .subpage-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
    letter-spacing: -1.4px;
  }
}

@media (max-width: 640px) {
  .hero-mobile {
    padding: 20px 0 40px;
  }

  .mobile-hero-stack {
    gap: 18px;
  }

  .hero-mobile .mobile-copy {
    padding-inline: 4px;
  }

  .hero-mobile .mobile-hero-title {
    margin: 0 0 14px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.02;
    letter-spacing: -1.4px;
  }

  .hero-mobile .lead {
    font-size: 15px;
    line-height: 1.68;
    max-width: 100%;
  }

  .hero-mobile .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-mobile .hero-actions .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .hero-mobile .mini-proof {
    justify-content: center;
    gap: 8px;
  }

  .hero-mobile .chip {
    font-size: 12px;
    padding: 9px 12px;
  }

  .mobile-bonus-visual {
    border-radius: 18px;
  }

  .subpage-hero {
    padding: 38px 0 18px !important;
  }

  .subpage-hero h1 {
    font-size: clamp(30px, 8.5vw, 40px);
    letter-spacing: -1.2px;
  }
}

/* === CLEAN PREMIUM HERO UPDATE 2026-06-25 === */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #1b0700;
  background: linear-gradient(135deg, #ffe79b 0%, var(--gold) 52%, #ff9b21 100%);
  border: 1px solid rgba(255,230,160,.78);
  box-shadow: 0 16px 44px rgba(247,200,107,.18);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.hero-desktop {
  padding-top: clamp(84px, 7vw, 128px) !important;
  padding-bottom: clamp(54px, 5vw, 84px) !important;
}

.hero-desktop .hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center;
  align-items: center;
  text-align: center;
  gap: clamp(34px, 4.5vw, 64px);
}

.hero-desktop .hero-grid > :first-child {
  width: 100%;
  max-width: 1120px !important;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-desktop h1 {
  max-width: 1060px !important;
  margin: 0 auto 20px !important;
  font-size: clamp(54px, 5.25vw, 94px) !important;
  line-height: .94 !important;
  letter-spacing: clamp(-3.8px, -.2vw, -2px) !important;
}

.hero-desktop .lead {
  max-width: 850px !important;
  margin: 0 auto;
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.76;
  color: rgba(255,255,255,.82);
}

.hero-desktop .hero-actions,
.hero-desktop .mini-proof {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-desktop .hero-banner-card {
  width: min(1080px, 100%) !important;
  margin: 0 auto;
  border-radius: 30px;
  border-color: rgba(247,200,107,.28);
  background: linear-gradient(180deg, rgba(18,8,8,.92), rgba(42,9,9,.82));
  box-shadow: 0 34px 100px rgba(0,0,0,.46), 0 22px 82px rgba(225,18,27,.22), inset 0 0 0 1px rgba(255,255,255,.06);
}

.hero-desktop .hero-banner-slider {
  border-radius: inherit;
}

.hero-desktop .hero-banner-slide img,
.hero-mobile .hero-banner-slide img {
  object-fit: contain !important;
  padding: 8px;
}

.hero-mobile {
  text-align: center;
}

.hero-mobile .mobile-hero-stack {
  gap: 20px;
  justify-items: center;
}

.hero-mobile .mobile-copy {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-mobile .hero-kicker {
  margin-bottom: 14px;
  padding: 8px 12px;
  font-size: 10.5px;
  letter-spacing: .45px;
}

.hero-mobile .mobile-hero-title {
  max-width: 680px;
  margin: 0 auto 14px !important;
  font-size: clamp(34px, 9.4vw, 48px) !important;
  line-height: 1 !important;
  letter-spacing: -1.45px !important;
}

.hero-mobile .lead {
  max-width: 620px !important;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
}

.hero-mobile .hero-actions,
.hero-mobile .mini-proof {
  justify-content: center;
}

.hero-mobile .mobile-bonus-visual {
  width: min(100%, 760px) !important;
  margin: 4px auto 0;
  border-radius: 22px;
  border-color: rgba(247,200,107,.26);
  box-shadow: 0 22px 70px rgba(0,0,0,.42), 0 14px 46px rgba(225,18,27,.18);
}

.subpage-hero {
  padding: clamp(48px, 4.6vw, 78px) 0 clamp(24px, 2.8vw, 34px) !important;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  justify-items: center;
  gap: 0 !important;
  text-align: center;
}

.subpage-hero-copy {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.subpage-hero h1 {
  margin: 0 !important;
  max-width: 100%;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
}

@media (max-width: 640px) {
  .hero-mobile {
    padding-top: 22px !important;
    padding-bottom: 40px !important;
  }

  .hero-mobile .mobile-hero-stack {
    gap: 18px;
  }

  .hero-mobile .mobile-hero-title {
    font-size: clamp(31px, 9.2vw, 40px) !important;
    letter-spacing: -1.15px !important;
  }

  .hero-mobile .lead {
    font-size: 14.8px;
    line-height: 1.66;
  }

  .hero-mobile .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-mobile .hero-actions .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-mobile .mini-proof {
    gap: 8px;
  }

  .hero-mobile .chip {
    font-size: 11.5px;
    padding: 8px 10px;
  }

  .hero-mobile .mobile-bonus-visual {
    border-radius: 18px;
  }

  .hero-mobile .hero-banner-slide img {
    padding: 5px;
  }

  .subpage-hero {
    padding: 34px 0 18px !important;
  }

  .subpage-hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    letter-spacing: -1.1px;
  }
}
