* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050816;
  --bg-2: #081126;
  --card: rgba(10, 19, 42, .78);
  --line: rgba(91, 217, 255, .18);
  --cyan: #35e7ff;
  --blue: #6d7cff;
  --purple: #9c5cff;
  --yellow: #ffd21f;
  --text: #f7fbff;
  --muted: #8f9db6;
  --danger: #ff5577;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(49, 148, 255, .15),
      transparent 40%
    ),
    #050816;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.gaming-menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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


/* =====================================================
   BACKGROUND
   ===================================================== */

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  opacity: .28;

  background-image:
    linear-gradient(
      rgba(55, 213, 255, .06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(55, 213, 255, .06) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 80%
    );
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -4;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: rgba(40, 195, 255, .13);
  left: -180px;
  top: 300px;
}

.orb-two {
  width: 430px;
  height: 430px;
  background: rgba(155, 75, 255, .13);
  right: -200px;
  top: 600px;
}

.floating-glyphs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.floating-glyphs span {
  position: absolute;
  opacity: .14;
  animation: floatGlyph 8s ease-in-out infinite;
}

.floating-glyphs span:nth-child(1) {
  left: 8%;
  top: 22%;
}

.floating-glyphs span:nth-child(2) {
  left: 85%;
  top: 30%;
  animation-delay: 1s;
}

.floating-glyphs span:nth-child(3) {
  left: 25%;
  top: 72%;
  animation-delay: 2s;
}

.floating-glyphs span:nth-child(4) {
  left: 70%;
  top: 78%;
  animation-delay: 3s;
}

.floating-glyphs span:nth-child(5) {
  left: 90%;
  top: 65%;
  animation-delay: 1.5s;
}

.floating-glyphs span:nth-child(6) {
  left: 12%;
  top: 80%;
  animation-delay: 2.5s;
}

@keyframes floatGlyph {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-25px) rotate(12deg);
  }
}


/* =====================================================
   PROGRESS
   ===================================================== */

.progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.progress-bar {
  width: 0;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--purple)
    );
  box-shadow:
    0 0 15px rgba(53, 231, 255, .7);
}


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

.game-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;

  min-height: 72px;

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

  padding: 10px 16px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;

  background:
    rgba(4, 9, 24, .76);

  backdrop-filter: blur(22px);

  transition: .3s ease;
}

.game-header.scrolled {
  background: rgba(4, 9, 24, .92);
  border-color: rgba(53,231,255,.18);
  box-shadow:
    0 18px 50px rgba(0,0,0,.28);
}

.game-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: .12em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--cyan);
}

.game-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.game-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: 11px;
  color: #aeb9ce;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.game-nav a:hover,
.game-nav a.active {
  color: #fff;
  background: rgba(53,231,255,.08);
}

.game-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.nav-menu {
  display: none;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

.nav-menu span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: white;
  transition: .25s;
}

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

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

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


/* =====================================================
   MOBILE PANEL
   ===================================================== */

.mobile-panel {
  position: fixed;
  top: 100px;
  left: 16px;
  right: 16px;
  z-index: 1200;

  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 12px;

  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;

  background: rgba(5, 10, 27, .95);
  backdrop-filter: blur(25px);

  transform: translateY(-15px);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.mobile-panel.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel a {
  padding: 14px;
  border-radius: 12px;
  color: #aab5c9;
  font-size: 13px;
  font-weight: 700;
}

.mobile-panel a.active,
.mobile-panel a:hover {
  color: white;
  background: rgba(53,231,255,.08);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.mobile-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}


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

.gaming-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 650px;
  margin: 18px auto 0;

  display: flex;
  align-items: center;

  overflow: hidden;
  border-radius: 32px;

  border: 1px solid rgba(255,255,255,.08);

  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(69,110,255,.17),
      transparent 35%
    ),
    linear-gradient(
      115deg,
      #060b1b,
      #07162c 52%,
      #0b0920
    );
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(650px, 62%);
  padding: 80px 0 80px 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 12px;

  border: 1px solid rgba(53,231,255,.2);
  border-radius: 999px;

  color: #9fefff;
  background: rgba(53,231,255,.05);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulseDot 1.7s infinite;
}

@keyframes pulseDot {
  50% {
    opacity: .3;
    transform: scale(.7);
  }
}

.hero-content h1 {
  margin-top: 25px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero-content h1 span {
  color: transparent;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      #778aff,
      #bc66ff
    );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content p {
  max-width: 560px;
  margin-top: 25px;
  color: #9aa8c0;
  font-size: 14px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 15px 19px;

  border-radius: 14px;

  color: #04101a;
  background: var(--cyan);

  font-size: 12px;
  font-weight: 800;

  box-shadow:
    0 0 30px rgba(53,231,255,.17);

  transition: .25s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(53,231,255,.3);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-trust strong {
  font-size: 15px;
}

.hero-trust span {
  color: #71809b;
  font-size: 9px;
}

.hero-art {
  position: absolute;
  pointer-events: none;
}

.hero-art-main {
  right: -50px;
  bottom: 0;
  width: 66%;
  height: 100%;
  z-index: 2;
}

.hero-art-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      black 27%,
      black 100%
    );
}

