/* CSS PEMBUKA ------------------------------------------------------------------------------------------------------------------- */
/* CSS PEMBUKA ------------------------------------------------------------------------------------------------------------------- */
@import url("https://fonts.cdnfonts.com/css/digital-numbers");
@import url("https://fonts.cdnfonts.com/css/brave-phoenix");

:root {
  --background-image: url("../img/bg1.webp");
}

body {
  background-color: black;
  color: white;
  background-image: var(--background-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 23px;
}

h3 {
  font-size: 20px;
}

.bg {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg1 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg2 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg3 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg4 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg5 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg6 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-gradient {
  background-color: rgba(0, 0, 0, 0.5);
}

.cursor {
  cursor: pointer;
}

.pelangi {
  background: -webkit-linear-gradient(red, gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

@font-face {
  font-family: "Digital-7";
  src: url("../font/digital-7.ttf") format("truetype");
}

.digital-text {
  font-family: "Digital-7", sans-serif;
  font-size: 88px;
  letter-spacing: 2px;
}

.offcanvas-body::-webkit-scrollbar {
  display: none;
}
.alert-gold-transparent {
  background: linear-gradient(
    45deg,
    rgba(180, 20, 20, 0.6) 0%,
    /* Merah gelap */ rgba(235, 50, 50, 0.6) 25%,
    /* Merah terang */ rgba(180, 20, 20, 0.6) 50%,
    rgba(235, 50, 50, 0.6) 75%,
    rgba(180, 20, 20, 0.6) 100%
  );
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* CSS PEMBUKA ------------------------------------------------------------------------------------------------------------------- */
/* CSS PEMBUKA ------------------------------------------------------------------------------------------------------------------- */

/* LOADING ---------------------------------------------------------------------------------------------------------- */
/* LOADING ---------------------------------------------------------------------------------------------------------- */
.ajax-loader-member {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;

  background:
    radial-gradient(
      circle at top left,
      rgba(255, 210, 60, 0.13),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 255, 110, 0.1),
      transparent 35%
    ),
    radial-gradient(circle at center, rgba(255, 0, 0, 0.08), transparent 45%),
    rgba(0, 10, 3, 0.78);

  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.ajax-loader-box {
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  text-align: center;

  background:
    linear-gradient(145deg, rgba(5, 35, 13, 0.88), rgba(2, 10, 5, 0.94)),
    radial-gradient(circle at top, rgba(255, 214, 70, 0.18), transparent 45%);

  border: 1px solid rgba(255, 214, 70, 0.42);
  border-radius: 28px;
  padding: 34px 24px 28px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.65),
    0 0 35px rgba(255, 214, 70, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  position: relative;
  overflow: hidden;
}

.ajax-loader-box::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 230, 90, 0.12) 45%,
    rgba(255, 230, 90, 0.28) 50%,
    rgba(0, 255, 110, 0.1) 55%,
    transparent 65%
  );
  transform: rotate(12deg);
  animation: ajaxLoaderShine 2.6s linear infinite;
  pointer-events: none;
}

.ajax-loader-glow {
  position: absolute;
  width: 190px;
  height: 190px;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 214, 70, 0.28),
    transparent 68%
  );
  filter: blur(10px);
}

.ajax-loader-ring-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}

.ajax-loader-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.08);
  border-top-color: gold;
  border-right-color: #16ff7a;
  border-bottom-color: red;
  border-left-color: skyblue;
  animation: ajaxLoaderSpin 0.85s linear infinite;
  box-shadow:
    0 0 22px rgba(255, 216, 74, 0.32),
    inset 0 0 18px rgba(255, 216, 74, 0.08);
}

.ajax-loader-dot {
  display: none;
}

.ajax-loader-logo-asg {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(255, 216, 74, 0.35))
    drop-shadow(0 0 14px rgba(255, 0, 45, 0.18));
}

.ajax-loader-title {
  font-size: 18px;
  font-weight: 900;
  color: #ffe66d;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 10px rgba(255, 216, 74, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.65);
}

.ajax-loader-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.ajax-loader-progress {
  width: 170px;
  height: 6px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 216, 74, 0.18);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ajax-loader-progress span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #16ff7a, gold, red, skyblue);
  box-shadow: 0 0 14px rgba(255, 216, 74, 0.65);
  animation: ajaxLoaderProgress 1s ease-in-out infinite;
}

body.ajax-loading {
  overflow: hidden;
}

@keyframes ajaxLoaderSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ajaxLoaderProgress {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(240%);
  }
}

@keyframes ajaxLoaderShine {
  0% {
    transform: translateX(-80%) rotate(12deg);
  }

  100% {
    transform: translateX(80%) rotate(12deg);
  }
}

/* LOADING ---------------------------------------------------------------------------------------------------------- */
/* LOADING ---------------------------------------------------------------------------------------------------------- */

/* RESPONSIVE ---------------------------------------------------------------------------------------------------------- */
/* RESPONSIVE ---------------------------------------------------------------------------------------------------------- */
/* Sembunyikan versi mobile di layar desktop (default) */
#halamanSlotMobile {
  display: none !important;
}

/* Sembunyikan versi desktop dan tampilkan versi mobile di layar kecil (maksimal lebar 768px) */
@media (max-width: 768px) {
  #halamanSlotDesktop {
    display: none !important;
  }
  #halamanSlotMobile {
    display: block !important;
  }
}
/* RESPONSIVE ---------------------------------------------------------------------------------------------------------- */
/* RESPONSIVE ---------------------------------------------------------------------------------------------------------- */

