:root {
  --bg: #050b18;
  --card: rgba(10, 20, 40, 0.85);
  --card2: rgba(8, 16, 32, 0.85);

  --text: #eaf2ff;
  --muted: #9db4ff;
  --line: rgba(0, 180, 255, 0.25);

  --accent: #00b4ff;   /* NEON BIRU UTAMA */
  --accent2: #5ad7ff;  /* BIRU GLOW */

  --danger-bg: rgba(255, 80, 80, .15);
  --danger-border: rgba(255, 80, 80, .35);
  --danger-text: #ffb3b3;

  --success-bg: rgba(0, 200, 255, .15);
  --success-border: rgba(0, 200, 255, .35);
  --success-text: #bff3ff;
}


*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.container{
  max-width:1100px;
  margin:0 auto;
  padding:18px 16px 90px;
}

.section-title{
  margin:18px 0 12px;
  font-size:22px;
  letter-spacing:.2px;
}

h2{
  margin:10px 0 14px;
  letter-spacing:.2px;
}

.muted{color:var(--muted)}
.small{font-size:12px}

.nav{
  position:sticky;
  top:0;
  z-index:999;
  height:64px;
  padding:0 16px;
  background: rgba(10,14,25,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-left{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  height:100%;
}

.logo{
  height:46px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 0 6px rgba(80,160,255,.45));
}

.brand{
  font-weight:800;
  font-size:20px;
  letter-spacing:.8px;
  color:#ffd08a;
  line-height:1;
}

.nav-menu{
  display:flex;
  gap:10px;
  align-items:center;
  height:100%;
}

.nav-link{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
  line-height:1;
}

.nav-link:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.nav-link.active{
  background:rgba(26,124,255,.15);
  color:var(--text);
  border:1px solid rgba(26,124,255,.35);
}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
}

label{
  display:block;
  margin:12px 0 8px;
  font-weight:700;
  color: var(--text);
}

input, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(60,120,255,.22);
  background: rgba(10,14,25,.85);
  color: var(--text);
  outline:none;
}

input::placeholder{color: rgba(233,238,252,.55)}

input:focus, select:focus{
  border-color: rgba(26,124,255,.7);
  box-shadow: 0 0 0 4px rgba(26,124,255,.15);
}

button{
  font-family:inherit;
}

.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(60,120,255,.25);
  background: rgba(10,14,25,.9);
  color:#fff;
  cursor:pointer;
  font-weight:800;
}

.btn:hover{
  background: rgba(255,255,255,.07);
}

.btn-primary{
  background: rgba(40,140,255,.9);
  border-color: rgba(40,140,255,.9);
}

.btn-primary:hover{
  background: rgba(40,140,255,1);
}

button[disabled], .btn[disabled]{
  opacity:.5;
  cursor:not-allowed;
}

.slider{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--card2);
  height:260px;
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .35s ease;
}
.slide.active{opacity:1}

.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(0,0,0,.45);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.slide-btn:hover{background:rgba(0,0,0,.65)}
.slide-btn.left{left:12px}
.slide-btn.right{right:12px}

.dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  cursor:pointer;
}
.dot.active{background:var(--accent2)}




.game-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:16px;
  overflow:hidden;
  padding:0;
  cursor:pointer;
  transition: transform .15s ease, border .15s ease;
}
.game-card:hover{
  transform: translateY(-3px);
  border-color: rgb(255, 255, 255);
}

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

.game-card img{
  width: 80%;
  margin: 10px auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: transparent;
}


.game-name{
  padding:10px 10px 12px;
  font-weight:800;
  color: #ffffff;
}


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

.nominal-btn{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(60,120,255,.22);
  background: rgba(10,14,25,.85);
  color: var(--text);
  cursor:pointer;
  font-weight:800;
  text-align:left;
}

.nominal-btn:hover{
  border-color: rgba(26,124,255,.5);
}

.nominal-btn.active{
  outline: 2px solid rgba(40,140,255,.9);
  box-shadow: 0 0 0 4px rgba(40,140,255,.18);
}

.payment-methods{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:10px;
}

.pay-btn{
  background: rgba(10,14,25,.9);
  border: 1px solid rgba(60,120,255,.25);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
}

.pay-btn img{
  width:110px;
  height:50px;
  object-fit:contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}

.pay-btn span{
  font-size:12px;
  opacity:.9;
  letter-spacing:.5px;
}

.pay-btn:hover{
  border-color: rgba(26,124,255,.5);
}

.pay-btn.active{
  outline: 2px solid rgba(40,140,255,.9);
  box-shadow: 0 0 0 4px rgba(40,140,255,.2);
}

.pay-notice{
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  color: var(--danger-text);
  font-size: 13px;
  display: none;
}

.order-actions{margin:10px 0 14px}
.order-list{
  display:grid;
  gap:12px;
}

.order-card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius:16px;
  padding:14px;
}

.order-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}

.order-title{font-weight:900}
.order-meta{color:var(--muted); font-size:13px}

.order-row{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
  font-size:13px;
}