.hero-art-side {
  right: 5%;
  bottom: 0;
  width: 34%;
  height: 90%;
  z-index: 3;
  opacity: .65;
}

.hero-art-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-scanline {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: 4;
  background:
    linear-gradient(
      to top,
      rgba(5,8,22,.9),
      transparent
    );
}


/* =====================================================
   CATALOG
   ===================================================== */

.catalog-head {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 22px;

  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
}

.section-kicker {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.catalog-head h2,
.benefit-intro h2 {
  margin-top: 8px;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -.04em;
}

.catalog-head p,
.benefit-intro p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.search-box {
  width: 250px;
  height: 48px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 14px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;

  background: rgba(255,255,255,.035);
}

.search-box span {
  color: var(--cyan);
  font-size: 20px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 12px;
}

.search-box input::placeholder {
  color: #66738a;
}

.category-row {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 25px;

  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-chip {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;

  color: #8794ac;
  background: rgba(255,255,255,.025);

  cursor: pointer;
  font-size: 11px;
  font-weight: 700;

  transition: .25s;
}

.category-chip:hover,
.category-chip.active {
  color: #05101a;
  background: var(--cyan);
  border-color: var(--cyan);
}


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

.game-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.game-card {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;

  background:
    linear-gradient(
      150deg,
      rgba(14,25,51,.9),
      rgba(5,11,27,.88)
    );

  transition:
    transform .3s,
    border-color .3s,
    box-shadow .3s;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(
    in srgb,
    var(--accent),
    transparent 65%
  );

  box-shadow:
    0 25px 60px rgba(0,0,0,.28);
}

.card-art {
  position: relative;
  height: 190px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      color-mix(
        in srgb,
        var(--accent),
        transparent 75%
      ),
      transparent 70%
    );
}

.card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: .5s;
}

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

.card-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 50% 50%,
      var(--accent),
      transparent 65%
    );
  opacity: .18;
}

.card-content {
  padding: 18px;
}

.game-tag {
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.card-content h3 {
  margin-top: 7px;
  font-size: 18px;
}

.card-content p {
  min-height: 42px;
  margin-top: 8px;

  color: #7f8ca5;
  font-size: 10px;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  justify-content: space-between;

  margin-top: 15px;

  color: #7d8aa0;
  font-size: 9px;
}

.btn-topup {
  width: 100%;
  margin-top: 15px;
  padding: 12px;

  border: 1px solid rgba(53,231,255,.2);
  border-radius: 11px;

  color: white;
  background: rgba(53,231,255,.05);

  cursor: pointer;

  font-size: 11px;
  font-weight: 800;

  transition: .25s;
}

.btn-topup span {
  margin-left: 7px;
  color: var(--cyan);
}

.btn-topup:hover {
  background: var(--cyan);
  color: #04101a;
}

.btn-topup:hover span {
  color: #04101a;
}

.empty-state {
  width: min(1180px, calc(100% - 32px));
  margin: 35px auto;
  padding: 45px;

  text-align: center;

  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;

  background: rgba(255,255,255,.025);
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}


/* =====================================================
   BENEFITS
   ===================================================== */

.gaming-benefits {
  width: min(1180px, calc(100% - 32px));
  margin: 110px auto;

  display: grid;
  grid-template-columns: .8fr 1.6fr;
  gap: 50px;
  align-items: start;
}

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

.benefit-grid article {
  padding: 25px;

  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;

  background: rgba(255,255,255,.025);
}

.benefit-grid article > span {
  font-size: 22px;
}

.benefit-grid h3 {
  margin-top: 13px;
  font-size: 14px;
}

.benefit-grid p {
  margin-top: 7px;
  color: #76849c;
  font-size: 10px;
  line-height: 1.7;
}


/* =====================================================
   TOP UP MODAL
   ===================================================== */

.topup-modal,
.checkout-modal,
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;

  display: grid;
  place-items: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: .3s;
}

.topup-modal.show,
.checkout-modal.show,
.success-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop,
.checkout-backdrop,
.success-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(1, 4, 13, .82);

  backdrop-filter: blur(13px);
}

.modal-card {
  position: relative;
  z-index: 2;

  width: min(900px, 100%);
  max-height: 90vh;

  display: grid;
  grid-template-columns: .72fr 1.28fr;

  overflow: auto;

  border: 1px solid rgba(53,231,255,.16);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      #0c1833,
      #050b1b
    );

  box-shadow:
    0 40px 120px rgba(0,0,0,.55);
}

.modal-close,
.checkout-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;

  width: 40px;
  height: 40px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;

  color: white;
  background: rgba(0,0,0,.3);

  cursor: pointer;
  font-size: 24px;
}