/* BUTTON ---------------------------------------------------------------------------------------------------------- */
/* BUTTON ---------------------------------------------------------------------------------------------------------- */
.gradient-buttons .btn {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.2) 49%,
    rgba(0, 0, 0, 0.15) 51%,
    rgba(0, 0, 0, 0.5)
  ) !important;
  background-repeat: repeat-x !important;
  background-blend-mode: overlay;
  border: none !important;
  border-radius: 50px;

  font-weight: 600 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-info {
  background: linear-gradient(0deg, #007aa5, #17a2b8 57%, #4edff0) !important;
  color: white !important;
}

.gradient-buttons .btn.btn-info:hover {
  background: linear-gradient(0deg, #4edff0, #17a2b8 57%, #007aa5) !important;
}

.gradient-buttons .btn-outline-info {
  color: white !important;
}

.gradient-buttons .btn-outline-info:hover {
  background: linear-gradient(0deg, #007aa5, #17a2b8 57%, #4edff0) !important;
  color: white !important;
}

.text-bg-info {
  background: linear-gradient(0deg, #007aa5, #17a2b8 57%, #4edff0) !important;
}

.text-info {
  color: linear-gradient(0deg, #007aa5, #17a2b8 57%, #4edff0) !important;
}

.bg-info {
  background: linear-gradient(0deg, #007aa5, #17a2b8 57%, #4edff0) !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-warning {
  background: linear-gradient(0deg, #d27303, #ffa801 57%, #ffc700) !important;
}

.gradient-buttons .btn.btn-warning:hover {
  background: linear-gradient(0deg, #ffc700, #ffa801, #d27303) !important;
  color: black !important;
}

.gradient-buttons .btn-outline-warning:hover {
  background: linear-gradient(0deg, #d27303, #ffa801 57%, #ffc700) !important;
  color: black !important;
}

.text-bg-warning {
  background: linear-gradient(0deg, #d27303, #ffa801 57%, #ffc700) !important;
}

.text-warning {
  color: linear-gradient(0deg, #d27303, #ffa801 57%, #ffc700) !important;
}

.alert-warning {
  background: linear-gradient(0deg, #d27303, #ffa801 57%, #ffc700) !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-primary {
  background: linear-gradient(0deg, #011f5b, #0056b3 57%, #0084e9) !important;
}

.gradient-buttons .btn.btn-primary:hover {
  background: linear-gradient(0deg, #0084e9, #0056b3 57%, #011f5b) !important;
}

.gradient-buttons .btn-outline-primary {
  color: white !important;
}

.gradient-buttons .btn-outline-primary:hover {
  background: linear-gradient(0deg, #011f5b, #0056b3 57%, #0084e9) !important;
  color: white !important;
}

.text-bg-primary {
  background: linear-gradient(0deg, #011f5b, #0056b3 57%, #0084e9) !important;
}

.text-primary {
  color: linear-gradient(0deg, #011f5b, #0056b3 57%, #0084e9) !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-danger {
  background: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
  color: white !important;
}

.gradient-buttons .btn.btn-danger:hover {
  background: linear-gradient(0deg, #ff6b6b, #dc3545 57%, #8b0000) !important;
}

.gradient-buttons .btn-outline-danger {
  color: white !important;
}

.gradient-buttons .btn-outline-danger:hover {
  background: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
  color: white !important;
}

.bg-danger {
  background: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
}

.text-bg-danger {
  background: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
}

.text-danger {
  color: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
}

.alert-danger {
  background: linear-gradient(0deg, #8b0000, #dc3545 57%, #ff6b6b) !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-success {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
}

.gradient-buttons .btn.btn-success:hover {
  background: linear-gradient(0deg, #50d050, #28a745 57%, #0a5720) !important;
}

.gradient-buttons .btn-outline-success {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
  color: white !important;
}

.gradient-buttons .btn-outline-success:hover {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
  color: white !important;
}

.text-bg-success {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
}

.text-success {
  color: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
}

.bg-success {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
}

.alert-success {
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-light {
  background: linear-gradient(0deg, #e0e0e0, #f8f9fa 57%, #ffffff) !important;
}

.gradient-buttons .btn.btn-light:hover {
  background: linear-gradient(0deg, #ffffff, #f8f9fa 57%, #e0e0e0) !important;
}

.gradient-buttons .btn-outline-light {
  color: white !important;
}

.gradient-buttons .btn-outline-light:hover {
  background: linear-gradient(0deg, #e0e0e0, #f8f9fa 57%, #ffffff) !important;
  color: black !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-secondary {
  background: linear-gradient(0deg, #505050, #6c757d 57%, #a0a0a0) !important;
}

.gradient-buttons .btn.btn-secondary:hover {
  background: linear-gradient(0deg, #a0a0a0, #6c757d 57%, #505050) !important;
}

.gradient-buttons .btn-outline-secondary {
  color: white !important;
}

.gradient-buttons .btn-outline-secondary:hover {
  background: linear-gradient(0deg, #a0a0a0, #6c757d 57%, #505050) !important;
  color: white !important;
}

/* ************************************************************************************* */
.gradient-buttons .btn.btn-dark {
  background: linear-gradient(0deg, #343a40, #495057 57%, #6c757d) !important;
  color: white !important;
}

.gradient-buttons .btn.btn-dark:hover {
  background: linear-gradient(0deg, #6c757d, #495057 57%, #343a40) !important;
  color: white !important;
}

.gradient-buttons .btn-outline-dark {
  color: #343a40 !important;
  border-color: #343a40 !important;
}

.gradient-buttons .btn-outline-dark:hover {
  background: linear-gradient(0deg, #6c757d, #495057 57%, #343a40) !important;
  color: white !important;
}

/* BUTTON ---------------------------------------------------------------------------------------------------------- */
/* BUTTON ---------------------------------------------------------------------------------------------------------- */

/* INPUT ---------------------------------------------------------------------------------------------------------- */
/* INPUT ---------------------------------------------------------------------------------------------------------- */
/* CSS CUSTOM THEMA & INPUT ----------------------------------------------------- */
.theme-input {
  background-color: #202020 !important;
  border: 1px solid #444444 !important;
  color: #ffffff !important;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}

.theme-input::placeholder {
  color: rgb(245, 242, 242) !important;
  font-weight: 300;
}

.input-rounded {
  border-radius: 50px !important;
  padding-left: 15px;
}

.theme-input-group {
  border-radius: 50px !important;
  overflow: hidden;
  border: 1px solid #444444;
  transition: all 0.3s ease-in-out;
}

.theme-input-group > .form-control {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding-left: 15px;
}

.theme-input-group > .input-group-text {
  background-color: #202020 !important;
  border: none !important;
  color: #aaaaaa !important;
  transition: color 0.3s ease;
}

.theme-input-group > .input-group-text:hover {
  color: #d4af37 !important;
}

.theme-input:focus,
.theme-input-group:focus-within {
  border-color: #d4af37 !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4) !important;
  outline: none;
}

/* NAVBAR BAWAH MOBILE (BOTTOM MENU) -------------------------------------------- */
.menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #333;
  z-index: 1030;
  backdrop-filter: blur(5px);
}
.menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  gap: 3px;
}
.menu small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
body {
  padding-bottom: 70px; /* Mencegah konten tertutup menu bawah di HP */
}
@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  } /* Reset padding di Desktop */
}

/* SCROLLBAR HIDE ------------------------------------------------------------- */
.offcanvas-body::-webkit-scrollbar {
  display: none;
}
/* INPUT ---------------------------------------------------------------------------------------------------------- */
/* INPUT ---------------------------------------------------------------------------------------------------------- */

/* MATCH DESKTOP ---------------------------------------------------------------------------------------------------------- */
/* MATCH DESKTOP ---------------------------------------------------------------------------------------------------------- */
#matchSlideBox {
  overflow: hidden;
}

.matchSlideItem {
  height: 140px !important;
  overflow: hidden;
}

.matchSlideItem .list-group-item {
  height: 140px !important;
  overflow: hidden;
}

#matchSlideBox .list-group-item {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #fff !important;
}

#matchSlideBox .list-group-item small,
#matchSlideBox .list-group-item p {
  color: #fff !important;
}

/* MATCH DESKTOP ---------------------------------------------------------------------------------------------------------- */
/* MATCH DESKTOP ---------------------------------------------------------------------------------------------------------- */

/* MATCH MOBILE ---------------------------------------------------------------------------------------------------------- */
/* MATCH MOBILE ---------------------------------------------------------------------------------------------------------- */
#matchSlideBoxMobile {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

#matchSlideInnerMobile {
  display: flex;
  width: max-content;
}

#matchSlideInnerMobile {
  display: flex;
  width: 100%;
}

.matchSlideItemMobile {
  width: 100%;
  min-width: 100%;
}

.matchSlideItemMobile {
  height: 190px !important;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.matchSlideItemMobile .list-group-item {
  height: 190px !important;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #fff !important;
}

#matchSlideBoxMobile .list-group-item small,
#matchSlideBoxMobile .list-group-item p {
  color: #fff !important;
}

/* MATCH MOBILE ---------------------------------------------------------------------------------------------------------- */
/* MATCH MOBILE ---------------------------------------------------------------------------------------------------------- */

/* MENU DESKTOP ---------------------------------------------------------------------------------------------------------- */
/* MENU DESKTOP ---------------------------------------------------------------------------------------------------------- */
.menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.menu a {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition:
    background-color 0.3s,
    transform 0.3s;
}

.menu a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.menu a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: -webkit-linear-gradient(red, gold);
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition:
    transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1),
    all 0.2s ease-in-out;
  left: 0;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  left: 5%;
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu::-webkit-scrollbar-thumb {
  background: red;
  border-radius: 10px;
}

/* MENU DESKTOP ---------------------------------------------------------------------------------------------------------- */
/* MENU DESKTOP ---------------------------------------------------------------------------------------------------------- */

/* JACKPOT GAMBAR ------------------------------------------------------------------ */
/* JACKPOT GAMBAR ------------------------------------------------------------------ */
.jackpot-box {
  width: 100%;
  max-width: 100%;
}

.jackpot-counter {
  position: relative;
  width: 100%;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/jackpot.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.jackpot-number {
  position: relative;
  z-index: 2;
  margin-top: 45px;
  color: #fff7c4;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow:
    0 0 8px #ffffff,
    0 0 15px #ffd400,
    0 0 28px #ffb200,
    0 0 40px #ff9100;
  white-space: nowrap;
}

@media only screen and (min-width: 1400px) {
  .jackpot-counter {
    min-height: 190px;
  }

  .jackpot-number {
    font-size: 42px;
    margin-top: 35px;
  }

  .jackpot-counter {
    position: relative;
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/jackpot.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
}
/* JACKPOT LUXURY TEMA -------------------------------------------------------- */
.jackpot-wrapper {
  max-width: 380px; /* Batas lebar bingkai */
  width: 100%;
  margin: 0 auto;
}

.jackpot-digital-text {
  font-family: "Digital-7", sans-serif;
  font-size: clamp(3.6rem, 12vw, 3.6rem);

  color: #fff1b8;
  letter-spacing: 3px;
  text-shadow:
    0 0 10px rgba(255, 193, 7, 0.9),
    0 0 20px rgba(255, 193, 7, 0.7),
    0 0 40px rgba(210, 115, 3, 0.8);

  margin-top: -1%; /* Tarik sedikit ke atas agar pas presisi di tengah bingkai */
}

/* JACKPOT GAMBAR ------------------------------------------------------------------ */
/* JACKPOT GAMBAR ------------------------------------------------------------------ */

/* JUDUL HALAMAN ------------------------------------------------------------------ */
/* JUDUL HALAMAN ------------------------------------------------------------------ */
.judul-section-luxury {
  display: inline-block;
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 7px;
  position: relative;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(255, 193, 7, 0.55);
}

.judul-section-luxury::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffc107,
    #ffffff,
    #ffc107,
    transparent
  );
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.9);
}

/* PRIMARY - Biru */
.judul-section-luxury.primary {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(13, 110, 253, 0.85);
}

.judul-section-luxury.primary::after {
  background: linear-gradient(
    90deg,
    transparent,
    #0d6efd,
    #ffffff,
    #0d6efd,
    transparent
  );
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.95);
}

/* WARNING - Kuning / Gold */
.judul-section-luxury.warning {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(255, 193, 7, 0.85);
}

.judul-section-luxury.warning::after {
  background: linear-gradient(
    90deg,
    transparent,
    #ffc107,
    #ffffff,
    #ffc107,
    transparent
  );
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.95);
}

/* DANGER - Merah */
.judul-section-luxury.danger {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(220, 53, 69, 0.9);
}

.judul-section-luxury.danger::after {
  background: linear-gradient(
    90deg,
    transparent,
    #dc3545,
    #ffffff,
    #dc3545,
    transparent
  );
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.95);
}

/* SUCCESS - Hijau */
.judul-section-luxury.success {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(25, 255, 120, 0.85);
}

.judul-section-luxury.success::after {
  background: linear-gradient(
    90deg,
    transparent,
    #19ff78,
    #ffffff,
    #19ff78,
    transparent
  );
  box-shadow: 0 0 8px rgba(25, 255, 120, 0.95);
}

/* INFO - Cyan / Biru muda */
.judul-section-luxury.info {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(13, 202, 240, 0.9);
}

.judul-section-luxury.info::after {
  background: linear-gradient(
    90deg,
    transparent,
    #0dcaf0,
    #ffffff,
    #0dcaf0,
    transparent
  );
  box-shadow: 0 0 8px rgba(13, 202, 240, 0.95);
}

/* LIGHT - Putih / Silver */
.judul-section-luxury.light {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 0 10px rgba(248, 249, 250, 0.85);
}

.judul-section-luxury.light::after {
  background: linear-gradient(
    90deg,
    transparent,
    #f8f9fa,
    #ffffff,
    #f8f9fa,
    transparent
  );
  box-shadow: 0 0 8px rgba(248, 249, 250, 0.95);
}

/* DARK - Hitam / Abu luxury */
.judul-section-luxury.dark {
  color: #ffffff;
  text-shadow:
    0 1px 0 #000,
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 0 10px rgba(108, 117, 125, 0.9);
}

.judul-section-luxury.dark::after {
  background: linear-gradient(
    90deg,
    transparent,
    #6c757d,
    #ffffff,
    #6c757d,
    transparent
  );
  box-shadow: 0 0 8px rgba(108, 117, 125, 0.95);
}

/* Responsive Mobile */
@media (max-width: 576px) {
  .judul-section-luxury {
    font-size: 19px;
    letter-spacing: 0.5px;
    padding-bottom: 6px;
  }

  .judul-section-luxury::after {
    width: 75%;
    height: 2px;
  }
}
/* TOMBOL NAVIGASI SLIDER LUXURY ------------------------------------------------ */
.nav-arrow-luxury {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 193, 7, 0.4); /* Border emas halus */
  color: #ffc107; /* Warna ikon emas */
  cursor: pointer;
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.8),
    inset 0 0 5px rgba(255, 193, 7, 0.1);
  transition: all 0.3s ease-in-out;
}

.nav-arrow-luxury i {
  font-size: 14px;
}

/* Efek menyala saat di-hover */
.nav-arrow-luxury:hover {
  background: linear-gradient(
    180deg,
    #ffc107,
    #d27303
  ); /* Gradien emas ke orange */
  color: #000000; /* Ikon menjadi hitam agar kontras */
  border-color: #ffc107;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.8);
  transform: scale(1.15); /* Efek membesar sedikit */
}
/* JUDUL HALAMAN ------------------------------------------------------------------ */
/* JUDUL HALAMAN ------------------------------------------------------------------ */

/* CAROUSEL TESTIMONI LUXURY ---------------------------------------------------------------------- */
/* CAROUSEL TESTIMONI LUXURY ---------------------------------------------------------------------- */
#testimoni-carousel .item {
  padding: 5px;
}

/* Desain Kartu VIP/Premium */
.testimonial-card-luxury {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 160px;
  /* Latar belakang gelap elegan */
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.95),
    rgba(5, 5, 5, 0.98)
  );
  border: 1px solid rgba(255, 193, 7, 0.25); /* Bingkai emas tipis */
  border-radius: 12px;
  padding: 15px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.6),
    inset 0 0 15px rgba(255, 193, 7, 0.05);
  transition: all 0.3s ease;
}

/* Efek nyala saat kartu disentuh/hover */
.testimonial-card-luxury:hover {
  border-color: rgba(255, 193, 7, 0.8);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 193, 7, 0.2);
  transform: translateY(-3px);
}

/* Gambar Profile / VIP */
.testimonial-img {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.testimonial-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.testimonial-title {
  color: #ffc107; /* Warna teks Emas */
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

/* Badge Nominal Gradien Emas */
.badge-gold {
  background: linear-gradient(180deg, #ffc107 0%, #d27303 100%);
  color: #000000;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: #aaaaaa;
}

.testimonial-meta strong {
  color: #ffffff;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e0e0e0;
  font-style: italic;
  margin: 0;
  margin-bottom: 8px;
}

.testimonial-author {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffc107;
  margin-top: auto; /* Mendorong nama user ke paling bawah kartu */
}

/* Responsive penyesuaian Mobile */
@media (max-width: 576px) {
  .testimonial-img {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
  .testimonial-title {
    font-size: 1rem;
  }
  .badge-gold {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  .testimonial-text {
    font-size: 0.85rem;
  }
}
/* CAROUSEL TESTIMONI LUXURY ---------------------------------------------------------------------- */
/* CAROUSEL TESTIMONI LUXURY ---------------------------------------------------------------------- */

/* LUXURY PROGRESS BAR TEMA --------------------------------------------------- */
/* LUXURY PROGRESS BAR TEMA --------------------------------------------------- */
.luxury-progress-track {
  background-color: #e9ecef; /* Warna dasar track terang/putih */
  border-radius: 50px; /* Ujung melengkung sempurna (Pill) */
  /* Efek bayangan ke dalam agar terlihat seperti cekungan 3D */
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.luxury-progress-danger {
  /* Gradien vertikal (0deg) memberi kesan cembung/mengkilap seperti kapsul */
  background: linear-gradient(
    0deg,
    #8b0000 0%,
    #dc3545 50%,
    #ff6b6b 100%
  ) !important;
  border-radius: 50px;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9); /* Bayangan teks agar terbaca jelas */
  box-shadow: 2px 0 8px rgba(220, 53, 69, 0.8); /* Efek cahaya merah di ujung bar */
}

/* TEMA PROGRESS BAR LUXURY LENGKAP */
.luxury-progress-track {
  background-color: #e9ecef;
  border-radius: 50px;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Biru (Primary) */
.luxury-progress-primary {
  background: linear-gradient(
    0deg,
    #011f5b 0%,
    #0056b3 50%,
    #0084e9 100%
  ) !important;
  border-radius: 50px;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  box-shadow: 2px 0 8px rgba(0, 132, 233, 0.8);
}

/* Hijau (Success) */
.luxury-progress-success {
  background: linear-gradient(
    0deg,
    #0a5720 0%,
    #28a745 50%,
    #50d050 100%
  ) !important;
  border-radius: 50px;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  box-shadow: 2px 0 8px rgba(40, 167, 69, 0.8);
}

/* Merah (Danger) */
.luxury-progress-danger {
  background: linear-gradient(
    0deg,
    #8b0000 0%,
    #dc3545 50%,
    #ff6b6b 100%
  ) !important;
  border-radius: 50px;
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  box-shadow: 2px 0 8px rgba(220, 53, 69, 0.8);
}
/* LUXURY PROGRESS BAR TEMA --------------------------------------------------- */
/* LUXURY PROGRESS BAR TEMA --------------------------------------------------- */

/* BUTTON --------------------------------------------------- */
/* BUTTON --------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 9999;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}

#backToTop1 {
  position: fixed;
  bottom: 40px;
  right: 50%;
  z-index: 9999;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
/* BUTTON --------------------------------------------------- */
/* BUTTON --------------------------------------------------- */

/* FOOTER ---------------------------------------------------------------------------------------------------------- */
/* FOOTER ---------------------------------------------------------------------------------------------------------- */
.site-footer {
  /* background-color: #26272b; */
  padding: 25px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: white;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: white;
}

.site-footer a:hover {
  color: red;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: white;
  text-decoration: none;
  border-bottom: red 1px solid;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: gold;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  /* background-color: #33353d; */
}

.copyright-text a {
  margin: 0;
  text-decoration: none;
  border-bottom: red 1px solid;
}

@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: white;
  background-color: goldenrod;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.facebook:hover {
  background-color: #3b5998;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.dribbble:hover {
  background-color: linear-gradient(
    0deg,
    #8b0000,
    #dc3545 57%,
    #ff6b6b
  ) !important;
}

@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}

/* FOOTER ---------------------------------------------------------------------------------------------------------- */
/* FOOTER ---------------------------------------------------------------------------------------------------------- */

/* MENU HORIZONTAL SCROLL MOBILE & DESKTOP ------------------------------------ */
/* MENU HORIZONTAL SCROLL MOBILE & DESKTOP ------------------------------------ */
.horizontal-scroll-menu {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-behavior: smooth;
  width: 100%;

  /* Tambahan untuk efek kursor Tarik (Drag) */
  cursor: grab;
  user-select: none; /* Mencegah teks ter-blok saat ditarik */
}

/* Trik 'Safe Centering': 
   Membuat menu persis di tengah jika ruang sisa banyak, 
   tapi tetap aman di-scroll ke kiri tanpa terpotong jika layar sempit */
.horizontal-scroll-menu::before,
.horizontal-scroll-menu::after {
  content: "";
  margin: auto;
}

/* Mengubah kursor saat tombol mouse ditekan (sedang ditarik) */
.horizontal-scroll-menu.active {
  cursor: grabbing;
}

/* Menyembunyikan scrollbar di Chrome, Safari, dan Opera */
.horizontal-scroll-menu::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-menu .menu-item {
  flex: 0 0 auto;
  min-width: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
  /* Mematikan sifat bawaan browser yang suka menarik/save gambar */
  -webkit-user-drag: none;
}

.horizontal-scroll-menu .menu-item:hover {
  transform: scale(1.1);
}

.horizontal-scroll-menu .menu-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
  pointer-events: none; /* Cegah gambar mengganggu klik javascript */
}

.horizontal-scroll-menu .menu-item .menu-text {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
/* MENU HORIZONTAL SCROLL MOBILE & DESKTOP ------------------------------------ */
/* MENU HORIZONTAL SCROLL MOBILE & DESKTOP ------------------------------------ */

/* HALAMAN DAFTAR FORM DAFTAR ------------------------------------ */
/* HALAMAN DAFTAR FORM DAFTAR ------------------------------------ */
.form-luxury-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.95),
    rgba(5, 5, 5, 0.98)
  );
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 15px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 0 15px rgba(255, 193, 7, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.form-luxury-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 193, 7, 0.05),
    transparent
  );
  transform: skewX(-20deg);
  animation: shineDaftar 6s infinite;
}

@keyframes shineDaftar {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.form-luxury-label {
  color: #ffc107;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.theme-input-group-daftar {
  border-radius: 50px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 7, 0.3);
  background-color: rgba(0, 0, 0, 0.7) !important;
  transition: all 0.3s ease;
}

.theme-input-group-daftar:focus-within {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.theme-input-group-daftar .input-group-text {
  background-color: transparent !important;
  border: none !important;
  color: #ffc107 !important;
}

.theme-input-group-daftar .form-control {
  background-color: transparent !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  padding-left: 10px;
}

.theme-input-group-daftar .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.btn-daftar-luxury {
  background: linear-gradient(180deg, #ffc107 0%, #d27303 100%);
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.btn-daftar-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
  color: #000;
}

.form-switch .form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}
/* HALAMAN DAFTAR FORM DAFTAR ------------------------------------ */
/* HALAMAN DAFTAR FORM DAFTAR ------------------------------------ */

/* HALAMAN LOGIN FORM LOGIN ------------------------------------ */
/* HALAMAN LOGIN FORM LOGIN ------------------------------------ */
.form-luxury-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 20, 0.95),
    rgba(5, 5, 5, 0.98)
  );
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 15px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 0 15px rgba(255, 193, 7, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.form-luxury-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 193, 7, 0.05),
    transparent
  );
  transform: skewX(-20deg);
  animation: shineLogin 6s infinite;
}

@keyframes shineLogin {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.form-luxury-label {
  color: #ffc107;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.theme-input-group-login {
  border-radius: 50px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 7, 0.3);
  background-color: rgba(0, 0, 0, 0.7) !important;
  transition: all 0.3s ease;
}

.theme-input-group-login:focus-within {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.theme-input-group-login .input-group-text {
  background-color: transparent !important;
  border: none !important;
  color: #ffc107 !important;
}

.theme-input-group-login .form-control {
  background-color: transparent !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  padding-left: 10px;
}

.theme-input-group-login .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.btn-login-luxury {
  background: linear-gradient(180deg, #ffc107 0%, #d27303 100%);
  color: #000;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.btn-login-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
  color: #000;
}

.form-switch .form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}
/* HALAMAN LOGIN FORM LOGIN ------------------------------------ */
/* HALAMAN LOGIN FORM LOGIN ------------------------------------ */

/* GAMES CARD HALAMAN SLOT ------------------------------------ */
/* GAMES CARD HALAMAN SLOT ------------------------------------ */
.cardSlot {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  /* background: #111; */
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cardSlot img.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cardSlot:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.25); /* Subtle Gold Glow */
  border-color: rgba(212, 175, 55, 0.5);
}

.cardSlot:hover img.game-img {
  transform: scale(1.1);
}

/* Layer Hover (Glassmorphism Effect) */
.cardSlot .layer {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  ); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.cardSlot:hover .layer {
  opacity: 1;
}

.cardSlot .layer .icon {
  width: 88px;
  height: 88px;
  /* background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  border-radius: 50%; */
  padding: 15px;
  /* box-shadow: 0 0 20px rgba(253, 160, 133, 0.6); */
  transform: translateY(20px) scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cardSlot:hover .layer .icon {
  transform: translateY(-10px) scale(1);
}

.cardSlot .layer small {
  position: absolute;
  bottom: 15px;
  left: 10px;
  right: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.cardSlot:hover .layer small {
  transform: translateY(0);
}

/* Badge Kategori */
.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(0deg, #0a5720, #28a745 57%, #50d050) !important;
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   SIDEBAR PROVIDER & SEARCH STYLES
   -------------------------------------------------------------------------- */
.provider-nav .nav-link {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.provider-nav .nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.provider-nav .nav-link.active {
  background: linear-gradient(90deg, #b8860b, #d4af37) !important;
  color: #000 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  border: none;
}

.provider-nav .nav-link.active small {
  color: #000 !important;
  font-weight: 700 !important;
}

.search-container {
  position: relative;
  margin-bottom: 25px;
}

.search-container input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 30px;
  outline: none;
  transition: all 0.3s;
  font-size: 15px;
}

.search-container input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.search-container i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #d4af37;
  font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cardSlot .layer .icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .cardSlot .layer small {
    font-size: 12px;
    bottom: 8px;
  }
  .game-badge {
    font-size: 9px;
    padding: 3px 6px;
    top: 6px;
    right: 6px;
  }
  .provider-nav .nav-link {
    padding: 8px 10px;
  }
  .search-container input {
    padding: 10px 15px 10px 40px;
    font-size: 14px;
  }
  .search-container i {
    left: 15px;
    font-size: 14px;
  }
}
/* GAMES CARD HALAMAN SLOT ------------------------------------ */
/* GAMES CARD HALAMAN SLOT ------------------------------------ */

/* HALAMAN TOGEL ------------------------------------------------------------------ */
/* HALAMAN TOGEL ------------------------------------------------------------------ */
.togel-section-title {
  color: #ffd766;
  font-weight: 900;
  letter-spacing: 5px;
  text-shadow:
    2px 2px 0 #2b1700,
    0 0 8px rgba(255, 215, 80, 0.95),
    0 0 18px rgba(255, 166, 0, 0.75);
}

.togel-card {
  position: relative;
  overflow: hidden;
  min-height: 155px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 215, 80, 0.16),
      transparent 38%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.62), rgba(43, 25, 0, 0.58));
  border: 1px solid rgba(255, 204, 64, 0.22);
  box-shadow:
    inset 0 0 22px rgba(255, 191, 0, 0.07),
    0 10px 22px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
}

.togel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 90, 0.65);
  box-shadow:
    inset 0 0 24px rgba(255, 191, 0, 0.14),
    0 0 18px rgba(255, 191, 0, 0.25),
    0 12px 26px rgba(0, 0, 0, 0.45);
}

.togel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 45%,
    transparent 60%
  );
  transform: translateX(-130%);
  transition: 0.6s ease;
  pointer-events: none;
}

.togel-card:hover::before {
  transform: translateX(130%);
}

.togel-img-wrap {
  width: 120px;
  min-width: 120px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.togel-img-wrap img {
  max-height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.35));
  transition: 0.25s ease;
}

.togel-card:hover .togel-img-wrap img {
  transform: scale(1.06);
}

.togel-name {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-shadow: 0 0 10px rgba(255, 215, 90, 0.45);
}

.togel-number {
  display: inline-block;
  color: #fff7d0;
  font-family: "Digital Numbers", sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 3px;
  text-shadow:
    0 0 7px #ffffff,
    0 0 14px #ffcc33,
    0 0 24px #ff006a;
}

.togel-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 215, 90, 0.24);
  box-shadow: inset 0 0 12px rgba(255, 191, 0, 0.06);
}

.togel-play-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #1a1000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1a8, #ffb300);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.45);
}

@media (max-width: 575.98px) {
  .togel-section-title {
    font-size: 18px;
    letter-spacing: 3px;
    text-align: center;
  }

  .togel-card {
    min-height: 130px;
    border-radius: 14px;
  }

  .togel-img-wrap {
    width: 92px;
    min-width: 92px;
    height: 125px;
  }

  .togel-img-wrap img {
    max-height: 96px;
  }

  .togel-number {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .togel-name {
    font-size: 16px;
  }

  .togel-date-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .togel-play-badge {
    font-size: 10px;
    padding: 3px 7px;
  }
}

/* HALAMAN TOGEL ------------------------------------------------------------------ */
/* HALAMAN TOGEL ------------------------------------------------------------------ */

/* HALAMAN BERITA ------------------------------------------------------------------ */
/* HALAMAN BERITA ------------------------------------------------------------------ */
.news-section {
  position: relative;
  padding: 18px 0 30px;
}
/* ==========================================================
JUDUL SECTION
========================================================== */
.news-section-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.news-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #f6c85f 0%,
    #ffe7a0 18%,
    rgba(246, 200, 95, 0.35) 55%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(246, 200, 95, 0.35);
}
.news-title-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 209, 96, 0.45);
  border-radius: 10px;
  color: #ffd260;
  background: linear-gradient(
    145deg,
    rgba(255, 213, 100, 0.18),
    rgba(255, 213, 100, 0.03)
  );
  box-shadow:
    inset 0 0 15px rgba(255, 209, 96, 0.08),
    0 3px 15px rgba(0, 0, 0, 0.35);
}
/* ==========================================================
MAIN CAROUSEL
========================================================== */
.news-main-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 208, 86, 0.2);
  background: #090909;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.news-main-carousel .carousel-item {
  position: relative;
  overflow: hidden;
}