.pay-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.badge{
  padding:6px 10px;
  border-radius:999px;
  background: rgba(40,140,255,.18);
  border: 1px solid rgba(40,140,255,.35);
  color:#cfe3ff;
  font-weight:900;
}

.countdown{
  font-size:20px;
  font-weight:900;
  margin:0;
}

.order-box{
  border: 1px solid rgba(60,120,255,.20);
  border-radius:12px;
  padding:12px;
  margin:12px 0;
  background: rgba(10,14,25,.6);
}

.row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:6px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
}
.row.total{border-bottom:none; padding-top:10px}

.qr-box{
  text-align:center;
  padding:12px;
  border-radius:12px;
  border: 1px solid rgba(60,120,255,.20);
  background: rgba(10,14,25,.6);
}

.qr-img{
  width: 240px;
  max-width: 100%;
  height:auto;
  border-radius:12px;
  margin:10px auto;
  display:block;
  background:#fff;
  padding:10px;
}

.qr-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}

.note-box{
  margin-top:12px;
  border: 1px solid rgba(60,120,255,.20);
  border-radius:12px;
  padding:12px;
  background: rgba(10,14,25,.6);
}

.note-box h3{margin:0 0 8px}
.note-box ol{margin:0; padding-left:18px}
.note-box li{margin:6px 0; color: var(--muted)}

.cs-btn{
  margin-top:14px;
  display:block;
  text-align:center;
  padding:12px 14px;
  border-radius:14px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success-text);
  text-decoration:none;
  font-weight:900;
}
.cs-btn:hover{
  background: rgba(0,200,130,.2);
}

.success-card{
  text-align:center;
  padding:20px;
}

.success-icon{
  font-size:48px;
  margin-bottom:10px;
}

.success-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:16px;
}

.marquee{
  position:fixed;
  left:0; right:0;
  bottom:0;
  background: linear-gradient(90deg, #0b1a33, #0f2a55, #0b1a33);
  color: #7dbbff;
  padding:8px 0;
  overflow:hidden;
  z-index:999;
  border-top: 1px solid rgba(255,255,255,.08);
}

.marquee-text{
  display:inline-block;
  white-space:nowrap;
  font-weight:900;
  letter-spacing:.4px;
  animation:scroll 16s linear infinite;
  text-shadow: 0 0 8px rgba(125,187,255,.35);
}

@keyframes scroll{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

.wa-float{
  position:fixed;
  right:16px;
  bottom:60px;
  background:#19c37d;
  color:#062516;
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.wa-float:hover{filter:brightness(1.05)}

@media (max-width: 1000px){
  .game-grid{grid-template-columns: repeat(3, minmax(0,1fr))}
}

@media (max-width: 560px){
  .nav{height:60px;}
  .logo{height:40px;}
  .brand{font-size:16px;}
  .slider{height:200px;}
  .game-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .nominal-list{grid-template-columns: 1fr;}
  .payment-methods{grid-template-columns: 1fr;}
  .qr-img{width:220px;}
}


:root {
  --bg: #072461;
  --card: rgba(10, 20, 40, 0.85);
  --card2: rgba(8, 16, 32, 0.85);

  --text: #eaf2ff;
  --muted: #9db4ff;
  --line: rgba(0, 180, 255, 0.25);

  --accent: #00b4ff;   /* NEON BIRU UTAMA */
  --accent2: #5ad7ff;  /* BIRU GLOW */

  --danger-bg: rgba(255, 80, 80, .15);
  --danger-border: rgba(255, 80, 80, .35);
  --danger-text: #ffb3b3;

  --success-bg: rgba(0, 200, 255, .15);
  --success-border: rgba(0, 200, 255, .35);
  --success-text: #bff3ff;
}

body {
  background: linear-gradient(135deg, #050b18, #08142e);
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
}

.card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;

  border: 2px solid var(--accent);
  box-shadow: 0 0 18px rgba(0, 180, 255, 0.45);
}

.btn {
  background: var(--accent);
  color: #001018;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  padding: 12px 16px;
  transition: all .25s ease;
}

.btn:hover {
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
  transform: scale(1.05);
}

.btn-primary {
  background: linear-gradient(90deg, #00b4ff, #5ad7ff);
  color: #001018;
}

input, select {
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 12px;
  color: var(--text);
}

input:focus, select:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 10px var(--accent2);
}

@media (max-width: 900px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    display: none;
  }

  .section-title {
    font-size: 18px;
  }

  .game-name {
    font-size: 13px;
  }
}


.game-card {
  background: rgba(0,0,0,.55);
  border: 2px solid var(--accent);
  border-radius: 18px;
  transition: .3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px var(--accent2);
}

.game-name {
  padding: 10px 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,180,255,.35);
}

body::before,
body::after {
  content: '';
  position: fixed;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,.35), transparent 70%);
  filter: blur(90px);
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

body::before {
  left: -260px;
}

body::after {
  right: -260px;
}
 
.game-card {
  position: relative;
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,180,255,.08),
    transparent
  );
  opacity: 0;
  transition: opacity .2s ease;
}

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