.modal-visual {
  min-height: 520px;
  background: #050b19;
}

.modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 50px 38px 38px;
}

.modal-kicker {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.modal-content h2 {
  margin-top: 9px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.modal-description {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.field {
  display: block;
  margin-top: 20px;
}

.field > span {
  display: block;
  margin-bottom: 8px;
  color: #b7c2d5;
  font-size: 10px;
  font-weight: 800;
}

.field em {
  color: #65738c;
  font-style: normal;
  font-weight: 500;
}

.field input {
  width: 100%;
  height: 48px;

  padding: 0 14px;

  outline: 0;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;

  color: white;
  background: rgba(255,255,255,.035);

  font-size: 12px;

  transition: .2s;
}

.field input:focus {
  border-color: rgba(53,231,255,.55);
  box-shadow: 0 0 0 3px rgba(53,231,255,.07);
}

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

.nominal-option {
  position: relative;
  cursor: pointer;
}

.nominal-option input {
  position: absolute;
  opacity: 0;
}

.nominal-option span {
  display: block;
  margin: 0;

  padding: 14px 10px;

  border: 1px solid rgba(255,255,255,.07);
  border-radius: 11px;

  text-align: center;

  color: #9ba8bd;
  background: rgba(255,255,255,.025);

  font-size: 10px;

  transition: .2s;
}

.nominal-option input:checked + span {
  color: #04101a;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 25px rgba(53,231,255,.12);
}

.submit-topup {
  width: 100%;
  margin-top: 23px;
  padding: 15px;

  border: 0;
  border-radius: 13px;

  color: #04101a;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      #8173ff
    );

  cursor: pointer;

  font-size: 12px;
  font-weight: 800;
}

.submit-topup span {
  margin-left: 8px;
}

.modal-note {
  margin-top: 15px;
  color: #66758d;
  font-size: 9px;
  line-height: 1.7;
}


/* =====================================================
   CHECKOUT
   ===================================================== */

.checkout-card {
  position: relative;
  z-index: 2;

  width: min(720px, 100%);
  max-height: 94vh;

  overflow: auto;

  border: 1px solid rgba(53,231,255,.18);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      #0c1833,
      #050b1b
    );

  box-shadow:
    0 40px 130px rgba(0,0,0,.65);
}

.checkout-header {
  padding: 32px 34px 25px;

  border-bottom: 1px solid rgba(255,255,255,.07);

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(53,231,255,.1),
      transparent 45%
    );
}

.checkout-kicker {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.checkout-header h2 {
  margin-top: 8px;
  font-size: 28px;
}

.checkout-header p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.checkout-body {
  padding: 25px 34px 30px;
}

.checkout-summary-card {
  padding: 18px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;

  background: rgba(255,255,255,.025);
}

.checkout-game {
  display: flex;
  align-items: center;
  gap: 13px;
}

.checkout-game-image {
  width: 55px;
  height: 55px;
  overflow: hidden;
  flex-shrink: 0;

  border-radius: 13px;

  background: rgba(255,255,255,.05);
}

.checkout-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-game span {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.checkout-game h3 {
  margin-top: 4px;
  font-size: 16px;
}

.checkout-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;

  margin-top: 18px;
}

.checkout-detail div {
  padding: 12px;

  border-radius: 11px;
  background: rgba(0,0,0,.16);
}

.checkout-detail span {
  display: block;
  color: #6e7c94;
  font-size: 8px;
}

.checkout-detail strong {
  display: block;
  margin-top: 5px;
  color: #dce5f2;
  font-size: 10px;
  word-break: break-word;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 13px;
  padding: 15px 17px;

  border: 1px solid rgba(255,210,31,.5);
  border-radius: 13px;

  background: rgba(255,210,31,.05);
}

.checkout-total span {
  color: #b5bfd0;
  font-size: 10px;
}

.checkout-total strong {
  color: var(--yellow);
  font-size: 20px;
}

.checkout-form {
  margin-top: 25px;
}

.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 22px 0 12px;

  color: #dbe4f1;
  font-size: 11px;
  font-weight: 800;
}

.checkout-section-title span {
  display: grid;
  place-items: center;

  width: 24px;
  height: 24px;

  border-radius: 7px;

  color: #06121c;
  background: var(--cyan);

  font-size: 8px;
}

.checkout-field {
  display: block;
  margin-top: 13px;
}

.checkout-field > span {
  display: block;
  margin-bottom: 7px;

  color: #aab6c9;
  font-size: 9px;
  font-weight: 800;
}

.checkout-field input {
  width: 100%;
  height: 46px;

  padding: 0 13px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;

  outline: 0;

  color: white;
  background: rgba(255,255,255,.035);

  font-size: 11px;
}

.checkout-field input:focus {
  border-color: rgba(53,231,255,.5);
}

.checkout-field small {
  display: block;
  margin-top: 6px;
  color: #65738a;
  font-size: 8px;
}

.payment-methods {
  display: grid;
  gap: 9px;
}