.news-main-carousel .carousel-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 966 / 430;
  overflow: hidden;
  background: #111;
}

.news-main-carousel .carousel-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

.news-main-carousel:hover .carousel-item.active img {
  transform: scale(1.025);
}

.news-main-carousel .carousel-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.12) 58%,
    rgba(0, 0, 0, 0.86) 100%
  );
}

/* ==========================================================
CAPTION CAROUSEL
========================================================== */

.news-carousel-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 25px;
  z-index: 5;
  max-width: 700px;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 7, 7, 0.72);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.news-carousel-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #ffd369;
  font-size: 11px;
  font-weight: 600;
}

.news-carousel-title {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.news-carousel-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* ==========================================================
INDICATOR
========================================================== */

.news-main-carousel .carousel-indicators {
  margin-bottom: 8px;
  z-index: 10;
}

.news-main-carousel .carousel-indicators [data-bs-target] {
  width: 27px;
  height: 3px;
  margin: 0 3px;
  border: 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.news-main-carousel .carousel-indicators .active {
  width: 42px;
  background-color: #ffd15e;
}

/* ==========================================================
CAROUSEL CONTROL
========================================================== */

.news-main-carousel .carousel-control-prev,
.news-main-carousel .carousel-control-next {
  width: 52px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.news-main-carousel:hover .carousel-control-prev,
.news-main-carousel:hover .carousel-control-next {
  opacity: 1;
}

.news-main-carousel .carousel-control-prev-icon,
.news-main-carousel .carousel-control-next-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 50%;
  background-size: 16px;
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 211, 105, 0.35);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

/* ==========================================================
BERITA SAMPING
========================================================== */

.side-news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.side-news-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 966 / 430;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid rgba(255, 208, 86, 0.18);
  background: #0c0c0c;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.side-news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 93, 0.55);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 14px rgba(255, 199, 65, 0.08);
}

.side-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-news-card:hover img {
  transform: scale(1.04);
}

.side-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.side-news-info {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 8px;
  z-index: 3;
}

.side-news-title {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}

.side-news-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 4;
  padding: 4px 8px;
  border-radius: 20px;
  color: #251800;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #fff0a7, #d89d24);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
/* ==========================================================
PEMBATAS
========================================================== */
.news-divider {
  margin: 8px 0 24px;
  border: 0;
  height: 1px;
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 95, 0.28),
    transparent
  );
}
/* ==========================================================
GRID BERITA
========================================================== */
.news-grid-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.news-grid-title h5 {
  position: relative;
  margin: 0;
  padding-left: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.news-grid-title h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 4px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffe797, #c38616);
}
/* ==========================================================
CARD BERITA GRID
========================================================== */
.news-card {
  height: 100%;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(255, 212, 105, 0.13);
  background: linear-gradient(
    145deg,
    rgba(25, 22, 17, 0.95),
    rgba(8, 8, 8, 0.98)
  );
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 208, 84, 0.42);
  box-shadow:
    0 13px 28px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(255, 202, 69, 0.06);
}

