/* ===== Destop Navbar ===== */
/* none */
/* ===== Destop Navbar ===== */

/* ===== Logo ===== */
/* Style tambahan agar logo berada di tengah pada layar kecil */
@media (max-width: 360px) {
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Pastikan logo tidak terlalu besar pada mobile */
    max-width: 500%;
  }

  .logo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
/* ===== End Logo ===== */

/* ===== Bullhorn ===== */
.custom-marquee {
  background: #fff;
  color: linear-gradient(#067dec, #74dfff, #067dec);
  font-weight: bold;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgba(192, 187, 185, 0.5);
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: slide-marquee 15s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding-right: 100%;
}

@keyframes slide-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ===== End Bullhorn ===== */

/* ===== Flip Container ===== */
.slide-wrapper {
  width: 100%;
  max-width: 600px;
  height: 350px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 16px;
  position: relative;
}

.slide-card {
  display: flex;
  width: max-content;
  animation: slide-left 30s linear infinite;
}

.slide-face {
  flex: 0 0 100%;
  max-width: 600px;
  height: 250px;
  padding-right: 16px;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Animation for slide */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-30%);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .slide-wrapper {
    height: 180px;
  }

  .slide-face {
    max-width: 90vw;
    height: 180px;
    padding-right: 8px;
  }

  .slide-image {
    height: 180px;
    object-fit: contain;
  }
}
/* ===== End Flipper ===== */

/* ===== Mystery Box ===== */
.gendut-subtitle {
  color: #ffffff; /* text-yellow-500 */
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem; /* mb-2 */
  letter-spacing: 0.1em; /* tracking-wider */
}

.gendut-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem; /* mb-3 */
}

@media (min-width: 768px) {
  .gendut-title {
    font-size: 2.25rem; /* md:text-4xl */
  }
}

.gendut-highlight {
  color: #ffffff; /* text-white-400 (ini biasanya abu-abu) */
}

.gendut-description {
  margin-bottom: 1rem; /* mb-4 */
  color: #ffffff; /* text-gray-300 */
}

/* Tombol mystery box */
.mystery-box-btn {
  display: inline-block;
  background-color: #e81c21; /* bg-yellow-400 */
  color: #ffffff;
  font-weight: bold;
  padding: 0.75rem 1.25rem; /* px-5 py-3 */
  border-radius: 9999px; /* rounded-full */
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.mystery-box-btn:hover {
  color: #000;
  background-color: #ffffff; /* bg-yellow-300 */
}

.gendut-terbang {
  position: absolute;
  right: 0;
  top: 0;
  padding: 1rem;
  z-index: 1000;
}

.gendut-terbang img {
  max-height: 180px;
  width: auto;
  display: block;
}
/* ===== End Mystery Box ===== */

/* ===== Slot Card ===== */
.rtp-section {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}

/* 🎯 Subtitle Judul */
.rtp-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* 🎯 Teks Highlight Gradasi */
.highlight-text {
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 🎯 Garis Bawah Judul */
.rtp-line {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, #007cf0, #00dfd8);
  border-radius: 2px;
  margin-top: 12px;
  animation: expandLine 1.2s ease-in-out forwards;
}

@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 1;
  }
}

/* 🧠 Judul Provider */
.rtp-provider-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.rtp-provider-title em {
  color: #facc15; /* Tailwind Yellow */
}

/* ============================
   🎰 CARD SLOT RTP
=============================== */
.rtp-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.rtp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 🎰 Gambar Slot */
.rtp-image {
  width: 100%;
  height: 150px;
  object-fit: cover; /* ✅ diperbaiki dari `con` ke `cover` */
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border: 2.5px solid #e7dfaf;
}

/* 🎰 Judul Slot */
.rtp-card h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* 🎰 Progress RTP */
.rtp-progress {
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #ddd;
}