.payment-option {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 13px;

  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;

  background: rgba(255,255,255,.025);

  cursor: pointer;

  transition: .2s;
}

.payment-option:hover {
  border-color: rgba(53,231,255,.25);
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-option:has(input:checked) {
  border-color: rgba(53,231,255,.6);
  background: rgba(53,231,255,.07);
}

.payment-icon {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 10px;

  background: rgba(255,255,255,.06);

  font-size: 12px;
  font-weight: 800;
}

.payment-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-copy strong {
  font-size: 10px;
}

.payment-copy small {
  color: #68768e;
  font-size: 8px;
}

.payment-check {
  margin-left: auto;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;

  color: transparent;
  font-size: 10px;
}

.payment-option:has(input:checked)
.payment-check {
  color: #04101a;
  background: var(--cyan);
  border-color: var(--cyan);
}

.qris-box {
  margin-top: 15px;
  padding: 17px;

  text-align: center;

  border: 1px solid rgba(255,210,31,.25);
  border-radius: 15px;

  background: rgba(255,210,31,.035);
}

.qris-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qris-title span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.qris-title strong {
  font-size: 11px;
}

.qris-image {
  display: block;

  width: min(230px, 100%);
  margin: 15px auto 10px;

  border-radius: 13px;

  background: white;
}

.qris-box p {
  color: #78869e;
  font-size: 8px;
  line-height: 1.6;
}

.checkout-warning {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  margin-top: 15px;
  padding: 12px;

  border-radius: 11px;

  background: rgba(255,255,255,.025);
}

.checkout-warning > span {
  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 50%;

  color: #111;
  background: var(--yellow);

  font-size: 9px;
  font-weight: 800;
}

.checkout-warning p {
  color: #707e96;
  font-size: 8px;
  line-height: 1.7;
}

.checkout-submit {
  width: 100%;
  margin-top: 15px;
  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 0;
  border-radius: 13px;

  color: #04101a;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      #8071ff
    );

  cursor: pointer;

  font-size: 11px;
  font-weight: 800;

  transition: .25s;
}

.checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 15px 35px rgba(53,231,255,.15);
}

.checkout-submit:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}


/* =====================================================
   SUCCESS
   ===================================================== */

.success-card {
  position: relative;
  z-index: 2;

  width: min(430px, 100%);
  padding: 35px 30px;

  text-align: center;

  border: 1px solid rgba(53,231,255,.2);
  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      #0d1a37,
      #050b1c
    );

  box-shadow:
    0 35px 100px rgba(0,0,0,.55);
}

.success-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border-radius: 50%;

  color: #04101a;
  background: var(--cyan);

  font-size: 31px;
  font-weight: 800;

  box-shadow:
    0 0 35px rgba(53,231,255,.25);
}

.success-kicker {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.success-card h2 {
  margin-top: 8px;
  font-size: 27px;
}

.success-card > p {
  margin-top: 8px;
  color: #8997ae;
  font-size: 10px;
  line-height: 1.7;
}

.success-order {
  margin-top: 20px;
  padding: 13px;

  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.success-order span {
  display: block;
  color: #68768d;
  font-size: 8px;
}

.success-order strong {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 11px;
}

.success-email {
  margin-top: 12px;
  color: #78869e;
  font-size: 9px;
  line-height: 1.7;
}

.success-email strong {
  display: block;
  color: var(--cyan);
  word-break: break-word;
}

.success-button {
  width: 100%;
  margin-top: 22px;
  padding: 13px;

  border: 0;
  border-radius: 12px;

  color: #04101a;
  background: var(--cyan);

  cursor: pointer;

  font-size: 11px;
  font-weight: 800;
}


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

.gaming-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 25px 0 35px;

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

  border-top: 1px solid rgba(255,255,255,.06);

  color: #58667d;
  font-size: 9px;
}

.gaming-footer span:nth-child(2) {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .15em;
}

.gaming-footer a:hover {
  color: white;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1050px) {

  .game-nav a {
    padding-inline: 8px;
    font-size: 10px;
  }

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

  .hero-content {
    width: 67%;
    padding-left: 45px;
  }

}

@media (max-width: 850px) {

  .game-nav {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .gaming-hero {
    min-height: 600px;
  }

  .hero-content {
    width: 100%;
    padding: 55px 30px;
  }

  .hero-art-main {
    width: 100%;
    opacity: .4;
  }

  .hero-art-side {
    display: none;
  }

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

  .gaming-benefits {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 650px) {

  .game-header,
  .gaming-hero,
  .catalog-head,
  .category-row,
  .game-grid,
  .gaming-benefits,
  .gaming-footer {
    width: calc(100% - 20px);
  }

  .game-header {
    margin-top: 10px;
  }

  .gaming-hero {
    border-radius: 23px;
    min-height: 570px;
  }

  .hero-content {
    padding: 45px 22px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .catalog-head {
    margin-top: 65px;
    align-items: start;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

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

  .card-art {
    height: 210px;
  }

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

  .modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .modal-visual {
    min-height: 170px;
    max-height: 190px;
  }

  .modal-content {
    padding: 30px 20px 25px;
  }

  .checkout-header,
  .checkout-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .checkout-detail {
    grid-template-columns: 1fr;
  }

  .checkout-total strong {
    font-size: 17px;
  }

  .gaming-footer {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================================================
   PRIMA GAMING — PREMIUM UI UPGRADE
   Tambahkan di PALING BAWAH game.css
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL SMOOTHNESS
   --------------------------------------------------------- */

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

button,
a,
input,
label,
.nominal-option,
.game-card {
  -webkit-font-smoothing: antialiased;
}


/* ---------------------------------------------------------
   GAME GRID — PREMIUM CARDS
   --------------------------------------------------------- */

.game-grid {
  perspective: 1200px;
}

.game-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .075);
  background:
    linear-gradient(
      145deg,
      rgba(14, 24, 43, .98),
      rgba(5, 10, 25, .98)
    );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .035);
  transform: translateY(0);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .35s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(0, 217, 255, .16),
      transparent 55%
    );
  opacity: 0;
  transition: opacity .35s ease;
}

.game-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  bottom: -110px;
  z-index: -1;
  border-radius: 50%;
  background: var(--game-accent, #00d9ff);
  filter: blur(75px);
  opacity: .08;
  transition: opacity .35s ease;
}

.game-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 217, 255, .30);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, .42),
    0 0 35px rgba(0, 217, 255, .07),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.game-card:hover::before,
.game-card:hover::after {
  opacity: 1;
}


/* ---------------------------------------------------------
   GAME IMAGE
   --------------------------------------------------------- */

.card-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 217, 255, .13),
      transparent 65%
    ),
    #07101e;
}