.news-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 966 / 430;
  overflow: hidden;
  background: #111;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.045);
}

.news-card-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.news-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 20px;
  color: #2b1c00;
  font-size: 9px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffe9a3, #d79d25);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.news-card-body {
  padding: 14px 15px 16px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  color: #cca743;
  font-size: 10px;
  font-weight: 600;
}

.news-card-title {
  margin: 0 0 7px;
  color: #f8f8f8;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.news-card-description {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 35px;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e4bd55;
  font-size: 10px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}

.news-card:hover .news-read-more {
  gap: 8px;
  color: #ffe594;
}
/* ==========================================================
LINK
========================================================== */
.news-link {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit !important;
}
/* ==========================================================
LOAD MORE
========================================================== */
.load-more-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 13px;
  margin-bottom: 15px;
}

.btn-load-more-news {
  position: relative;
  min-width: 170px;
  padding: 10px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 99, 0.45);
  border-radius: 10px;
  color: #201400;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #ffe899 0%, #e2ac39 48%, #b9760b 100%);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-load-more-news:hover {
  color: #171000;
  transform: translateY(-2px);
  box-shadow:
    0 9px 25px rgba(0, 0, 0, 0.4),
    0 0 16px rgba(255, 202, 67, 0.12);
}

.btn-load-more-news:active {
  transform: translateY(0);
}

