* {
  box-sizing:border-box}

html {
  scroll-behavior:smooth}

body {
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:#fff;
  color:#1f2937}

img {
  display:block;
  width:100%}

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

button,input {
  font:inherit}

.container {
  width:min(1280px,calc(100% - 40px));
  margin:auto}

.top-strip {
  background:#0a1d46;
  color:#fff;
  font-size:12px;
  font-weight:800}

.top-strip-inner {
  height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between}

.top-tools {
  display:flex;
  align-items:center;
  gap:12px}

.lang-btn {
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer}

.lang-switch {
  display:flex;
  border-radius:4px;
  overflow:hidden}

.lang-switch button {
  border:0;
  padding:4px 7px;
  background:#28416f;
  color:#fff;
  font-size:11px}

.lang-switch .active {
  background:#ff942c}

.main-header {
  position:sticky;
  top:0;
  z-index:40;
  background:#102652;
  color:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.18)}

.header-inner {
  min-height:74px;
  display:flex;
  align-items:center;
  gap:30px}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content}

.brand-mark {
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#ff9b2f,#ff6d18);
  font-weight:900;
  color:#fff}

.brand-text {
  font-size:28px;
  font-weight:900;
  letter-spacing:-1px}

.brand-text span {
  color:#ff9b2f}

.desktop-nav {
  display:flex;
  gap:24px;
  font-size:14px;
  font-weight:700}

.desktop-nav a:hover {
  color:#ff9b2f}

.header-actions {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px}

.search-box {
  width:250px;
  height:42px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:6px;
  background:#0b1835;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 12px}

.search-box input {
  width:100%;
  background:transparent;
  border:0;
  outline:0;
  color:#fff}

.login-btn {
  position: relative;
  height: 46px;
  padding: 0 26px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;

  background: linear-gradient(
    135deg,
    #ffb02e,
    #ff7a18
  );

  color: #ffffff;
  font-weight: 900;
  cursor: pointer;

  box-shadow:
    0 8px 22px rgba(255, 126, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -80%;
  width: 45%;
  height: 300%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );

  transform: rotate(25deg);
  transition: left 0.75s ease;
}

.login-btn:hover {
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 0 20px rgba(255, 171, 45, 0.62),
    0 14px 30px rgba(255, 126, 24, 0.38);
}

.login-btn:hover::before {
  left: 160%;
}

.login-btn:active {
  transform: translateY(0) scale(0.97);
}

.menu-btn {
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  font-size:24px}

.page-shell {
  background:linear-gradient(rgba(7,27,66,.88),rgba(7,27,66,.82)),url('../images/page-bg.jpg') center/cover fixed;
  padding:0 0 70px}

.hero-slider {
  position:relative;
  height:520px;
  overflow:hidden;
  background:#17213d}

.hero-slide {
  position:absolute;
  inset:0;
  opacity:0;
  transition:.5s}

.hero-slide.active {
  opacity:1}

.hero-slide img {
  height:100%;
  object-fit:cover}

.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.08) 70%)}

.hero-content {
  position:absolute;
  left:38px;
  bottom:54px;
  max-width:650px;
  color:#fff}

.eyebrow,.mini-title {
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.6px;
  color:#ff9b2f}

.hero-content h1,.hero-content h2 {
  font-size:44px;
  line-height:1.05;
  margin:10px 0 12px}

.hero-content p {
  font-size:17px;
  max-width:560px;
  line-height:1.6}

.outline-btn {
  display:inline-block;
  border:3px solid #ff942c;
  color:#fff;
  font-weight:900;
  padding:13px 20px;
  margin-top:8px}

.slider-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.7);
  font-size:30px;
  cursor:pointer}

.slider-arrow.prev {
  left:16px}

.slider-arrow.next {
  right:16px}

.slider-dots {
  position:absolute;
  right:24px;
  bottom:24px;
  display:flex;
  gap:8px}

.slider-dots button {
  width:42px;
  height:4px;
  border:0;
  background:rgba(255,255,255,.35)}

.slider-dots .active {
  background:#ff942c}

.offer-panel {
  margin-top:14px;
  border:4px solid #ff942c;
  border-radius:16px;
  background:rgba(11,24,53,.82);
  padding:18px;
  color:#fff}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px}

.section-heading h2 {
  margin:0;
  font-size:26px}

.section-heading a {
  font-weight:800;
  color:#ff9b2f}

.offer-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px}

.offer-card {
  display:grid;
  grid-template-columns:180px 1fr;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  overflow:hidden}

.offer-card img {
  height:140px;
  object-fit:cover}

.offer-info {
  padding:16px}

.offer-info h3 {
  margin:8px 0}

.offer-label {
  font-size:11px;
  color:#ff9b2f;
  font-weight:900}

.price-row {
  display:flex;
  gap:12px;
  align-items:center}

.games-section {
  padding:65px 0 20px}

.section-heading.light {
  color:#fff}

.mini-title.dark {
  color:#ff7a18}

.game-scroller {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:185px;
  gap:14px;
  overflow-x:auto;
  padding-bottom:12px;
  scrollbar-width:thin}

.game-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  transition:.25s}

.game-card:hover {
  transform:translateY(-6px)}

.game-card img {
  height:235px;
  object-fit:cover;
  background:#eef2f7}

.game-info {
  padding:13px}

.game-info h3 {
  margin:0 0 4px;
  font-size:16px}

.game-info p {
  margin:0;
  color:#6b7280;
  font-size:13px}

.steps-section,.faq-section {
  margin-top:50px;
  background:#fff;
  border-radius:18px;
  padding:34px}

.benefit-section {
  margin-top:50px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  background:#fff;
  border-radius:18px;
  overflow:hidden}

.benefit-copy {
  padding:48px}

.benefit-copy h2 {
  font-size:38px;
  margin:10px 0 14px}

.benefit-copy p {
  line-height:1.7;
  color:#5c6472}

.benefit-copy ul {
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
  font-weight:700}

.benefit-image img {
  height:100%;
  object-fit:cover;
  min-height:420px;
  background:#eef2f7}

.faq-list {
  display:grid;
  gap:10px}

.faq-list details {
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:15px 18px}

.faq-list summary {
  font-weight:800;
  cursor:pointer}

.faq-list p {
  color:#6b7280;
  line-height:1.6}

.site-footer {
  background:#081a3d;
  color:#fff;
  padding:55px 0 20px}

.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:35px}

.footer-grid h3 {
  margin-top:0;
  color:#ff9b2f}

.footer-grid a {
  display:block;
  margin:10px 0;
  color:#d7deeb}

.footer-grid p {
  color:#b8c2d7;
  line-height:1.7;
  max-width:460px}

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:30px;
  padding-top:20px;
  color:#98a6c1;
  font-size:13px}

.whatsapp-float {
  position:fixed;
  right:22px;
  bottom:90px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#20c767;
  color:#fff;
  font-size:28px;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  z-index:60}

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 70;

  width: min(940px, calc(100% - 24px));
  padding: 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  transform: translateX(-50%);

  background: rgba(19, 38, 74, 0.78);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);

  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 15px;

  color: #ffffff;

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  animation: cookieSlideUp 0.75s ease both;
}

.cookie-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 86%;
  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #ff9b2f,
    #ffd166,
    #ff9b2f,
    transparent
  );

  box-shadow: 0 0 14px rgba(255, 155, 47, 0.75);
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 50px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

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

.cookie-actions button {
  border:0;
  border-radius:999px;
  padding:11px 18px;
  color:#fff;
  font-weight:800;
  font-size:12px}

.cookie-secondary {
  background:transparent;
  border:1px solid #ff9b2f!important}

.cookie-primary {
  background:#ff942c}

.cookie-danger {
  background:#f23a58}

@media(max-width:1050px) {
  .desktop-nav {
  display:none}

.menu-btn {
  display:block}

.search-box {
  width:190px}

.hero-slider {
  height:440px}

.footer-grid {
  grid-template-columns:repeat(2,1fr)}
}

@media(max-width:720px) {
  .container {
  width:min(100% - 24px,1280px)}

.top-strip-inner {
  height:30px}

.top-tools {
  display:none}

.header-inner {
  min-height:64px}

.brand-text {
  font-size:22px}

.brand-mark {
  width:36px;
  height:36px}

.search-box {
  display:none}

.login-btn {
  padding:0 14px}

.page-shell {
  padding-bottom:40px}

.hero-slider {
  height:420px;
  margin-left:-12px;
  margin-right:-12px}

.hero-content {
  left:22px;
  right:22px;
  bottom:42px}

.hero-content h1,.hero-content h2 {
  font-size:32px}

.hero-content p {
  font-size:15px}

.offer-grid {
  grid-template-columns:1fr}

.offer-card {
  grid-template-columns:120px 1fr}

.offer-card img {
  height:120px}

.games-section {
  padding-top:45px}

.steps-section,.faq-section {
  padding:22px}

.benefit-section {
  grid-template-columns:1fr}

.benefit-copy {
  padding:28px}

.benefit-copy h2 {
  font-size:30px}

.benefit-image img {
  min-height:280px}

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

.cookie-bar {
  align-items:flex-start;
  flex-direction:column}

.cookie-actions {
  width:100%;
  overflow:auto}

.cookie-actions button {
  flex:1;
  white-space:nowrap}

.whatsapp-float {
  bottom:135px}
}

/* =========================================================
   KILAU4D — GLASS EFFECTS (CLEAN & FIXED)
   ========================================================= */

body  {
  background: linear-gradient(135deg, #081b45, #102d63, #193f82);
}

/* Header kaca */
.main-header  {
  background: rgba(12, 22, 55, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

/* Kolom pencarian kaca */
.search-box  {
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

/* Teks pada banner */
.hero-content  {
  background: rgba(5, 13, 34, 0.34);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

/* Kotak promo kaca */
.offer-panel  {
  background: rgba(15, 28, 68, 0.58);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

/* Kartu game kaca */
.game-card  {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.game-card::before  {
  content: "";
  position: absolute;
  z-index: 3;
  top: -110%;
  left: -90%;
  width: 46%;
  height: 320%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.52),
    transparent
  );
  transform: rotate(24deg);
  transition: left 0.85s ease;
}

.game-card:hover  {
  transform: translateY(-10px);
  border-color: rgba(255, 179, 0, 0.95);
  box-shadow:
    0 0 22px rgba(255, 180, 0, 0.34),
    0 24px 55px rgba(0, 0, 0, 0.34);
}

.game-card:hover::before  {
  left: 165%;
}

.game-card img  {
  border-radius: 17px 17px 0 0;
  transition: transform 0.45s ease;
}

.game-card:hover img  {
  transform: scale(1.055);
}

.game-info  {
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Bagian benefit menjadi kaca */
.benefit-section  {
  position: relative;
  isolation: isolate;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.benefit-section::before  {
  content: "";
  position: absolute;
  z-index: 5;
  top: -130%;
  left: -55%;
  width: 34%;
  height: 360%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.26),
    transparent
  );
  transform: rotate(23deg);
  transition: left 1s ease;
}

.benefit-section:hover::before  {
  left: 145%;
}

.benefit-copy  {
  position: relative;
  z-index: 2;
  padding: 48px;
  color: #ffffff;
  background: rgba(7, 27, 66, 0.35);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.benefit-copy h2,
.benefit-copy li  {
  color: #ffffff;
}

.benefit-copy p  {
  color: rgba(255, 255, 255, 0.82);
}

.benefit-image  {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-image img  {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #eef2f7;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.30),
    0 0 25px rgba(255, 165, 0, 0.18);
  transition: transform 0.45s ease;
}

.benefit-image:hover img  {
  transform: scale(1.035);
}

/* Kaca ringan untuk bagian putih */
.steps-section,
.faq-section  {
  background: rgba(255, 255, 255, 0.90);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
}

/* Mobile */
@media (max-width: 720px)  {
  .hero-content  {
  padding: 22px;
}

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

.benefit-copy  {
  padding: 28px;
}

.benefit-image img  {
  min-height: 280px;
}

/* Efek hover tidak dipaksa pada layar sentuh */
  .game-card:hover,
  .benefit-image:hover img  {
  transform: none;
}
}

/* Browser tanpa backdrop-filter tetap terlihat rapi */

/* =========================================================
   CARA TOP UP — KARTU PREMIUM
   ========================================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.94),
    rgba(238, 243, 251, 0.82)
  );
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 14px 35px rgba(9, 30, 70, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -85%;
  width: 42%;
  height: 320%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transform: rotate(24deg);
  transition: left 0.85s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffb300, #ff7300);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 179, 0, 0.9);
  box-shadow:
    0 0 22px rgba(255, 180, 0, 0.28),
    0 22px 48px rgba(9, 30, 70, 0.22);
}

.step-card:hover::before {
  left: 165%;
}

.step-card span {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb300, #ff7300);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(255, 128, 0, 0.28);
}

.step-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: #17223a;
  font-size: 21px;
  line-height: 1.25;
}

.step-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #647087;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    min-height: auto;
    padding: 24px;
  }

  .step-card:hover {
    transform: none;
  }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)))  {
  .main-header,
  .offer-panel,
  .hero-content,
  .benefit-section  {
  background: rgba(10, 29, 70, 0.94);
}

.game-card,
  .steps-section,
  .faq-section  {
  background: rgba(255, 255, 255, 0.96);
}
}
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: 210px;
  height: 62px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 153, 31, 0.35))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.brand-logo:hover img {
  transform: scale(1.04);
  filter:
    drop-shadow(0 0 14px rgba(255, 171, 45, 0.70))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.30));
}
@media (max-width: 720px) {
  .brand-logo img {
    width: 155px;
    height: 48px;
  }
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 80;

  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;

  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #2ee675,
    #12ad55
  );

  color: #ffffff;

  box-shadow:
    0 0 0 0 rgba(37, 211, 102, 0.45),
    0 12px 30px rgba(0, 0, 0, 0.30);

  animation:
    whatsappPulse 2s infinite,
    whatsappFloat 3s ease-in-out infinite;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 24px rgba(37, 211, 102, 0.75),
    0 16px 36px rgba(0, 0, 0, 0.32);
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.55),
      0 12px 30px rgba(0, 0, 0, 0.30);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(37, 211, 102, 0),
      0 12px 30px rgba(0, 0, 0, 0.30);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 12px 30px rgba(0, 0, 0, 0.30);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}
.cookie-actions button {
  position: relative;
  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cookie-actions button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.footer-logo{

    margin-bottom:20px;

}

.footer-logo img{

    width:220px;

    height:auto;

    object-fit:contain;

    transition:.35s;

    filter:

    drop-shadow(0 0 8px rgba(255,180,0,.25));

}

.footer-logo img:hover{

    transform:scale(1.05);

    filter:

    drop-shadow(0 0 18px rgba(255,180,0,.6));

}
@media(max-width:768px){

.footer-logo img{

width:180px;

}

}
.game-link{
    display:block;
    text-decoration:none;
    color:inherit;
    border-radius:18px;
    overflow:hidden;
}

.game-link:hover{
    text-decoration:none;
}

.game-link .game-card{
    cursor:pointer;
    height:100%;
}

.game-link:focus-visible{
    outline:3px solid #ff9b2f;
    outline-offset:4px;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  width: 250px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 6px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.search-submit {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  white-space: nowrap;
  text-decoration: none;
}
/* =========================================================
   MOBILE FIX KILAU4D
   Tempel paling bawah style.css
   ========================================================= */

@media (max-width: 720px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  body {
    background: #0b2250;
  }

  .page-shell {
    width: 100%;
    min-width: 100%;
    padding: 0 0 210px;
    overflow: hidden;
  }

  /* Perbaikan lebar container */
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* ================= HEADER ================= */

  .top-strip-inner {
    height: 28px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-strip {
    font-size: 9px;
  }

  .top-tools {
    display: none;
  }

  .main-header {
    width: 100%;
  }

  .header-inner {
    width: 100%;
    min-height: 66px;
    padding: 8px 12px;
    gap: 8px;
    display: flex;
    align-items: center;
  }

  .brand-logo {
    flex: 0 0 auto;
  }

  .brand-logo img {
    width: 105px;
    height: 45px;
    object-fit: contain;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    flex: 1;
    min-width: 0;
    margin-left: auto;
    gap: 7px;
  }

  .search-box {
    display: flex;
    flex: 1;
    width: auto;
    min-width: 0;
    height: 38px;
    padding: 0 9px;
  }

  .search-box input {
    min-width: 0;
    font-size: 11px;
  }

  .search-box input::placeholder {
    font-size: 11px;
  }

  .search-submit {
    font-size: 15px;
  }

  .login-btn {
    flex: 0 0 auto;
    height: 38px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 11px;
  }

  .menu-btn {
    display: block;
    flex: 0 0 auto;
    padding: 4px;
    font-size: 22px;
  }

  /* ================= HERO ================= */

  .hero-slider {
    width: 100%;
    height: 410px;
    margin: 0;
    border-radius: 0;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.28)
      );
  }

  .hero-content {
    left: 16px;
    right: 16px;
    bottom: 28px;
    width: auto;
    max-width: none;
    padding: 20px;

    background: rgba(4, 12, 31, 0.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 16px;
  }

  .hero-content h1,
  .hero-content h2 {
    margin: 8px 0 10px;
    font-size: 27px;
    line-height: 1.08;
  }

  .hero-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .eyebrow,
  .mini-title {
    font-size: 10px;
  }

  .outline-btn {
    margin-top: 14px;
    padding: 11px 15px;
    font-size: 11px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .slider-arrow.prev {
    left: 5px;
  }

  .slider-arrow.next {
    right: 5px;
  }

  .slider-dots {
    right: 15px;
    bottom: 12px;
  }

  .slider-dots button {
    width: 26px;
  }

  /* ================= PROMO ================= */

  .offer-panel {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border-width: 1px;
    border-radius: 15px;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .section-heading a {
    font-size: 11px;
    white-space: nowrap;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-card {
    width: 100%;
    grid-template-columns: 105px minmax(0, 1fr);
    border-radius: 12px;
  }

  .offer-card img {
    width: 105px;
    height: 105px;
    object-fit: cover;
  }

  .offer-info {
    min-width: 0;
    padding: 11px;
  }

  .offer-info h3 {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .offer-label {
    font-size: 8px;
  }

  .price-row {
    flex-wrap: wrap;
    gap: 5px 10px;
    font-size: 10px;
  }

  /* ================= GAME ================= */

  .games-section {
    width: 100%;
    padding: 38px 0 16px;
  }

  .game-scroller {
    width: 100%;
    grid-auto-columns: calc(50% - 7px);
    gap: 12px;
    padding: 5px 0 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .game-link {
    min-width: 0;
    scroll-snap-align: start;
  }

  .game-card {
    width: 100%;
    min-width: 0;
    border-radius: 14px;
  }

  .game-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }

  .game-info {
    min-height: 66px;
    padding: 10px;
  }

  .game-info h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .game-info p {
    margin-top: 4px;
    font-size: 10px;
  }

  /* ================= CARA TOP UP ================= */

  .steps-section,
  .faq-section {
    width: 100%;
    margin-top: 32px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 20px;
  }

  .step-card span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 13px;
  }

  /* ================= BENEFIT ================= */

  .benefit-section {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 32px;
    border-radius: 16px;
  }

  .benefit-copy {
    padding: 24px 20px;
  }

  .benefit-copy h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .benefit-copy p,
  .benefit-copy li {
    font-size: 13px;
    line-height: 1.6;
  }

  .benefit-image {
    padding: 8px;
  }

  .benefit-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 420px;
    object-fit: cover;
  }

  /* ================= FAQ ================= */

  .faq-list details {
    padding: 13px;
  }

  .faq-list summary {
    font-size: 13px;
  }

  .faq-list p {
    font-size: 12px;
  }

  /* ================= FOOTER ================= */

  .site-footer {
    width: 100%;
    padding: 38px 0 175px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo img {
    width: 150px;
  }

  /* ================= COOKIE ================= */

  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 8px;

    width: auto;
    max-width: none;
    padding: 12px;

    display: block;
    transform: none;

    border-radius: 14px;
  }

  .cookie-bar strong {
    display: block;
    padding-right: 45px;
    font-size: 12px;
  }

  .cookie-bar p {
    margin: 5px 0 10px;
    padding-right: 35px;
    font-size: 10px;
    line-height: 1.4;
  }

  .cookie-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 6px;
    overflow: visible;
  }

  .cookie-actions button {
    width: 100%;
    min-width: 0;
    padding: 9px 5px;
    font-size: 8px;
  }

  /* ================= WHATSAPP ================= */

  .whatsapp-float {
    right: 18px;
    bottom: 105px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}