.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      transparent 45%,
      rgba(3, 8, 20, .08) 65%,
      rgba(3, 8, 20, .55) 100%
    );
}

.card-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transition:
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .4s ease;
}

.game-card:hover .card-art img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}


/* ---------------------------------------------------------
   GAME CARD CONTENT
   --------------------------------------------------------- */

.card-content {
  position: relative;
}

.game-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 217, 255, .07);
  border: 1px solid rgba(0, 217, 255, .12);
  color: #57e5ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.game-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.card-content h3 {
  letter-spacing: -.025em;
}

.card-content p {
  color: rgba(190, 204, 225, .68);
  line-height: 1.65;
}

.card-meta {
  color: rgba(205, 217, 235, .60);
}

.card-meta span:first-child {
  color: #ffb347;
}


/* ---------------------------------------------------------
   TOP UP BUTTON
   --------------------------------------------------------- */

.btn-topup,
.submit-topup {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-topup::before,
.submit-topup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, .18),
    transparent
  );
  transition: left .65s ease;
}

.btn-topup:hover::before,
.submit-topup:hover::before {
  left: 140%;
}

.btn-topup span,
.submit-topup span {
  transition: transform .25s ease;
}

.btn-topup:hover span,
.submit-topup:hover span {
  transform: translateX(5px);
}


/* ---------------------------------------------------------
   SEARCH BOX
   --------------------------------------------------------- */

.search-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 15, 30, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .035),
    0 10px 35px rgba(0, 0, 0, .18);
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.search-box:focus-within {
  border-color: rgba(0, 217, 255, .45);
  box-shadow:
    0 0 0 4px rgba(0, 217, 255, .07),
    0 12px 35px rgba(0, 0, 0, .25);
  transform: translateY(-1px);
}

.search-box input {
  color: #fff;
}

.search-box input::placeholder {
  color: rgba(190, 204, 225, .42);
}


/* ---------------------------------------------------------
   CATEGORY CHIP
   --------------------------------------------------------- */

.category-chip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(10, 18, 35, .72);
  color: rgba(220, 230, 245, .62);
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.category-chip:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(0, 217, 255, .25);
}

.category-chip.active {
  color: #fff;
  border-color: rgba(0, 217, 255, .45);
  background:
    linear-gradient(
      135deg,
      rgba(0, 217, 255, .15),
      rgba(102, 71, 255, .15)
    );
  box-shadow:
    0 0 25px rgba(0, 217, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}


/* ---------------------------------------------------------
   TOP UP MODAL — GLASS / PREMIUM
   --------------------------------------------------------- */

.topup-modal {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-backdrop {
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(0, 217, 255, .08),
      transparent 42%
    ),
    rgba(1, 5, 14, .78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .09);
  background:
    linear-gradient(
      145deg,
      rgba(13, 25, 45, .98),
      rgba(5, 11, 25, .99)
    );
  box-shadow:
    0 35px 100px rgba(0, 0, 0, .60),
    0 0 60px rgba(0, 217, 255, .06),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.modal-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #00d9ff;
  filter: blur(110px);
  opacity: .07;
  pointer-events: none;
}

.modal-card::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #7657ff;
  filter: blur(120px);
  opacity: .08;
  pointer-events: none;
}