.btn-load-more-news:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
/* ==========================================================
EMPTY NEWS
========================================================== */

.empty-news {
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 206, 84, 0.18);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(
    145deg,
    rgba(25, 20, 13, 0.85),
    rgba(9, 9, 9, 0.9)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.empty-news i {
  display: block;
  margin-bottom: 10px;
  color: #d9ad42;
  font-size: 30px;
}
/* ==========================================================
RESPONSIVE TABLET
========================================================== */
@media (max-width: 1199.98px) {
  .news-carousel-title {
    font-size: 17px;
  }

  .news-carousel-caption {
    left: 15px;
    right: 15px;
    bottom: 20px;
  }

  .side-news-list {
    gap: 10px;
  }
}
/* ==========================================================
RESPONSIVE MOBILE
========================================================== */
@media (max-width: 767.98px) {
  .news-section {
    padding-top: 10px;
  }

  .news-section-title {
    margin-bottom: 15px;
    font-size: 17px;
  }

  .news-title-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .news-main-carousel {
    border-radius: 11px;
  }

  .news-main-carousel .carousel-image-box {
    aspect-ratio: 16 / 9;
  }

  .news-carousel-caption {
    left: 10px;
    right: 10px;
    bottom: 14px;
    padding: 9px 11px;
  }

  .news-carousel-title {
    margin-bottom: 0;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-carousel-desc {
    display: none;
  }

  .news-carousel-date {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .news-main-carousel .carousel-control-prev,
  .news-main-carousel .carousel-control-next {
    display: none;
  }

  .news-main-carousel .carousel-indicators [data-bs-target] {
    width: 18px;
    height: 2px;
  }

  .news-main-carousel .carousel-indicators .active {
    width: 28px;
  }

  .side-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 3px;
  }

  .side-news-card {
    border-radius: 8px;
  }

  .side-news-title {
    font-size: 9px;
  }

  .side-news-badge {
    top: 5px;
    left: 5px;
    padding: 2px 5px;
    font-size: 7px;
  }

  .side-news-info {
    left: 6px;
    right: 6px;
    bottom: 5px;
  }

  .news-card {
    border-radius: 10px;
  }

  .news-card-body {
    padding: 10px;
  }

  .news-card-title {
    font-size: 12px;
    min-height: 35px;
  }

  .news-card-description {
    font-size: 10px;
    min-height: 32px;
  }

  .news-date {
    font-size: 9px;
  }

  .news-read-more {
    font-size: 9px;
  }

  .btn-load-more-news {
    min-width: 150px;
    padding: 9px 18px;

    font-size: 11px;
  }
}
/* ==========================================================
MOBILE KECIL
========================================================== */
@media (max-width: 480px) {
  .news-section-title {
    font-size: 15px;
  }

  .news-card-description {
    display: none;
  }

  .news-card-title {
    margin-bottom: 9px;
    -webkit-line-clamp: 2;
  }
}
/* HALAMAN BERITA ------------------------------------------------------------------ */
/* HALAMAN BERITA ------------------------------------------------------------------ */

/* HALAMAN ARTIKEL ------------------------------------------------------------------ */
/* HALAMAN ARTIKEL ------------------------------------------------------------------ */
/* Tipografi & Warna Dasar untuk Artikel */
.text-gold {
  color: #ffd700 !important;
}

.bg-dark-glass {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Meta Data Artikel */
.artikel-meta-luxury {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: #ccc;
}

.artikel-meta-luxury a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.artikel-meta-luxury a:hover {
  color: #fff;
  text-decoration: underline;
}

.artikel-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Gambar Artikel Utama */
.artikel-image-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.artikel-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artikel-image-box:hover img {
  transform: scale(1.02);
}

/* Konten Artikel */
.artikel-content-wrapper {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid #ffd700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artikel-content {
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.artikel-content h1,
.artikel-content h2,
.artikel-content h3 {
  color: #ffd700;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 700;
}

.artikel-content a {
  color: #ffd700;
  text-decoration: none;
  border-bottom: 1px dashed #ffd700;
  transition: all 0.3s ease;
}

.artikel-content a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Tags */
.artikel-tags-luxury {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

.tag-item {
  color: #ffd700;
  margin-right: 5px;
  font-weight: 600;
}

/* Card Artikel Lainnya */
.judul-section-luxury {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 5px;
}

.card-other-news {
  background: linear-gradient(145deg, #1f1f1f, #121212);
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.card-other-news:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  border-color: #ffd700;
}

.card-other-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid #ffd700;
}

.card-other-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: calc(100% - (100% / (16 / 9)));
  /* Mengisi sisa tinggi card */
}

.card-other-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-other-desc {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
  /* Mendorong tombol ke bawah */
}

.btn-read-more {
  display: inline-block;
  color: #000;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-other-news:hover .btn-read-more {
  background: linear-gradient(45deg, #fff, #ffd700);
}
/* HALAMAN ARTIKEL ------------------------------------------------------------------ */
/* HALAMAN ARTIKEL ------------------------------------------------------------------ */

/* HALAMAN GAMES SLOT ------------------------------------------------------------------ */
/* HALAMAN GAMES SLOT ------------------------------------------------------------------ */
/* Tipografi & Judul */
.judul-section-luxury {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 2px solid #ffd700;
  /* Garis aksen emas */
  padding-bottom: 5px;
}

/* Search Bar Elegant */
.search-container {
  position: relative;
}

.search-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700;
}

.search-input-luxury {
  width: 100%;
  padding: 12px 15px 12px 42px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-input-luxury::placeholder {
  color: #888;
}

.search-input-luxury:focus {
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  outline: none;
  background-color: #222;
}

/* Card Game Slot */
.cardSlot {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(to bottom, #2a2a2a, #111);
  border: 1px solid #333;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cardSlot:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

/* Area Gambar & Efek Hover Kaca */
.img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Membuat gambar presisi kotak sempurna */
  overflow: hidden;
}

.img-container img.game-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mencegah gambar gepeng */
}

.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ffd700;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.cardSlot:hover .layer {
  opacity: 1;
}

.layer img.icon {
  width: 45px;
  transition: transform 0.3s ease;
}

.cardSlot:hover .layer img.icon {
  transform: scale(1.1);
}

/* Area Nama Game (Bawah) */
.game-name {
  background: #0d0d0d;
  color: #fff;
  padding: 10px 5px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid #333;
}
/* HALAMAN GAMES SLOT ------------------------------------------------------------------ */
/* HALAMAN GAMES SLOT ------------------------------------------------------------------ */

/* SALDO MEMBER DESKTOP -------------------------------------------------------------------------------------------------------------------------------------- */
/* SALDO MEMBER DESKTOP -------------------------------------------------------------------------------------------------------------------------------------- */
#saldoDesktop {
  min-width: 170px;
}

.saldo-member-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 10px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 230, 130, 0.18), rgba(120, 20, 20, 0.08)),
    linear-gradient(90deg, #0c0c0c, #18110a 45%, #0b0b0b);
  border: 1px solid rgba(255, 214, 104, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -8px 18px rgba(0, 0, 0, 0.45),
    0 0 10px rgba(255, 186, 50, 0.25),
    0 0 18px rgba(180, 0, 0, 0.18);
  overflow: hidden;
}

.saldo-member-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 15%,
    rgba(255, 255, 255, 0.16) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: saldoShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.saldo-member-box::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, rgba(255, 215, 90, 0.65), transparent); */
}

.saldo-member-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff3b0;
  background: radial-gradient(
    circle at 35% 25%,
    #fff7b8,
    #f2b735 35%,
    #9b4b00 72%,
    #3b1300
  );
  border: 1px solid rgba(255, 230, 130, 0.7);
  box-shadow:
    inset 0 1px 3px rgba(255, 255, 255, 0.45),
    0 0 10px rgba(255, 196, 63, 0.38);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.saldo-member-content {
  position: relative;
  z-index: 1;
  line-height: 1.05;
  text-align: left;
}

.saldo-member-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #f5c55c;
  text-shadow: 0 1px 2px #000;
  margin-bottom: 8px;
}

