/* ======================================================
   SLOT FLOAT WRAP
   ====================================================== */
.slot-float-wrap {
  position: fixed;
  right: 5px;
  top: 72%;
  transform: translateY(-50%);

}

/* HANDLE KECIL */
.slot-handle {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #3a2c1a, #1e1e1e);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* BOX MENU */
.slot-float-box {
  width: 43px;
  background: linear-gradient(180deg, #2a2a2a, #141414);
  border-radius: 4px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.slot-item {
  width: 100%;
  padding: 8px 4px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.slot-item img {
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
}

.divider {
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.slot-collapse {
  padding: 6px 0;
  font-size: 12px;
  color: #aaa;
}

/* HEADSET */
.slot-support {
  margin-top: 8px;
  width: 43px;
  height: 46px;
  background: #1b1b1b;
  border-radius: 12px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.6);
}

/* CLOSED STATE */
.slot-float-wrap.closed .slot-float-box,
.slot-float-wrap.closed .slot-support {
  display: none;
}

.slot-float-wrap.closed .slot-handle {
  display: flex;
}

/* ======================================================
   MAXWIN SECTION
   ====================================================== */
.maxwin-section {
  margin-top: 10px;
}
.maxwin-user {
  display: flex;
  align-items: center;
  gap: 6px;
}
.maxwin-user img.avatar {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  object-fit: cover;
}

.maxwin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.maxwin-header h5 {
  color: #fff;
}

.maxwin-header .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
}

.maxwin-header a{
  color: #999;
font-size: 12px;
text-decoration: none;
}
.maxwin-list {
  overflow: hidden;
  position: relative;
}

.maxwin-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.maxwin-card {
  width: 80px;
  min-width: 80px;
  padding: 2px;
  background: #151515;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
/*  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45); */
}

.maxwin-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  max-height: 120px;
}

.maxwin-amount {
  color: #d4af37;
  font-weight: 600;
  font-size: 12px;
  margin-top: 3px;
  line-height: 1.2;
}

.maxwin-user {
  font-size: 10px;
  color: #aaa;
}

/* ======================================================
   PROVIDER SECTION
   ====================================================== */
.provider-section {
  margin-top: 16px;
  
}

.provider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.provider-header h5 {
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.provider-header .badge {
  background: #333;
  color: #aaa;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
}

.provider-header a {
  color: #999;
  font-size: 12px;
  text-decoration: none;
}

.provider-grid {
  display: grid;
  grid-auto-flow: column;              /* isi ke samping */
  grid-template-rows: repeat(2, 42px); /* 2 baris */
  grid-auto-columns: calc((100% - 20px) / 3); /* 3 kolom per layar */
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.provider-grid::-webkit-scrollbar {
  display: none;
}
.provider-card {
  scroll-snap-align: start;
}

.provider-card {
  background: #1f1f1f;
  border-radius: 12px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-card img {
  max-width: 90%;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(0.9);
}

.download-icon i {
  font-size: 36px;
  color: #3ddc84;
}

.download-button a {
  color: #999;
  font-size: 12px;
  text-decoration: none;
}


/* ======================================================
   FOOTER
   ====================================================== */
.ft-wrap {
  background: #151515;
  padding: 30px 20px 20px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}

/* LOGO */
.ft-logo img {
  height: 48px;
  margin-bottom: 16px;
}

/* DESKRIPSI */
.ft-desc {
  font-size: 10px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

/* TITLE */
.ft-title {
  color: #fff;
  font-size: 15px;
  margin: 22px 0 10px;
  font-weight: 600;
}

/* LINK LIST */
.ft-links {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.ft-links span {
  cursor: pointer;
}

/* EMAIL */
.ft-email {
  display: inline-block;
  margin-bottom: 18px;
  color: #f5c16c;
  text-decoration: none;
}


/* SOSIAL */
.ft-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ft-social a {
  width: 40px;
  height: 40px;
  background: #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.ft-social a:hover {
  background: #d4af37;
  color: #000;
}

/* INFO BOTTOM */
.ft-info {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  margin-bottom: 14px;
}

.ft-age {
  border: 1px solid #666;
  padding: 2px 6px;
  border-radius: 4px;
}

/* COPYRIGHT */
.ft-copy {
  font-size: 11px;
  color: #666;
}

/* ======================================================
   POPULAR GAME SECTION
   ====================================================== */
.popular-section {
  margin-top: 18px;
  margin-bottom: 10px;
  
}

.popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px 10px;
}

.popular-header h5 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.popular-header .badge {
  background: #151515;
  color: #ffffff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 6px;
  margin-left: 4px;
}

.popular-header a {
  color: #999999;
font-size: 12px;
text-decoration: none;
}

/* ======================================================
   POPULAR HORIZONTAL SCROLL
   ====================================================== */
.popular-scroll {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 100px;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
}

/* Sembunyikan scrollbar */
.popular-scroll::-webkit-scrollbar {
  display: none;
}

.popular-scroll {
  scrollbar-width: none;
}

/* ================= CARD ================= */
.popular-card {
  flex: 0 0 calc(100% / 3.2);
  background: #151515;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
/*  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45); */
}

/* ================= IMAGE ================= */
.popular-thumb img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* ================= TEXT ================= */
.popular-title {
  padding: 6px 8px 1px;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  opacity: 0.7;
}

.popular-provider {
  padding: 0 8px 8px;
  font-size: 10px;
  color: #fff;
  opacity: 0.7;
}

/* ======================================================
   JACKPOT TERBESAR SECTION
   ====================================================== */
.jackpot-section {
  margin-top: 18px;
}

.jackpot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.jackpot-header h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}


.jackpot-header a {
  color: #999;
  font-size: 12px;
  text-decoration: none;
}

/* ===== SCROLL AREA ===== */
.jackpot-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.jackpot-scroll::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.jackpot-card {
  width: 120px;
  min-width: 120px;
  background: #151515;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
/*    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45); */
}

/* ===== IMAGE ===== */
.jackpot-thumb {
  position: relative;
}

.jackpot-thumb img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* ===== RANK ===== */
.rank-badge {
  position: absolute;
  top: 6px;
  right: 75px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== PROVIDER ===== */
.jackpot-provider {
  margin-top: 6px;
  font-size: 11px;
  color: #aaa;
  text-align: center;
}

/* ===== AMOUNT ===== */
.jackpot-amount {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #f2c97d;
  text-align: center;
}

/* ===== USER ===== */
.jackpot-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: #ddd;
}

.jackpot-user img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* ===== TIME ===== */
.jackpot-time {
  margin-top: 4px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

/* BUTTON SM SEMUA */

  .btn-semua {
  background: #1f1f1f;          /* warna tombol */
  color: #bdbdbd;               /* warna teks */
  border: none;
  border-radius: 4px;          /* sudut membulat */
  padding: 5px 8px;
  min-width: 10px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.btn-semua .arrow {
  font-size: 8px;
  opacity: 0.8;
}

.btn-semua:hover {
  background: #353535;
}

.btn-semua:active {
  transform: scale(0.97);
}

.ft-highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:20px 0;
}
.hl-item{
  display:flex;
  align-items:center;
  gap:10px;
  background:#1a1a1a;
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
}
.hl-item i{
  color:#F5C26BEB;
}


.ft-stats{
  display:flex;
  justify-content:space-between;
  margin:20px 0;
  text-align:center;
}
.ft-stats strong{
  color:#F5C26BED;
  font-size:16px;
  display:block;
}
.ft-stats span{
  font-size:12px;
  color:#aaa;
}

.ft-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #f5c26b, transparent);
  margin: 24px 0;
}

.ft-links a{
  display:block;
  font-size:13px;
  color:#aaa;
  margin-bottom:6px;
}
.ft-links a:hover{
  color:#d4af37;
}

.ft-responsible {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 16px 0;
}

.agreement-modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  z-index: 999999;
  display: flex;
}

.agreement-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #eaeaea;
  font-family: 'Segoe UI', sans-serif;
}

.agreement-header {
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, #111, #000);
  border-bottom: 1px solid rgba(212,175,55,.4);
}

.agreement-logo {
  height: 38px;
  margin-bottom: 6px;
}

.agreement-header h2 {
  color: #d4af37;
  letter-spacing: 1px;
}

.agreement-header p {
  font-size: 13px;
  opacity: .8;
}

.agreement-content {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.agreement-content h3 {
  color: #d4af37;
  margin-top: 18px;
}

.agreement-content ul {
  padding-left: 18px;
}

.agreement-content li {
  margin-bottom: 8px;
}

.intro, .closing {
  opacity: .95;
}

.thanks {
  margin-top: 18px;
  text-align: center;
  font-weight: bold;
  color: #ffcc66;
}

.agreement-footer {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #0b0b0b;
  border-top: 1px solid rgba(212,175,55,.4);
}

.agreement-footer button {
  flex: 1;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
}

.btn-accept {
  background: linear-gradient(135deg,#d4af37,#ffcc66);
  color: #000;
}

.btn-decline {
  background: #2a2a2a;
  color: #aaa;
}

.chat-badge{
  position:absolute;
  top:-4px;
  right:-4px;
  background:#e74c3c;
  color:#fff;
  font-size:10px;
  padding:3px 6px;
  border-radius:10px;
  line-height:1;
  min-width:14px;
  text-align:center;
  font-weight:bold;
}
.slot-support{
  position:relative;
}

.tawk-context {
  position: absolute;
  bottom: 0px;
  right: 50px;
  background: rgba(20, 20, 20, .95);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  opacity: 0;
  transform: translateY(10px) scale(.95);
  pointer-events: none;
  transition: .35s ease;
  z-index: 999999;
}

.tawk-context.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

  /* ======================================================
   LINK ALTERNATIF SECTION
   ====================================================== */
  .altlink-section {
    margin-top: 14px;
  }
  
  .altlink-card {
    display: flex;
    gap: 12px;
    background: linear-gradient(180deg, #1a1a1a, #1a1a1a);
    border-radius: 5px;
    padding: 14px;
    /*border: 1px solid rgba(212, 175, 55, .35);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, .6);
  }
  
  /* LEFT */
  .altlink-left {
    flex: 1;
    color: #fff;
  }
  
  .altlink-left h4 {
    font-size: 15px;
    margin-bottom: 2px;
  }
  
  .altlink-left .sub {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .altlink-main {
    background: linear-gradient(135deg, #d4af37, #f5c26b);
    color: #000;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .altlink-label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
    display: block;
  }
  
  .altlink-select {
    display: flex;
    gap: 6px;
  }
  
  .altlink-select select {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
  }
  
  .altlink-select button {
    background: linear-gradient(135deg, #d4af37, #f5c26b);
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
  }
  
  .altlink-note {
    font-size: 10px;
    color: #777;
    margin-top: 6px;
  }
  
  /* RIGHT */
  .altlink-right {
    width: 110px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .qr-box {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .qr-box img {
    width: 100%;
    border-radius: 6px;
  }
  
  .apk-btn {
    background: #111;
    color: #fff;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, .3);
  } 