.modal-close {
  z-index: 5;
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  color: #fff;
  background: rgba(255, 255, 255, .09);
}


/* ---------------------------------------------------------
   MODAL IMAGE
   --------------------------------------------------------- */

.modal-visual {
  position: relative;
  overflow: hidden;
}

.modal-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      transparent 45%,
      rgba(3, 8, 20, .72)
    );
}

.modal-image,
#modalImage {
  transition: transform .5s ease;
}

.modal-card:hover #modalImage {
  transform: scale(1.025);
}


/* ---------------------------------------------------------
   FORM FIELDS
   --------------------------------------------------------- */

.field {
  position: relative;
}

.field > span {
  color: rgba(220, 230, 245, .78);
  font-weight: 700;
}

.field input {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 12, 25, .75);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .025);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.field input::placeholder {
  color: rgba(190, 204, 225, .38);
}

.field input:hover {
  border-color: rgba(255, 255, 255, .15);
}

.field input:focus {
  outline: none;
  border-color: rgba(0, 217, 255, .52);
  background: rgba(7, 17, 33, .92);
  box-shadow:
    0 0 0 4px rgba(0, 217, 255, .07),
    0 0 28px rgba(0, 217, 255, .06);
}


/* ---------------------------------------------------------
   NOMINAL OPTIONS
   --------------------------------------------------------- */

.nominal-grid {
  gap: 10px;
}

.nominal-option {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .075);
  background:
    linear-gradient(
      145deg,
      rgba(12, 23, 42, .90),
      rgba(6, 13, 28, .90)
    );
  color: rgba(230, 238, 248, .78);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    color .25s ease;
}

.nominal-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(0, 217, 255, .12),
      transparent 55%
    );
  opacity: 0;
  transition: opacity .25s ease;
}

.nominal-option:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 217, 255, .28);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .25);
}

.nominal-option:hover::before {
  opacity: 1;
}

.nominal-option:has(input:checked) {
  border-color: rgba(0, 217, 255, .72);
  background:
    linear-gradient(
      135deg,
      rgba(0, 217, 255, .16),
      rgba(74, 70, 255, .15)
    );
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 217, 255, .12),
    0 0 30px rgba(0, 217, 255, .09);
  transform: translateY(-2px);
}

.nominal-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nominal-option small {
  color: #63e7ff;
  font-weight: 800;
}


/* ---------------------------------------------------------
   CHECKOUT MODAL
   JS KAMU MEMBUAT CHECKOUT SECARA DINAMIS
   --------------------------------------------------------- */

.checkout-modal,
#checkoutModal {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.checkout-modal .modal-card,
#checkoutModal .modal-card {
  border: 1px solid rgba(255, 255, 255, .09);
  background:
    linear-gradient(
      145deg,
      rgba(13, 25, 45, .985),
      rgba(4, 10, 23, .99)
    );
  box-shadow:
    0 40px 110px rgba(0, 0, 0, .68),
    0 0 70px rgba(0, 217, 255, .06);
}


/* ---------------------------------------------------------
   PAYMENT OPTIONS
   --------------------------------------------------------- */

.payment-option,
.payment-card,
.pay-card,
.pay-card-summary,
.sub-item {
  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.pay-accordion {
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(8, 16, 31, .72);
  border-radius: 15px;
  overflow: hidden;
}

.pay-accordion:hover {
  border-color: rgba(0, 217, 255, .22);
}

.pay-card-summary {
  cursor: pointer;
}

.pay-card-summary:hover {
  background: rgba(0, 217, 255, .035);
}

.sub-item {
  border-top: 1px solid rgba(255, 255, 255, .055);
  background: rgba(0, 217, 255, .025);
}

.sub-item:hover {
  background: rgba(0, 217, 255, .065);
}


/* ---------------------------------------------------------
   PAYMENT LOGOS
   --------------------------------------------------------- */

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .045);
}

.qris-logo {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(0, 217, 255, .18),
      rgba(110, 90, 255, .18)
    );
}

.bank-logo {
  color: #fff;
}


/* ---------------------------------------------------------
   CHECKOUT SUMMARY
   --------------------------------------------------------- */

.checkout-summary {
  border: 1px solid rgba(0, 217, 255, .20);
  background:
    linear-gradient(
      135deg,
      rgba(0, 217, 255, .07),
      rgba(100, 70, 255, .08)
    );
  border-radius: 15px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .035);
}

.checkout-summary strong {
  color: #fff;
  text-shadow:
    0 0 20px rgba(0, 217, 255, .20);
}


/* ---------------------------------------------------------
   PRIMARY CHECKOUT BUTTON
   --------------------------------------------------------- */

.btn.primary,
.btn.primary.full {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, .30);
  background:
    linear-gradient(
      100deg,
      #00aeca,
      #315fe7 50%,
      #7248dc
    );
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 12px 30px rgba(0, 130, 220, .18);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.btn.primary:hover,
.btn.primary.full:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 18px 40px rgba(0, 130, 220, .25),
    0 0 30px rgba(0, 217, 255, .10);
}