.saldo-member-value {
  min-width: 95px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  text-shadow:
    0 1px 2px #000,
    0 0 8px rgba(255, 211, 89, 0.45);
}

.saldo-member-value i {
  color: #ffd65c;
  font-size: 12px;
}

@keyframes saldoShine {
  0% {
    transform: translateX(-120%);
  }

  45% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

/* SALDO MEMBER DESKTOP -------------------------------------------------------------------------------------------------------------------------------------- */
/* SALDO MEMBER DESKTOP -------------------------------------------------------------------------------------------------------------------------------------- */

/* SALDO MEMBER MOBILE -------------------------------------------------------------------------------------------------------------------------------------- */
/* SALDO MEMBER MOBILE -------------------------------------------------------------------------------------------------------------------------------------- */
#navbarMobile {
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

#navbarMobileb {
  width: 100%;
  overflow: hidden;
}

.min-w-0 {
  min-width: 0 !important;
}

.navbar-mobile-deposit-btn {
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
}

.saldo-mobile-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;

  padding: 6px 10px;
  border-radius: 999px;
  overflow: hidden;

  background: linear-gradient(0deg, #011f5b, #0056b3 57%, #0084e9) !important;
}

.saldo-mobile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  animation: saldoMobileShine 3.5s infinite;
}