.progress-bar {
  height: 100%;
  transition: width 0.5s ease-in-out;
}
/* ============================
   🔘 TOMBOL CTA RTP
=============================== */
.button-rtp-home {
  background: #fff;
  color: #000000;
  padding: 10px 20px;
  margin-top: 2rem;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.button-rtp-home:hover {
  background: linear-gradient(to right, #fa4a15, #f91616);
  color: #111111;
  text-decoration: none;
}
/* ============================
   📱 RESPONSIVE (Mobile)
=============================== */
@media (max-width: 768px) {
  .rtp-subtitle {
    font-size: 1.1rem;
  }

  .rtp-line {
    width: 60px;
  }

  .rtp-image {
    height: 120px;
  }

  .rtp-card h6 {
    font-size: 0.8rem;
  }

  .button-rtp-home {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
/* ===== End ===== */

/* ===== Slot Demo ===== */
.text-gradient {
  font-weight: 600;
  background: linear-gradient(45deg, #ff0033, #a800ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.desc-text {
  font-size: 0.9rem;
  color: #333;
  text-align: justify;
  line-height: 1.4;
  margin: 0;
  padding: 0 6px;
}

.img-footer-small {
  width: 80px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.btn-demo,
.btn-asli {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-demo {
  background-color: #bb0000;
  color: white;
}

.btn-demo:hover {
  background-color: #ffe600;
  color: #000;
}

.btn-asli {
  background-color: #198754;
  color: white;
}

.btn-asli:hover {
  background-color: #ffe600;
  color: #000;
}

/* RESPONSIVE MOBILE */
@media (max-width: 430px) {
  .desc-text {
    font-size: 0.85rem;
    padding: 0 4px;
  }

  .btn-demo,
  .btn-asli {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ===== End Slot Demo ===== */

/* ===== JP list & Big Winner ===== */
.table-container {
  margin: 20px auto;
  max-width: 600px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  background: linear-gradient(#333, #ffffff);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.table-title {
  background-color: #067dec;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0;
}

.withdraw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.withdraw-table thead tr {
  background-color: #00285c;
}

.withdraw-table th,
.withdraw-table td {
  padding: 10px;
  text-align: left;
}

.withdraw-table td:last-child,
.withdraw-table th:last-child {
  text-align: right;
}

.withdraw-table tbody tr {
  background-color: #3493ec;
  border-bottom: 1px solid #ffffff;
}

/* Animasi slide masuk */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  animation: slideIn 0.5s ease forwards;
}

/* Animasi slide keluar */
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-25px);
  }
}

.slide-out {
  animation: slideOut 0.5s ease forwards;
}
/* ================================== */
/* Section about dengan gaya modern */
.about-modern {
  background: linear-gradient(145deg, #74dfff, #54a2eb, #067dec);
  color: #fff;
}

/* Deskripsi modern */
.description-modern {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Highlight pada teks */
.highlight-modern {
  color: #ffffff;
  font-weight: bold;
}

/* Section statistik */
.stats-section-modern {
  background: none;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: none;
}

/* Judul statistik */
.stats-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Kartu statistik */
.stat-card-modern {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Nilai statistik */
.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

/* Label statistik */
.stat-label {
  font-size: 0.95rem;
  color: #ffffffcc;
  margin-top: 6px;
}
/* ===== JP list & Big Winner ===== */

/* ===== Info Section ===== */
.glow {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #f8f8f8, #ffffff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: flicker 3s infinite;
  padding: 1rem;
  margin: 2rem 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2),
    0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px #facc15, 0 0 40px #f472b6,
    0 0 60px #60a5fa;
}

.glow em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 20px #facc15, 0 0 30px #f472b6;
  }
  40% {
    opacity: 0.85;
    text-shadow: 0 0 5px #fff, 0 0 15px #f472b6;
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 20px #fff, 0 0 40px #60a5fa;
  }
}
/* ===== End Info Section ===== */

/* ===== About ===== */
.about.section {
  background: linear-gradient(180deg, #1f1f1f, #111);
}

/* Glow */
.glow-sm {
  text-shadow: 0 0 8px #6b6a67, 0 0 12px #7e7b76;
}

.line-dec {
  width: 80px;
  height: 4px;
  background: #ffffff;
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffffff;
}

/* Circle Progress Bar */
.circle-skill {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  --size: 140px;
  --border: 12px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.circle .value {
  background: #1f1f1f;
  border-radius: 50%;
  width: calc(var(--size) - 2 * var(--border));
  height: calc(var(--size) - 2 * var(--border));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 6px #fff;
  box-shadow: inset 0 0 12px #000;
  padding: 10px;
}

.circle .value span {
  font-size: 0.8rem;
  opacity: 0.85;
}

@keyframes wind-blow {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(-5px, -10px) rotate(-1deg);
  }
  50% {
    transform: translate(5px, -5px) rotate(1deg);
  }
  75% {
    transform: translate(-3px, -8px) rotate(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.about-left-image img {
  animation: wind-blow 6s ease-in-out infinite;
  will-change: transform;
}
/* ===================== WARNA PROGRESS ===================== */
/* SLOT - EMAS */
.circle-slot {
  background: conic-gradient(
    #fa1515 calc(var(--percent) * 1%),
    #ffffff calc(var(--percent) * 1%)
  );
  box-shadow: 0 0 20px rgba(250, 86, 21, 0.4);
}

/* CASINO - UNGU */
.circle-casino {
  background: conic-gradient(
    #006eff calc(var(--percent) * 1%),
    #ffffff calc(var(--percent) * 1%)
  );
  box-shadow: 0 0 20px rgba(85, 136, 247, 0.4);
}

/* POKER - HIJAU */
.circle-poker {
  background: conic-gradient(
    #b9ce00 calc(var(--percent) * 1%),
    #ffffff calc(var(--percent) * 1%)
  );
  box-shadow: 0 0 20px rgba(181, 197, 34, 0.4);
}

/* ===== Footer Menu ===== */
.footer_area {
  background: #ffffff;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #facc15;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: #aaa;
  padding: 4px 0;
  transition: 0.3s;
  text-decoration: none;
}

.footer-link:hover {
  color: #facc15;
  padding-left: 6px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: #facc15;
  transition: 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #facc15;
  color: #1a1a1a;
  transform: scale(1.1);
}
/* Zigzag di tampilan mobile */
@media (max-width: 767.98px) {
  .circle-skill {
    display: flex;
    justify-content: center;
    position: relative;
  }

  /* Zigzag effect */
  .circle-skill:nth-child(1) {
    margin-top: 0;
  }

  .circle-skill:nth-child(2) {
    margin-top: 30px;
    margin-left: auto;
    margin-right: 0;
  }

  .circle-skill:nth-child(3) {
    margin-top: 60px;
    margin-left: 0;
    margin-right: auto;
  }
}
/* ===== End About */

/* ===== Footer ===== */
.footer-copyright {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 20px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  text-shadow: 0 0 6px rgba(250, 204, 21, 0.3);
  border-top: 2px solid #facc15;
  box-shadow: inset 0 1px 0 #facc15, 0 -1px 8px rgba(250, 204, 21, 0.2);
  animation: fadeInUp 1s ease-in-out;
}

.footer-copyright .brand {
  color: #facc15;
  font-weight: 700;
  text-shadow: 0 0 8px #facc15, 0 0 14px #f59e0b;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* ===== End Footer ===== */

/* ===== Navbar Animation ===== */
.transition-slide {
  transition: transform 0.4s ease;
}

.hide-bottom-nav {
  transform: translateY(100%);
}
/* ===== End Navbar Animation ===== */

/* ===== About Me ===== */
.tentang-kami {
  background: #1a1a1a;
  color: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem 2rem 3.5rem; /* beri ruang bawah untuk panah */
  max-width: 850px;
  margin: 2rem auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative; /* penting agar panah bisa diposisikan absolut di dalam */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Container artikel dengan batasan tinggi (setengah dulu) */
.footer-description {
  position: relative;
  max-height: 250px; /* batas tinggi setengah konten, bisa disesuaikan */
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.6s ease;
}

/* Efek gradient fade di bagian bawah saat konten terpotong */
.footer-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0) 0%,
    rgba(26, 26, 26, 1) 100%
  );
  pointer-events: none;
  transition: opacity 0.6s ease;
  opacity: 1;
}

/* Ketika expanded, tampil full tanpa fade */
.footer-description.expanded {
  max-height: 5000px; /* cukup besar supaya tampil penuh */
}

.footer-description.expanded::after {
  opacity: 0; /* hilangkan gradient fade */
}

/* Arrow container di bawah tengah */
.arrow-container {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}

.arrow {
  stroke: #ffffff;
  transition: transform 0.35s ease;
  width: 28px;
  height: 28px;
}

.arrow.down {
  transform: rotate(0deg);
}

.arrow.up {
  transform: rotate(180deg);
}

/* Artikel style */
.article-container h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.article-container h2 {
  color: #ffffff; /* warna subjudul */
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.article-container p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.highlight {
  color: #00e676;
  font-weight: bold;
}

.separator {
  border-top: 2px dashed #444;
  margin: 40px 0;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }

  .footer-title {
    font-size: 1.25rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }
}
/* ===== End About Me ===== */

/* ===== Slider Footer ===== */
.promo-slider {
  width: 100%;
  max-width: 280px; /* Sesuaikan dengan lebar gambar */
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* Track container */
.slider-track {
  display: flex;
  width: max-content;
  animation: slidePromo 20s linear infinite;
}

/* Promo Images */
.slider-track img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 8px;
}

/* CSS */
.promo-heading-simple h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

/* Smooth infinite animation */
@keyframes slidePromo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .promo-slider-box {
    max-width: 100%;
    margin-top: 1rem;
  }
  .promo-slider {
    max-width: 100%;
    height: 120px;
  }
  .slider-track img {
    width: 100%;
    height: 120px;
  }
}
/* ===== End Slider Footer ===== */

/* ===== Animation Money Klik ===== */
#money-burst-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.money-piece {
  position: absolute;
  width: 36px;
  opacity: 1;
  animation: explodeMoney 1.3s ease-out forwards;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); /* golden glow */
}

@keyframes explodeMoney {
  0% {
    transform: translate(0, 0) scale(0.8) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) rotate(720deg) scale(1.2);
    opacity: 0;
  }
}
/* ===== End Animation Money Klik ===== */