.btn.primary:active,
.btn.primary.full:active {
  transform: translateY(0);
}


/* ---------------------------------------------------------
   SUCCESS MODAL
   --------------------------------------------------------- */

.success {
  animation: primaSuccessIn .45s cubic-bezier(.2,.8,.2,1);
}

.success-icon {
  filter:
    drop-shadow(0 0 18px rgba(0, 255, 160, .20));
  animation: primaSuccessPop .55s cubic-bezier(.2,1.4,.4,1);
}

@keyframes primaSuccessIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes primaSuccessPop {
  0% {
    transform: scale(.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* ---------------------------------------------------------
   EMPTY STATE
   --------------------------------------------------------- */

.empty-state {
  border: 1px dashed rgba(255, 255, 255, .12);
  background: rgba(8, 16, 30, .45);
  border-radius: 20px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .025);
}

.empty-state strong {
  color: #fff;
}

.empty-state span {
  color: rgba(190, 204, 225, .52);
}


/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.benefit-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .065);
  background:
    linear-gradient(
      145deg,
      rgba(13, 24, 43, .72),
      rgba(6, 13, 27, .72)
    );
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -55px;
  right: -55px;
  border-radius: 50%;
  background: #00d9ff;
  filter: blur(50px);
  opacity: .06;
}

.benefit-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, .20);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, .25);
}


/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.gaming-footer {
  border-top: 1px solid rgba(255, 255, 255, .055);
  background:
    linear-gradient(
      to bottom,
      rgba(4, 10, 22, .40),
      rgba(2, 6, 15, .85)
    );
}


/* ---------------------------------------------------------
   SCROLLBAR
   --------------------------------------------------------- */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #030711;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #00b9d9,
      #5946d9
    );
  border: 2px solid #030711;
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      #22dfff,
      #785eff
    );
}


/* ---------------------------------------------------------
   SELECTION
   --------------------------------------------------------- */

::selection {
  background: rgba(0, 217, 255, .25);
  color: #fff;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

  .game-card {
    border-radius: 18px;
  }

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

  .nominal-option:hover {
    transform: none;
  }

  .nominal-option:has(input:checked) {
    transform: none;
  }

  .modal-card {
    border-radius: 20px;
  }

  .benefit-grid article:hover {
    transform: none;
  }

}

@media (max-width: 480px) {

  .game-card {
    border-radius: 16px;
  }

  .game-tag {
    font-size: 9px;
  }

  .btn-topup {
    min-height: 46px;
  }

  .nominal-option {
    min-height: 54px;
  }

}

/* =========================================================
   PRIMA GAMING — ULTRA PREMIUM V2
   ========================================================= */

/* ---------- PREMIUM BACKGROUND ---------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(0, 217, 255, .055),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(112, 72, 255, .06),
      transparent 28%
    );
  animation: ambientDrift 12s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% {
    transform: scale(1);
    opacity: .72;
  }

  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}


/* ---------- MOVING GRID ---------- */

.bg-grid {
  opacity: .32;
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, 60px, 0);
  }
}


/* ---------- FLOATING GLYPHS ---------- */

.floating-glyphs span {
  opacity: .35;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, .25));
  animation:
    glyphFloat 5s ease-in-out infinite;
}

.floating-glyphs span:nth-child(2) {
  animation-delay: -.8s;
}

.floating-glyphs span:nth-child(3) {
  animation-delay: -1.7s;
}

.floating-glyphs span:nth-child(4) {
  animation-delay: -2.4s;
}

.floating-glyphs span:nth-child(5) {
  animation-delay: -3.2s;
}

.floating-glyphs span:nth-child(6) {
  animation-delay: -4s;
}

@keyframes glyphFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(8deg);
  }
}


/* ---------- HERO TEXT ---------- */

.gaming-hero h1 {
  text-shadow:
    0 0 35px rgba(0, 217, 255, .07);
}

.gaming-hero h1 span {
  background:
    linear-gradient(
      90deg,
      #ffffff,
      #66eaff,
      #9b7cff,
      #ffffff
    );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGradient 6s linear infinite;
}

@keyframes titleGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 250% center;
  }
}


/* ---------- HERO CTA ---------- */

.hero-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 12px 35px rgba(0, 190, 220, .12);
}

.hero-cta::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -80%;
  width: 55%;
  height: 160%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, .13);
  transition: left .65s ease;
  z-index: -1;
}

.hero-cta:hover::after {
  left: 140%;
}

.hero-cta:hover {
  box-shadow:
    0 16px 42px rgba(0, 190, 220, .20),
    0 0 25px rgba(0, 217, 255, .07);
}


/* ---------- HERO TRUST ---------- */

.hero-trust {
  transition:
    transform .3s ease,
    border-color .3s ease;
}