.saldo-mobile-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 1px;
}

.saldo-mobile-icon {
  position: relative;
  z-index: 2;

  width: 32px;
  height: 32px;
  flex: 0 0 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #5c2b00;
  background: radial-gradient(
    circle at 35% 25%,
    #fff8c4 0%,
    #ffd45c 35%,
    #b66b00 70%,
    #5c2500 100%
  );
  font-size: 15px;
}

.saldo-mobile-info {
  position: relative;
  z-index: 2;

  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;

  text-align: left;
  line-height: 1.1;
  overflow: hidden;
}

.saldo-mobile-title {
  max-width: 100%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #ffe89a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85);
  margin-bottom: 2px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saldo-mobile-nominal {
  max-width: 100%;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  text-align: left;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 0 8px rgba(255, 255, 255, 0.35);
}

.saldo-mobile-nominal i {
  font-size: 12px;
  color: #ffe89a;
}

@keyframes saldoMobileShine {
  0% {
    left: -80%;
  }

  45% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

@media (max-width: 380px) {
  .navbar-mobile-deposit-btn {
    font-size: 12px;
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
  }

  .saldo-mobile-card {
    min-height: 42px;
    padding: 5px 8px;
    gap: 6px;
  }

  .saldo-mobile-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 13px;
  }

  .saldo-mobile-title {
    font-size: 10px;
  }

  .saldo-mobile-nominal {
    font-size: 11px;
  }
}

/* SALDO MEMBER MOBILE -------------------------------------------------------------------------------------------------------------------------------------- */
/* SALDO MEMBER MOBILE -------------------------------------------------------------------------------------------------------------------------------------- */

/* MEMO ------------------------------------------------------------------ */
/* MEMO ------------------------------------------------------------------ */
#ruangmemo {
  position: relative;
}

