.section-divider {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.5) 50%, rgba(255,215,0,0.15) 100%);
  overflow: hidden;
  border-radius: 2px;
  margin: 0; /* Hilangkan jarak */
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
  0% { left: -50%; }
  100% { left: 100%; }
}


/* feature container & box */
.feature-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.feature-box h4 {
  color: #FFD700;
  margin-bottom: 5px;
  font-size: 16px;
}

.feature-box p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4em;
}

/* Hover effect ringan */
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Media query tablet */
@media (max-width: 992px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Media query HP kecil */
@media (max-width: 600px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .feature-box img {
    width: 60px !important;
  }

  .feature-box h4 {
    font-size: 14px !important;
  }

  .feature-box p {
    font-size: 12px !important;
  }
}


#vplay-preloader {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.vplay-loader-box {
  position: relative;
  width: 80px;
  height: 80px;
}

/* Logo di tengah */
.vplay-logo {
  width: 28px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Lingkaran tipis */
.futuristic-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
  overflow: visible;
}

/* Lingkaran berbeda ukuran dan animasi */
.ring1 { width: 50px; height: 50px; animation: rotate1 2s linear infinite; }
.ring2 { width: 60px; height: 60px; animation: rotate2 3s linear infinite; }
.ring3 { width: 70px; height: 70px; animation: rotate3 4s linear infinite; }

/* Partikel / comet trail */
.futuristic-ring::before,
.futuristic-ring::after {
  content: '';
  position: absolute;
  width: 10%;
  height: 10%;
  background: gold;
  border-radius: 50%;
  top: -5%;
  left: 45%;
  box-shadow: 0 0 12px gold, 0 0 24px gold;
}

.futuristic-ring.ring1::before { animation: orbit1 2s linear infinite; }
.futuristic-ring.ring1::after { animation: orbit1b 2s linear infinite; }
.futuristic-ring.ring2::before { animation: orbit2 3s linear infinite; }
.futuristic-ring.ring2::after { animation: orbit2b 3s linear infinite; }
.futuristic-ring.ring3::before { animation: orbit3 4s linear infinite; }
.futuristic-ring.ring3::after { animation: orbit3b 4s linear infinite; }

/* Animasi rotasi lingkaran */
@keyframes rotate1 { 0% { transform: translate(-50%, -50%) rotate(0deg);} 100% { transform: translate(-50%, -50%) rotate(360deg);} }
@keyframes rotate2 { 0% { transform: translate(-50%, -50%) rotate(0deg);} 100% { transform: translate(-50%, -50%) rotate(-360deg);} }
@keyframes rotate3 { 0% { transform: translate(-50%, -50%) rotate(0deg);} 100% { transform: translate(-50%, -50%) rotate(360deg);} }

/* Animasi orbit partikel */
@keyframes orbit1 { 0%{transform:rotate(0deg) translateX(25px) rotate(0deg);} 100%{transform:rotate(360deg) translateX(25px) rotate(-360deg);} }
@keyframes orbit1b { 0%{transform:rotate(180deg) translateX(25px) rotate(-180deg);} 100%{transform:rotate(540deg) translateX(25px) rotate(-540deg);} }
@keyframes orbit2 { 0%{transform:rotate(0deg) translateX(30px) rotate(0deg);} 100%{transform:rotate(-360deg) translateX(30px) rotate(360deg);} }
@keyframes orbit2b { 0%{transform:rotate(180deg) translateX(30px) rotate(-180deg);} 100%{transform:rotate(540deg) translateX(30px) rotate(-540deg);} }
@keyframes orbit3 { 0%{transform:rotate(0deg) translateX(35px) rotate(0deg);} 100%{transform:rotate(360deg) translateX(35px) rotate(-360deg);} }
@keyframes orbit3b { 0%{transform:rotate(180deg) translateX(35px) rotate(-180deg);} 100%{transform:rotate(540deg) translateX(35px) rotate(-540deg);} }

/* Efek shimmer / flicker neon */
.futuristic-ring::before, .futuristic-ring::after {
  animation-timing-function: ease-in-out;
  opacity: 0.8;
}
.futuristic-ring::before { animation: shimmer 1.5s infinite alternate; }
.futuristic-ring::after { animation: shimmer 2s infinite alternate; }