.hero-trust:hover {
  transform: translateY(-3px);
}


/* ---------- NEON GAME CARD BORDER ---------- */

.game-card {
  --neon-angle: 0deg;
}

.game-card:hover {
  border-color: transparent;
}

.game-card:hover::before {
  inset: -1px;
  opacity: 1;
  background:
    conic-gradient(
      from var(--neon-angle),
      transparent 0deg,
      rgba(0, 217, 255, .55) 55deg,
      transparent 105deg,
      transparent 180deg,
      rgba(116, 82, 255, .50) 235deg,
      transparent 290deg
    );
  animation: neonRotate 3.5s linear infinite;
}

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


/* ---------- CARD IMAGE SHINE ---------- */

.card-art {
  isolation: isolate;
}

.card-art::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 55%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transform: skewX(-18deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .13),
      transparent
    );
  transition: left .75s ease;
}

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


/* ---------- CARD TITLE HOVER ---------- */

.card-content h3 {
  transition:
    color .25s ease,
    transform .25s ease;
}

.game-card:hover .card-content h3 {
  color: #ffffff;
  transform: translateX(2px);
}


/* ---------- GAME TAG GLOW ---------- */

.game-tag {
  box-shadow:
    0 0 0 rgba(0, 217, 255, 0);
  transition:
    box-shadow .3s ease,
    border-color .3s ease;
}

.game-card:hover .game-tag {
  box-shadow:
    0 0 18px rgba(0, 217, 255, .08);
}


/* ---------- BUTTON PRESS ---------- */

.btn-topup:active,
.submit-topup:active,
.btn.primary:active,
.hero-cta:active {
  transform: scale(.97);
}


/* ---------- NOMINAL SELECTED PULSE ---------- */

.nominal-option:has(input:checked) {
  animation: selectedNominal .8s ease-out;
}

@keyframes selectedNominal {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 217, 255, .30);
  }

  100% {
    box-shadow:
      0 0 0 9px rgba(0, 217, 255, 0);
  }
}


/* ---------- MODAL ENTRANCE ---------- */

.topup-modal[aria-hidden="false"] .modal-card {
  animation: modalPremiumIn .4s cubic-bezier(.2,.85,.25,1);
}

@keyframes modalPremiumIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(.965);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ---------- MODAL VISUAL GLOW ---------- */

.modal-visual {
  box-shadow:
    inset 0 -80px 80px rgba(3, 8, 20, .35);
}

.modal-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, .04);
}


/* ---------- INPUT ACTIVE LINE ---------- */

.field input {
  position: relative;
}

.field input:focus {
  box-shadow:
    0 0 0 4px rgba(0, 217, 255, .065),
    0 0 32px rgba(0, 217, 255, .075);
}


/* ---------- CHECKOUT TOTAL ---------- */

.checkout-summary strong {
  position: relative;
}

.checkout-summary strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 217, 255, .45),
      transparent
    );
}


/* ---------- PAYMENT CARD ACTIVE ---------- */

.pay-accordion:has(input:checked),
.payment-option:has(input:checked) {
  border-color: rgba(0, 217, 255, .32);
  box-shadow:
    0 0 25px rgba(0, 217, 255, .055),
    inset 0 1px 0 rgba(255, 255, 255, .035);
}


/* ---------- SUCCESS GLOW ---------- */

.success-icon {
  animation:
    successAppear .55s cubic-bezier(.2,1.4,.4,1),
    successGlow 2.4s ease-in-out 1s infinite alternate;
}

@keyframes successAppear {
  0% {
    opacity: 0;
    transform: scale(.55);
  }

  75% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes successGlow {
  from {
    filter: drop-shadow(0 0 8px rgba(0, 255, 170, .10));
  }

  to {
    filter: drop-shadow(0 0 25px rgba(0, 255, 170, .28));
  }
}


/* ---------- FOOTER LIGHT ---------- */

.gaming-footer {
  position: relative;
}

.gaming-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 217, 255, .35),
      rgba(120, 80, 255, .35),
      transparent
    );
}


/* ---------- NAV SCROLL GLASS ---------- */

.game-header {
  transition:
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


/* ---------- FOCUS ACCESSIBILITY ---------- */

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(0, 217, 255, .75);
  outline-offset: 3px;
}


/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion: reduce) {

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

}


/* ---------- MOBILE OPTIMIZATION ---------- */

@media (max-width: 768px) {

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

  .game-card:hover::before {
    animation: none;
  }

  .game-card:hover .card-art::before {
    display: none;
  }

  .gaming-hero h1 span {
    animation-duration: 9s;
  }

  .floating-glyphs span {
    animation-duration: 7s;
  }

}


/* ---------- VERY SMALL SCREEN ---------- */

@media (max-width: 420px) {

  .gaming-hero h1 {
    letter-spacing: -.04em;
  }

  .game-card {
    box-shadow:
      0 12px 35px rgba(0, 0, 0, .28);
  }

}