.memo-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 8px;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow:
    2px 2px 0 #7b1d12,
    0 0 10px rgba(255, 193, 7, 0.55);
}

.memo-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #ff9800, #ffd54f, transparent);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
}

.memo-card {
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(36, 34, 30, 0.97),
    rgba(15, 15, 15, 0.98)
  );
  border: 1px solid rgba(255, 193, 7, 0.28);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.memo-card:hover {
  transform: translateY(-6px);
  border-color: #ffb300;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(255, 179, 0, 0.18);
}

.memo-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #111;
}

.memo-image {
  width: 100%;
  height: 175px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.memo-card:hover .memo-image {
  transform: scale(1.05);
}

.memo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.memo-card:hover .memo-overlay {
  background: rgba(0, 0, 0, 0.45);
  opacity: 1;
}

.memo-view {
  padding: 7px 15px;
  background: linear-gradient(180deg, #ffd54f, #ff9800);
  border: 1px solid #ffe082;
  border-radius: 20px;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.memo-card-body {
  padding: 15px 16px 16px;
}

.memo-title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.memo-divider {
  height: 1px;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 193, 7, 0.7),
    rgba(255, 193, 7, 0.08)
  );
}

.memo-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #bdbdbd;
  font-size: 12px;
}

.memo-date i {
  color: #ffc107;
}

.memo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 193, 7, 0.65);
  border-radius: 20px;
  color: #ffc107;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.memo-empty {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(220, 53, 69, 0.6);
  border-radius: 10px;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .memo-section-title {
    font-size: 20px;
  }
  .memo-image {
    height: 160px;
  }
  .memo-card-body {
    padding: 12px;
  }
  .memo-title {
    font-size: 14px;
  }
}
/* MEMO ------------------------------------------------------------------ */
/* MEMO ------------------------------------------------------------------ */

/* TABLE HISTORY ------------------------------------------------------------------ */
/* TABLE HISTORY ------------------------------------------------------------------ */
/* Container Utama */
.history-wrapper {
  width: 100%;
  margin-top: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

/* Tampilan Desktop (Flexbox Table) */
.history-header {
  display: none;
}

.history-card {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 199, 0, 0.4);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.history-card:hover {
  border-color: #ffc700;
  transform: translateY(-2px);
  background: rgba(30, 30, 30, 0.95);
}

.history-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.history-item:last-child {
  border-bottom: none;
}

.history-item::before {
  content: attr(data-label);
  color: #ffc700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.history-value {
  text-align: right;
  font-weight: 500;
}

/* Pewarnaan Status */
.text-win {
  color: #00e676 !important;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 230, 118, 0.3);
}

.text-lose {
  color: #ff3d00 !important;
  font-weight: bold;
}

.text-draw {
  color: #b0bec5 !important;
  font-weight: bold;
}

.text-draw {
  color: #b0bec5 !important;
  font-weight: bold;
}

/* --- FOOTER TOTAL KESELURUHAN --- */
.history-footer {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid #ffc700;
  border-radius: 8px;
  margin-top: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(255, 199, 0, 0.15);
}

.history-footer .history-item {
  font-weight: bold;
  font-size: 14px;
}

.footer-label {
  color: #ffc700;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

/* --- PAGINATION --- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.btn-paginate {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 199, 0, 0.4);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-paginate:hover {
  background: rgba(255, 199, 0, 0.2);
  border-color: #ffc700;
}

.btn-paginate.active {
  background: linear-gradient(0deg, #ffc700, #ffa801);
  color: #000;
  border-color: #ffc700;
  cursor: default;
}

.btn-paginate:disabled {
  background: rgba(50, 50, 50, 0.5);
  color: #888;
  border-color: transparent;
  cursor: not-allowed;
}

/* Visibility Control */
.hide-on-desktop {
  display: flex;
}

.hide-on-mobile {
  display: none;
}

/* --- DESKTOP VIEW --- */
@media (min-width: 768px) {
  .history-wrapper {
    border: 1px solid rgba(255, 199, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
  }

  .history-header {
    display: flex;
    background: linear-gradient(0deg, #ffc700, #ffa801, #d27303);
    color: #000;
    font-weight: 700;
    padding: 12px 15px;
    text-transform: uppercase;
    font-size: 13px;
  }

  .history-body {
    background: rgba(10, 10, 10, 0.7);
  }

  .history-card {
    display: flex;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 199, 0, 0.2);
    padding: 12px 15px;
    background: transparent;
    box-shadow: none;
  }

  .history-card:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
  }

  .history-card:hover {
    background: rgba(255, 199, 0, 0.1);
    transform: none;
  }

  .history-item {
    flex: 1;
    border-bottom: none;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .history-item::before {
    display: none;
  }

  .history-value {
    text-align: center;
    width: 100%;
  }

  .col-user {
    flex: 1.2;
  }

  .col-date {
    flex: 1.5;
  }

  .history-footer {
    display: flex;
    border: none;
    border-top: 2px solid #ffc700;
    border-radius: 0;
    margin-top: 0;
    padding: 12px 15px;
    background: rgba(10, 10, 10, 0.9);
  }

  .hide-on-desktop {
    display: none !important;
  }

  .hide-on-mobile {
    display: flex;
  }

  .footer-label-container {
    flex: 4.7;
    justify-content: flex-end;
    padding-right: 20px;
    align-items: center;
    border-bottom: none;
  }
}

/* TABLE HISTORY ------------------------------------------------------------------ */
/* TABLE HISTORY ------------------------------------------------------------------ */

/* INPUT CARI TOGLE ------------------------------------------------------------------------------------------------ */
/* INPUT CARI TOGLE ------------------------------------------------------------------------------------------------ */
#inputCariTogel {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

/* Desain Ikon Kaca Pembesar di dalam Input */
#inputCariTogel i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d; /* Warna ikon abu-abu */
  font-size: 16px;
  pointer-events: none; /* Mencegah ikon menghalangi kursor saat diklik */
}

/* Desain Kolom Teks Input */
#inputCariTogel input {
  width: 100%;
  padding: 12px 15px 12px 40px; /* Padding kiri dilebarkan (40px) agar teks tidak menabrak ikon */
  border: none;
  border-radius: 6px; /* Sudut sedikit membulat agar halus */
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); /* Memberikan bayangan halus untuk efek kedalaman */
  transition: all 0.3s ease-in-out;
}

/* Efek saat Input sedang diklik/fokus */
#inputCariTogel input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Efek glow putih/kuning menyesuaikan tema gelap */
}

/* Desain Teks Placeholder */
#inputCariTogel input::placeholder {
  color: #999999;
}
/* INPUT CARI TOGLE ------------------------------------------------------------------------------------------------ */
/* INPUT CARI TOGLE ------------------------------------------------------------------------------------------------ */

/* INPUT BUKU MIMPI ------------------------------------------------------------------------------------------------ */
/* INPUT BUKU MIMPI ------------------------------------------------------------------------------------------------ */
.input-with-icon input[type="text"] {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px;
  margin: 5px 0;
}

::placeholder {
  color: rgba(255, 255, 255, 0.479);
}

.input-with-icon {
  position: relative;
}

.input-with-icon input[type="text"] {
  padding-left: 30px;
}

.input-with-icon i {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
/* INPUT BUKU MIMPI ------------------------------------------------------------------------------------------------ */
/* INPUT BUKU MIMPI ------------------------------------------------------------------------------------------------ */