@keyframes shimmer {
  0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
}

/* Hilang setelah 3 detik */
.fade-out {
  animation: fadeOut 0.6s ease forwards;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

.u-btn-glow {
  position: relative;
  border: 2px solid gold; /* Warna border */
  transition: all 0.3s ease-in-out;
}

.u-btn-glow:hover {
  box-shadow: 0 0 15px gold, 0 0 30px gold, 0 0 45px gold;
  border-color: gold;
  color: white; /* warna teks saat hover */
}
.u-btn-glow {
  transition: box-shadow 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}
/* ==== FIX SLIDER FULL GAMBAR TANPA TERPOTONG ==== */
.u-slider-1,
.u-slider-1 .u-carousel-item,
.u-slider-1 .u-container-layout {
    height: auto !important;
    padding: 0 !important;
}

/* gambar tampil utuh tanpa cropping */
.u-slider-1 .u-image-1,
.u-slider-1 .u-image-2,
.u-slider-1 .u-image-3,
.u-slider-1 .u-image-4 {
    background-size: contain !important; /* tampil utuh */
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #000 !important; /* biar tidak bolong */
    
    width: 100% !important;
    height: 100% !important;
}

/* container dinamis mengikuti gambar */
.u-slider-1 .u-carousel-item {
    aspect-ratio: 16/9; /* kamu bisa ubah ke 21/9 atau ikut ukuran asli gambarmu */
    width: 100%;
}
/* Tombol simple */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background: rgba(0,0,0,0.2); /* sangat transparan */
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  z-index: 20;
  transition: 0.2s ease;
}

/* Hover sedikit lebih jelas */
.carousel-btn:hover {
  background: rgba(0,0,0,0.35);
}

/* Posisi kiri & kanan */
.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Versi HP: lebih kecil & tidak mengganggu */
@media (max-width: 768px) {
  .carousel-btn {
    font-size: 18px;
    padding: 4px 8px;
  }
}
.game-section {
  padding: 60px 0;
  background: #000000;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.game-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700;
  background: linear-gradient(45deg, #fffacd, #ffd700, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 0px;
  position: relative;
}

.game-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  grid-gap: 15px;
  width: 380px;
}

.game-grid img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform .3s, box-shadow .3s, border 0.3s;
  border: 3px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.game-grid img::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.game-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255,215,0,0.7);
  border-color: #fffacd;
}

.game-list {
  width: 380px;
  height: 390px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: #fff;
  overflow-y: auto;
}

.game-list ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.game-list li {
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  transition: background 0.3s;
}

.game-list li:hover {
  background: rgba(255,255,255,0.12);
}

.game-list li span {
  position: relative;
  z-index: 2;
}

.bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 12px;
  opacity: 0.45;
  z-index: 1;
  width: 100%;
  transform-origin: left;
  transform: scaleX(var(--rate));
  transition: transform 0.6s ease;
  background: #ffd700;
  overflow: hidden;
}

.bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
  animation: barShimmer 2s linear infinite;
}

@keyframes barShimmer {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}


@media(max-width: 768px) {
  .game-section h2 { font-size: 24px; }
  .game-container { flex-direction: column; align-items: center; }
}
.update-time {
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 12px;
  color: #e6e6e6;
  opacity: .85;
  letter-spacing: 0.5px;
}

.game-list::-webkit-scrollbar {
  width: 10px;
}

.game-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.game-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffdd55, #ffb700);
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.4);
  box-shadow: 0 0 6px rgba(255,215,0,0.6);
}

.game-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffe680, #ffc933);
  box-shadow: 0 0 10px rgba(255,215,0,0.9);
}
/* === Fade-in + Slide-up Animation for List === */
.game-list li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Elegant Bar Grow Animation === */
.bar {
  animation: growBar 1.2s ease-out forwards, glowPulse 2s ease-in-out infinite;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes growBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(var(--rate)); }
}

/* Elegant soft glowing effect */
@keyframes glowPulse {
  0%   { opacity: .45; }
  50%  { opacity: .65; }
  100% { opacity: .45; }
}



