:root {
  --bg-dark: #0a0a0c;
  --bg-card: #121217;
  --bg-input: #18181f;
  --accent-gold: #ffb703;
  --accent-gold-gradient: linear-gradient(180deg, #ffe066 0%, #d4af37 50%, #aa7c11 100%);
  --accent-purple: #8a2be2;
  --text-main: #ffffff;
  --text-muted: #a0a0ab;
  --border-color: #22222e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name,
.section-title,
.footer-title,
.sidebar-title,
.game-title,
.game-provider,
.promo-overlay h3,
.promo-overlay p,
.section-kicker,
.view-more-link,
.footer-link-list a,
.footer-text,
.footer-chip,
.footer-badge,
.service-link,
.sidebar-note,
.game-action,
.promo-action,
.menu-link,
.btn-header,
.lang-btn,
.wallet-btn,
.wallet-balance,
.dashboard-user-chip,
.promo-tag,
.rtp-value,
.rtp-label,
.auth-modal .modal-title,
.auth-link,
.auth-submit,
.btn-small-outline,
.info-card p,
.wl-pill,
.footer-bottom {
    font-family: "digital_sans_ef_medium", Arial, sans-serif !important;
    font-weight: 500 !important;
}

.container {
  width: 100%;
  max-width: 700px;
  padding: 0 15px;
  margin:0 auto;
}

/* HEADER */
header {
  background-color: #000000;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  display: flex;
  justify-content: center;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Mengumpulkan elemen ke kiri */
  gap: 30px; /* Atur jarak antar elemen di sini (misal: 20px - 40px) */
}
header, .site-header, .header-container {
    padding-top: 0px !important; /* Kurangi jarak atas (misal: 5px - 10px) */
    padding-bottom: 0px !important; /* Kurangi jarak bawah (misal: 5px - 10px) */
    min-height: 0px !important; /* Agar tinggi menyesuaikan isi */
    /*height: 90px !important;*/
    height: auto !important;
}
.nav-container {
    /*display: flex;*/
    display: grid;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    width: 100%;
    /*max-width: 1200px;*/
    max-width: 700px;
    grid-template-columns: 1fr;
    gap: 7px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0 !important grid-column: 1;
    grid-row: 1;
    justify-content: center;
}

/* Mengatur tinggi logo menjadi 55px agar besar dan jelas */
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-logo img {
  height: 18px;
  width: auto;
}
.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    justify-content: space-around;
    gap: 4px;
}
.nav-menu {
  margin-left: 0 !important;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

.nav-links a i {
  font-size: 25px;
  color: var(--accent-gold);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-gold);
}

.login-form {
    /*display: flex;*/
    display:grid;
    gap: 8px;
    align-items: center;
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.login-form input {
  background: #000;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 6px 10px;
  color: #fff;
  font-size: 12px;
  width: 100%;
}

.btn {
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-login {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-register {
  background: var(--accent-gold-gradient);
  color: #000;
}

/* BANNER HERO */
.hero-swiper {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #2d1847;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  line-height: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.hero-title-sub {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-title-main {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 183, 3, 0.3);
}

.hero-title-main span {
  color: #a855f7;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-subtitle span {
  color: #c084fc;
}

.btn-hero {
  background: var(--accent-gold-gradient);
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-hero:hover {
  transform: scale(1.05);
}

/* FEATURE BAR */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  font-size: 22px;
  color: var(--accent-gold);
}

.feature-text h4 {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.feature-text p {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* SECTION TITLE & SWIPER NAV */
.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px 0 15px 0;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.swiper-nav-buttons {
  display: flex;
  gap: 8px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 12px;
  user-select: none;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--accent-gold);
  color: #000;
}

/* SWIPER GAME CARDS FIX */
.games-swiper {
  width: 100%;
  padding-bottom: 10px;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

.game-card {
      position: relative;
      background-color: #0b0e14;
      border: 1px solid #1e2530;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .game-card:hover {
      transform: translateY(-4px);
      border-color: #ffd700;
    }

    /* Badge HOT Presisi di Pojok Kiri Atas */
   img.badge-hot {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  
  /* Batasi ukuran gambar GIF agar kecil & pas di pojok */
  width: 35px !important;       /* Sesuaikan lebar (contoh: 30px - 35px) */
  height: auto !important;      /* Rasio tinggi menyesuaikan otomatis */
  
  z-index: 10 !important;
  display: block !important;
  pointer-events: none;         /* Agar GIF tidak mengganggu klik mouse */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.6)); /* Bayangan tipis */
}
    /* Pembungkus Gambar Persegi Panjang (308 x 218) */
    .game-img-wrapper {
      width: 100%;
      aspect-ratio: 308 / 218 !important; /* Disesuaikan ke 308x218 px */
      overflow: hidden;
      background-color: #161b22;
    }

    .game-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Info Teks Game & Provider */
    .game-info {
      padding: 8px 4px;
    }

    .game-title {
      color: #ffffff;
      font-size: 11px;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }

    .game-provider {
      color: #8b949e;
      font-size: 9px;
      text-transform: uppercase;
      font-weight: 600;
    }

/* BOTTOM ROW: JACKPOT & WINNERS */
.bottom-row {
    display: grid;
    /*grid-template-columns: 1fr 2fr;*/
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.jackpot-box {
  background: linear-gradient(180deg, #181204 0%, #0a0a0c 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jackpot-title {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.jackpot-amount {
  color: #22c55e;
  font-size: 20px;
  font-weight: 900;
  margin-top: 8px;
  font-family: monospace;
}

.winners-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
}

.winners-title {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.winners-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.winner-card {
  background: #181822;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.winner-thumb {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.winner-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.winner-user {
  font-size: 10px;
  color: var(--text-muted);
}

.winner-game {
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-amount {
  font-size: 11px;
  color: var(--accent-gold);
  font-weight: bold;
}

/* Responsif Sederhana */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-row { grid-template-columns: 1fr; }
  .winners-list { grid-template-columns: repeat(2, 1fr); }
  .hero-content { max-width: 100%; }
}
/* =========================================================
   PERBAIKAN HEADER RESPONSIVE / MOBILE
   Mencegah form login melebar keluar viewport.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.logo-link,
.nav-links,
.login-form {
  min-width: 0;
}

@media (max-width: 900px) {
  header,
  .site-header,
  .header-container {
    height: auto !important;
    min-height: 0 !important;
  }

  .nav-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 12px;
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .logo-img {
    width: 145px;
    max-width: 100%;
    height: auto;
    max-height: 62px;
  }

  .nav-links {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    gap: clamp(10px, 3vw, 22px);
  }

  .nav-links a {
    font-size: 9px;
    gap: 2px;
  }

  .nav-links a i {
    font-size: 20px;
  }

  .login-form {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: stretch;
  }

  .login-form input {
    width: 100%;
    min-width: 0;
    height: 34px;
  }

  .login-form .btn {
    min-width: 70px;
    height: 34px;
    padding: 6px 12px;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .nav-container {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
  }

  .logo-img {
    width: min(210px, 70vw);
    max-height: 58px;
  }

  .nav-links {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    justify-content: space-around;
    gap: 4px;
  }

  .nav-links li {
    flex: 1 1 0;
  }

  .nav-links a {
    width: 100%;
  }

  .login-form {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .login-form input,
  .login-form .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .login-form {
    grid-template-columns: 1fr;
  }
}

/* ===== LAS VEGAS PROGRESSIVE JACKPOT V2 ===== */
.casino-jackpot{
  position:relative; isolation:isolate; overflow:hidden;
  min-height:138px; padding:11px !important;
  border:0 !important; border-radius:28px !important;
  background:linear-gradient(145deg,#fff3a5 0%,#b56b08 13%,#4b2100 25%,#f7c74b 39%,#6a3303 54%,#ffd96a 72%,#7a3b00 88%,#ffe997 100%) !important;
  box-shadow:0 12px 28px rgba(0,0,0,.65),0 0 22px rgba(255,184,28,.35),inset 0 2px 2px rgba(255,255,255,.9),inset 0 -5px 10px rgba(71,26,0,.8) !important;
}
.casino-jackpot::before{
  content:""; position:absolute; inset:5px; border-radius:23px;
  background:repeating-conic-gradient(from 0deg,#fff8c9 0 2.2deg,#ffb000 2.2deg 4.4deg,#7a2500 4.4deg 6.6deg);
  filter:drop-shadow(0 0 5px #ffb000); animation:jackpotChase 2.8s linear infinite; z-index:-2;
}
.casino-jackpot::after{
  content:""; position:absolute; inset:10px; border-radius:19px;
  background:radial-gradient(circle at 25% 15%,rgba(255,220,112,.22),transparent 24%),linear-gradient(135deg,#140a0c,#030305 45%,#1a0903);
  border:2px solid #7d4a12; box-shadow:inset 0 0 30px #000,inset 0 0 10px rgba(255,179,0,.45); z-index:-1;
}
.jackpot-bulbs{position:absolute;inset:7px;border-radius:21px;box-shadow:inset 0 0 0 2px rgba(255,241,171,.35);pointer-events:none}
.jackpot-crown{position:absolute;top:8px;left:50%;transform:translateX(-50%);z-index:3;color:#fff3a3;font-size:18px;text-shadow:0 0 5px #fff,0 0 12px #ffb000,0 2px 2px #4b1800}
.jackpot-inner{position:relative;height:100%;min-height:116px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:15px 10px 8px}
.jackpot-title{margin:0 0 6px !important;line-height:.95;text-align:center;text-transform:uppercase;text-shadow:0 2px 0 #4b1d00,0 0 8px rgba(255,192,45,.75)}
.jackpot-title span{display:block;color:#fff2ad;font-size:10px;font-weight:800;letter-spacing:3.2px}
.jackpot-title strong{display:block;color:#ffc83d;font-family:Georgia,serif;font-size:23px;letter-spacing:1.5px}
.jackpot-screen{width:100%;display:flex;align-items:center;justify-content:center;gap:7px;padding:10px 9px;border-radius:12px;background:linear-gradient(180deg,#020202,#111 52%,#020202);border:1px solid #c98516;box-shadow:inset 0 0 14px #000,0 0 10px rgba(255,174,0,.3)}
.jackpot-screen .currency{font-size:10px;font-weight:900;color:#ffe99b;letter-spacing:1px}
.casino-jackpot .jackpot-amount{margin:0 !important;color:#fff7c6 !important;font-family:"Courier New",monospace !important;font-size:clamp(15px,1.55vw,22px) !important;font-weight:900 !important;white-space:nowrap;letter-spacing:.4px;text-shadow:0 0 5px #fff,0 0 12px #ffb000,0 2px 0 #8a3900;font-variant-numeric:tabular-nums}
.jackpot-shine{position:absolute;inset:-50% auto -50% -35%;width:28%;transform:skewX(-22deg);background:linear-gradient(90deg,transparent,rgba(255,255,255,.32),transparent);animation:jackpotShine 3.6s ease-in-out infinite}
@keyframes jackpotChase{to{transform:rotate(360deg)}}
@keyframes jackpotShine{0%,55%{left:-40%}85%,100%{left:120%}}
@media(max-width:760px){.bottom-row{grid-template-columns:1fr}.casino-jackpot{min-height:128px}.jackpot-title strong{font-size:21px}.casino-jackpot .jackpot-amount{font-size:clamp(14px,4.7vw,20px)!important}}
@media(prefers-reduced-motion:reduce){.casino-jackpot::before,.jackpot-shine{animation:none}}

.login-screen {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    overflow: hidden;
}

.login-canvas {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "stage"
        "submit"
        "ribbon";
    align-items: start;
    justify-items: stretch;
    gap: 0.85rem;
}

.login-submit-rail {
    grid-area: submit;
    align-self: stretch;
    min-height: 72px;
    width: 100%;
    border: 2px solid rgba(255, 226, 115, 0.95);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffe066 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "digital_sans_ef_medium", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    /*box-shadow: 0 26px 52px rgba(25, 151, 60, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;*/
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    filter: brightness(1.05);
    transform: translateY(-2px);
    /*box-shadow: 0 30px 60px rgba(25, 151, 60, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;*/
}

    .login-submit-rail span {
        display: block;
    }

    .login-submit-rail:hover {
        color: #ffffff;
        filter: brightness(1.05);
        transform: translateY(-2px);
        box-shadow: 0 30px 60px rgba(25, 151, 60, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }

    .login-submit-rail:focus-visible {
        outline: 2px solid rgba(255, 215, 0, 0.8);
        outline-offset: 3px;
    }

.login-stage {
    grid-area: stage;
    min-width: 0;
}

.login-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(1rem, 2vw, 1.45rem);
    background: radial-gradient(circle at top left, rgba(0, 183, 255, 0.18), transparent 28%), radial-gradient(circle at top right, rgba(255, 76, 215, 0.16), transparent 30%), linear-gradient(180deg, rgba(58, 10, 132, 0.97), rgba(10, 9, 48, 0.98));
    border: 2px solid rgba(255, 215, 0, 0.74);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

    .login-frame::before {
        content: "";
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        pointer-events: none;
    }

    .login-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.14), transparent 12%, transparent 88%, rgba(255, 82, 214, 0.18));
        opacity: 0.9;
    }

.login-frame-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(0.9rem, 1.8vw, 1.35rem);
}

.login-ribbon {
    grid-area: ribbon;
    align-self: stretch;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 29, 68, 0.88), rgba(6, 10, 31, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

    .login-ribbon::before {
        content: "";
        position: absolute;
        inset: auto 14% 12% 14%;
        height: 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
        filter: blur(1px);
        opacity: 0.8;
    }

    .login-ribbon::after {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        pointer-events: none;
    }

.login-ribbon-mark {
    position: relative;
    z-index: 1;
    display: block;
    width: min(360px, 100%);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.login-ribbon span {
    display: block;
    color: #7bbaff;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 0 16px rgba(44, 147, 255, 0.42);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(0.2rem, 0.55vw, 0.45rem) 0;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

    .login-field label {
        color: #ffd94b;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

.login-input-shell {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 58px;
    padding: 0.75rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(7, 15, 39, 0.98), rgba(11, 21, 52, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.22);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

    .login-input-shell i {
        color: #7cc3ff;
        font-size: 1rem;
    }

.login-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.login-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

    .login-remember input {
        width: 1rem;
        height: 1rem;
        margin: 0;
        accent-color: #ffd700;
    }

.login-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.1rem;
}

.login-secondary-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
    padding-bottom: 0.12rem;
}

    .login-secondary-link:hover {
        color: #ffffff;
        border-color: #ffffff;
    }

.login-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.login-input-shell:focus-within {
    border-color: rgba(0, 166, 255, 0.65);
    box-shadow: 0 0 0 0.18rem rgba(0, 136, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .login-screen {
        padding: 1rem;
    }

    .login-frame {
        border-radius: 22px;
        padding: 0.9rem;
    }

    .login-frame-header {
        flex-wrap: wrap;
    }

    .login-brand-mark {
        width: 48px;
    }

    .login-home-link {
        width: 42px;
        height: 42px;
    }

    .login-side-panel,
    .login-lang-pill,
    .login-remember,
    .login-input-shell,
    .login-ribbon {
        border-radius: 16px;
    }

    .login-input-shell {
        min-height: 52px;
    }

    .login-brand-copy p {
        font-size: 0.74rem;
    }
}

@media (max-width: 575.98px) {
    .login-canvas {
        width: min(100%, 560px);
        gap: 0.75rem;
    }

    .login-frame {
        padding: 0.85rem;
    }

    .login-frame-header {
        margin-bottom: 0.8rem;
    }

    .login-submit-rail {
        min-height: 68px;
        border-radius: 18px;
    }

    .login-ribbon {
        min-height: 112px;
        border-radius: 20px;
    }

    .login-ribbon-mark {
        width: min(200px, 100%);
    }
}

.topList {
    width: 9%;
}

.topNav ul {
    width: 100%;
    height: 70px;
}

    .topNav ul li {
        text-align: center;
        border-right: 2px solid rgba(0,30,72,.4);
        border-left: 2px solid rgba(255,255,255,.2);
        float: left;
        height: 78px;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

.topMenu a .topMenuWrp {
    height: 70px;
}

.topMenu a .topMenuBox {
    display: inline-block;
    margin-top: 10px;
}

.topMenu a .topMenuTable {
    display: table;
    text-align: center;
}

.topMenu a .topMenuTableRow {
    display: table-row;
}

.topMenu a .topMenuIcon {
    height: 59px;
    width: 56px;
    display: table-cell;
}

.topMenu a .topMenuTitle {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.topMenu a .topMenuWrp .imgFix {
    width: 23%;
    height: 68px;
    overflow: hidden;
}

.topMenu a .topMenuWrp > div {
    float: left;
    overflow: hidden;
    text-align: left;
}

.topMenu a .topMenuWrp #wrap {
    width: 100%;
    height: 100%;
}

    .topMenu a .topMenuWrp #wrap #content {
        display: inline-block;
        width: 100%;
    }

.topMenu a .topMenuWrp div img {
    width: 100px;
}

.topNav ul li:first-child {
    border-left: 0;
}

.topOdds p {
    display: inline-block;
    color: #fff;
    background: #c80000;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 32px;
    margin: 0;
    border: 1px solid #394b8c;
    box-shadow: 1px 1px 0 rgba(255,255,255,.5),inset 1px 1px 2px rgba(0,0,0,.5);
}

.topNav ul li:last-child {
    border-right: 0;
    width: 12%;
    box-flex: 0;
    text-indent: -99999px;
}

    .topNav ul li:last-child a {
        width: 32px;
        height: 32px;
        margin-top: 26px;
        margin-left: 25px;
        background: url(../img/imgAll.png) -498px -144px no-repeat;
    }

.topNav ul li.active {
    background-color: #325494;
    background: -webkit-linear-gradient(top,#325494 0,#496eb2 100%);
    background: -moz-linear-gradient(top,#325494 0,#496eb2 100%);
    background: -ms-linear-gradient(top,#325494 0,#496eb2 100%);
    background: -o-linear-gradient(top,#325494 0,#496eb2 100%);
    background: linear-gradient(to bottom,#325494 0,#496eb2 100%);
}

.topNav ul li a {
    color: #FFF;
    display: block;
    height: 78px;
    vertical-align: middle;
    text-align: center;
    font-weight: bolder;
    width: 100%;
    text-shadow: 0 1px 0 rgba(0,0,0,.8);
}

.topNav ul .league a, .topNav ul .topOdds a, .topNav ul .topList a {
    line-height: 78px;
}

.topNav .button {
    line-height: 48px;
    text-align: center;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(0,0,0,.8);
    position: absolute;
    padding: 0 5px;
    font-family: Arial;
    color: #fff;
}

.topNav .buttonParlay {
    line-height: 48px;
    text-align: center;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(0,0,0,.8);
    position: absolute;
    font-family: Arial;
    color: #fff;
}

.topNav .button > span {
    display: block;
    height: 38px;
    width: 38px;
    background-color: #b1d4f5;
    background: -webkit-linear-gradient(top,#b1d4f5 0,#9bc4ec 100%);
    background: -moz-linear-gradient(top,#b1d4f5 0,#9bc4ec 100%);
    background: -ms-linear-gradient(top,#b1d4f5 0,#9bc4ec 100%);
    background: -o-linear-gradient(top,#b1d4f5 0,#9bc4ec 100%);
    background: linear-gradient(to bottom,#b1d4f5 0,#9bc4ec 100%);
    position: absolute;
    left: -21px;
    top: 4px;
    -webkit-transform: rotate(45deg);
    -webkit-mask-image: -webkit-gradient(linear,left bottom,right top,from(#b1d4f5),color-stop(0.5,#b1d4f5),color-stop(0.5,transparent),to(transparent));
    border: 3px solid #466aa1;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.topNav .back {
    display: table-cell;
    width: 60px
}

.topNav .remove, .topNav .home {
    display: block;
}

.topNav .remove_1 {
    float: left;
    width: 10px;
    height: 45px;
    background: url(../img/removeBtn_1.png) no-repeat;
}

.topNav .remove_2 {
    float: left;
    min-width: 85px;
    height: 45px;
    background-color: #fff;
    color: #000;
    margin-top: 1px;
    /*background:url(../img/removeBtn_bg.png) repeat-x;*/
}

.topNav .remove_3 {
    float: left;
    width: 10px;
    height: 45px;
    background: url(../img/removeBtn_2.png) no-repeat;
}

.topNav .home_1 {
    float: left;
    width: 10px;
    height: 57px;
    background: url(../img/removeBtn_1.png) no-repeat;
}

.topNav .home_2 {
    float: left;
    min-width: 66px;
    height: 57px;
    line-height: 57px;
    background: url(../img/removeBtn_bg.png) repeat-x;
}

.topNav .home_3 {
    float: left;
    width: 10px;
    height: 57px;
    background: url(../img/removeBtn_2.png) no-repeat;
}

.topNav .menu_1 {
    float: left;
    width: 10px;
    height: 57px;
    background: url(../img/removeBtn_1.png) no-repeat;
}

.topNav .menu_2 {
    float: left;
    min-width: 66px;
    height: 57px;
    line-height: 57px;
    background: url(../img/removeBtn_bg.png) repeat-x;
}

.topNav .menu_3 {
    float: left;
    width: 10px;
    height: 57px;
    background: url(../img/removeBtn_2.png) no-repeat;
}

.topNav .home_2 div {
}

.topNav .menu_2 div {
    width: 33px;
    height: 33px;
    position: relative;
    left: 17px;
    top: 15px;
    background: url(../img/imgAll.png) -498px -144px no-repeat;
}

.topNav .backArrow {
}

.topNav .backMain {
    cursor: pointer;
    float: right;
}

.topNav .backMain_2 {
}

.topNav .refresh {
    padding: 16px 12px;
    right: 0;
    top: 0;
    width: 40px;
}

.topNav .deleteParlay {
    right: 0;
    top: 0;
    width: 92px;
}

.load {
    transform: scale(0.4);
    animation-timing-function: linear;
    animation: icon-animation 1s;
    animation-iteration-count: infinite;
    -webkit-animation: icon-animation 1s;
    -webkit-animation-timing-function: linear;
    -webkit-transform: scale(0.4);
    -webkit-animation-iteration-count: infinite;
}

.topNav .refresh a {
    display: block;
    height: 16px;
    width: 16px;
    background: url(../img/refreshing.png) no-repeat;
    cursor: pointer;
}

.topNav h1 {
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    text-shadow: 0 2px 0 rgba(0,0,0,.8);
    color: #FFF;
    font-family: Arial;
    font-weight: 700;
}

.page-shell {
    position: relative;
}

.top-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 60px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1035;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.header-row,
.dashboard-top-row,
.wallet-row {
    min-width: 0;
}

.main-content {
    padding-top: 60px;
}

.brand-link {
    min-width: 0;
}

.brand-logo {
    width: auto;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.18), 0 10px 18px rgba(0, 88, 217, 0.22);
}

.brand-name {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    font-size: 0.96rem;
    white-space: nowrap;
}

.brand-white {
    color: #ffffff;
}

.brand-blue {
    color: var(--blue-soft);
    text-shadow: 0 0 14px rgba(45, 121, 255, 0.45);
}

.brand-gold {
    color: var(--gold);
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
}

.header-actions {
    flex-shrink: 0;
}

.header-actions,
.dashboard-user-wrap {
    min-width: 0;
}

.lang-btn,
.btn-header {
    height: 34px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.btn-logout {
    background: linear-gradient(135deg, #32005d, #32005d) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 0 18px rgb(255 0 255 / 35%) !important;
}

    .btn-logout:hover {
        color: #ffffff;
        filter: brightness(1.04);
    }

.lang-select {
    width: auto;
    min-width: 90px;
    background-color: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
    font-size: .8rem;
}

    .lang-select option {
        background-color: #1a1a2e;
        color: #fff;
    }

.lang-btn {
    width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

    .lang-btn:hover {
        color: #ffffff;
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.12);
    }

.dashboard-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 160px;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

    .dashboard-user-chip span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dashboard-user-chip i {
        color: var(--blue-soft);
        font-size: 0.92rem;
    }

.dashboard-wallet-bar {
    background: linear-gradient(180deg, #32005d, #32005d);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    top: 60px;
    position: relative;
}

.wallet-row {
    padding: 0.6rem 0;
}

.wallet-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0.72rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.wallet-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wallet-btn {
    min-width: 88px;
    min-height: 34px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.wallet-deposit {
    background: linear-gradient(135deg, #32005d, #32005d) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 0 18px rgb(255 0 255 / 35%) !important;
}

.wallet-withdraw {
    background: linear-gradient(135deg, #32005d, #32005d) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 0 18px rgb(255 0 255 / 35%) !important;
}

.wallet-btn:hover {
    color: #ffffff;
    filter: brightness(1.05);
}

.menu-bar {
    background: linear-gradient(180deg, #ffe066 0%, #d4af37 50%, #aa7c11 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-scroll {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0 0.66rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    cursor: grab;
}

    .menu-scroll::-webkit-scrollbar {
        display: none;
    }

    .menu-scroll.is-dragging {
        cursor: grabbing;
        user-select: none;
    }

.menu-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 36px;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    background: #32005d !important;
    border: 1px solid transparent;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration:none;
}

    .menu-link i {
        font-size: 0.85rem;
    }

    .menu-link:hover,
    .menu-link.active {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 215, 0, 0.12));
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
        transform: translateY(-1px);
    }

.info-strip {
    background: #111111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.ticker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    overflow: hidden;
}

.ticker-badge {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--gold);
    font-size: 0.96rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.45);
}

.ticker-window {
    flex: 0 1 auto;
    width: min(760px, calc(100vw - 6rem));
    overflow: hidden;
}

.ticker-track {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 3rem;
    white-space: nowrap;
    min-height: 44px;
    padding: 0.78rem 0;
    will-change: transform;
    animation: ticker var(--ticker-duration, 18s) linear infinite;
}

    .ticker-track span {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: 0.03em;
        padding-left: 0;
        padding-block: 0.08rem;
    }

        .ticker-track span::before {
            content: none;
        }

.ticker-icon {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 0.92rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.45);
}

@keyframes ticker {
    from {
        transform: translateX(var(--ticker-start, 100vw));
    }

    to {
        transform: translateX(var(--ticker-end, -100%));
    }
}

.page-shell {
    width: 100%;
    /*min-height: 100vh;*/
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

    .page-shell .container-fluid {
        max-width: 1120px;
        margin-inline: auto;
    }

@media (min-width: 576px) {
    .brand-name {
        font-size: 1rem;
    }

    .hero-slide {
        height: 260px;
    }

    .hero-overlay {
        padding: 1.1rem;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 1.2rem;
    }

    .promo-overlay h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .hero-slide {
        height: 320px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 1.45rem;
    }

    .hero-copy p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.08rem;
    }
}

@media (min-width: 992px) {
    .section-block {
        padding: 1.05rem 0;
    }

    .hero-slide {
        height: 420px;
    }

    .hero-overlay {
        padding: 1.45rem;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 1.95rem;
    }

    .hero-copy p {
        font-size: 0.92rem;
    }

    .game-title {
        font-size: 0.95rem;
    }

    .promo-overlay h3 {
        font-size: 1.18rem;
    }
}

@media (max-width: 575.98px) {
    .top-header {
        height: 60px;
    }

    .brand-logo {
        height: 28px;
        width: 55px;
    }

    .main-content {
        padding-top: 60px;
    }

    .lang-btn,
    .btn-header {
        height: 30px;
        border-radius: 9px;
        font-size: 0.72rem;
    }

    .lang-btn {
        width: 30px;
    }

    .btn-login,
    .btn-register {
        padding-inline: 0.56rem;
    }

    .menu-link {
        padding: 0.5rem 0.82rem;
        font-size: 0.76rem;
    }

    .hero-overlay {
        padding: 0.82rem;
    }

    .hero-btn {
        min-height: 31px;
        font-size: 0.72rem;
        padding: 0.42rem 0.72rem;
    }

    .section-head {
        margin-bottom: 0.68rem;
    }

    .view-more-link {
        font-size: 0.74rem;
    }

    .card-shell,
    .promo-card {
        border-radius: 11px;
    }

    .game-body {
        padding: 0.6rem 0.6rem 0.7rem;
    }

    .floating-contact {
        min-height: 104px;
        padding: 0.6rem 0.36rem;
    }

        .floating-contact span {
            font-size: 0.68rem;
            letter-spacing: 0.12em;
        }

    .floating-chat {
        width: 50px;
        height: 50px;
        right: 12px;
        bottom: 12px;
        font-size: 1.05rem;
    }

    .footer-panel {
        padding: 0.9rem;
    }

    .auth-modal .modal-dialog {
        width: min(100vw - 0.8rem, 440px);
        margin: 0.45rem auto;
    }

    .auth-card {
        border-radius: 18px;
    }

    .auth-modal .modal-header {
        padding: 0.95rem 0.95rem 0.35rem;
    }

    .auth-modal .modal-body {
        padding: 0.9rem 0.95rem 1rem;
    }

    .auth-modal .modal-title {
        font-size: 1.04rem;
    }

    .auth-input,
    .auth-modal .form-select,
    .auth-submit {
        min-height: 40px;
    }

    .wallet-row {
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 0.45rem;
    }

    .wallet-balance {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.42rem 0.58rem;
        font-size: 0.64rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .wallet-actions {
        flex: 0 0 auto;
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        gap: 0.35rem;
    }

    .wallet-btn {
        min-width: 0;
        min-height: 30px;
        padding-inline: 0.52rem;
        font-size: 0.6rem;
        white-space: nowrap;
    }
}

.deposit .form {
    width: 90%;
    margin: 0 auto;
    padding-top: 30px;
}

.deposit-header {
    background: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,215,0,.25);
    padding: .85rem 1.15rem;
    font-weight: 900;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffd94b;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.deposit-submit-rail {
    grid-area: submit;
    align-self: stretch;
    min-height: 50px;
    width: 100%;
    border: 2px solid rgba(255, 226, 115, 0.95);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffe066 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "digital_sans_ef_medium", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 26px 52px rgba(25, 151, 60, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(25, 151, 60, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    margin-bottom: 10px;
}

    .deposit-submit-rail.button1 {
        margin-top: 20px;
    }

.qrbutton {
    min-height: 50px !important;
    width: 100px;
}

.autodpbutton {
    min-height: 40px !important;
    width: 150px;
    font-size: 12px;
}

.deposit-field-label {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    color: #ffd94b;
    text-transform: uppercase;
    margin: 1.3rem 0 .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.deposit-section-label-line {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,215,0,.4);
    margin: 10px 0;
}

.deposit-field-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,215,0,.4), transparent);
}

.deposit-tab-btn {
    padding: .4rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    margin-right: 10px;
}

    .deposit-tab-btn:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

    .deposit-tab-btn.active {
        background: linear-gradient(135deg,#ffd94b,#f0b400);
        border-color: rgba(255,215,0,.74);
        color: #1a0b3e;
    }

.deposit-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    /*padding: clamp(1rem, 2vw, 1.45rem);*/
    background: radial-gradient(circle at top left, rgba(0, 183, 255, 0.18), transparent 28%), radial-gradient(circle at top right, rgba(255, 76, 215, 0.16), transparent 30%), linear-gradient(180deg, rgba(58, 10, 132, 0.97), rgba(10, 9, 48, 0.98));
    border: 2px solid rgba(255, 215, 0, 0.74);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.deposit-notice {
    background: rgba(255,107,107,.12);
    border: 1px solid rgba(255,107,107,.4);
    border-radius: 12px;
    padding: .7rem .8rem .7rem 1.5rem;
    margin-bottom: 1.1rem;
    color: #ffb3b3;
    font-size: .78rem;
    line-height: 1.5;
}

    .deposit-notice li {
        margin-bottom: .2rem;
    }

/*.deposit-frame::before {
        content: "";
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        pointer-events: none;
    }

    .deposit-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(255, 215, 0, 0.14), transparent 12%, transparent 88%, rgba(255, 82, 214, 0.18));
        opacity: 0.9;
    }*/

.deposit-frame-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(0.9rem, 1.8vw, 1.35rem);
}

.deposit-brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.deposit-brand-mark {
    width: clamp(54px, 7vw, 76px);
    height: auto;
    flex: 0 0 auto;
    border-radius: 18px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.deposit-brand-copy {
    min-width: 0;
}

.deposit-kicker {
    display: block;
    color: #ffd94b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.deposit-brand-copy h1 {
    margin: 0.1rem 0 0;
    font-family: "digital_sans_ef_medium", Arial, sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.65rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.deposit-brand-copy p {
    margin: 0.28rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 28rem;
}

.deposit-home-link {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

    .deposit-home-link:hover {
        color: #ffffff;
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.22);
    }

.deposit-frame-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.deposit-side-panel {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: clamp(0.9rem, 1.6vw, 1.15rem);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8, 15, 40, 0.78), rgba(7, 13, 32, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.deposit-lang-label {
    color: #ffd94b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.deposit-lang-pill {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.82rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: left;
}

    .deposit-lang-pill i {
        margin-left: auto;
        color: rgba(255, 255, 255, 0.72);
    }

.deposit-flag {
    width: 2rem;
    height: 1.35rem;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 0.28rem;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #012169 0 100%);
}

    .deposit-flag::before,
    .deposit-flag::after {
        content: "";
        position: absolute;
        inset: 0;
    }

    .deposit-flag::before {
        background: linear-gradient(45deg, transparent 42%, #ffffff 42% 47%, #c8102e 47% 53%, #ffffff 53% 58%, transparent 58%), linear-gradient(-45deg, transparent 42%, #ffffff 42% 47%, #c8102e 47% 53%, #ffffff 53% 58%, transparent 58%);
    }

    .deposit-flag::after {
        background: linear-gradient(90deg, transparent 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%), linear-gradient(180deg, transparent 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%);
        opacity: 0.92;
    }

.deposit-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

    .deposit-remember input {
        width: 1rem;
        height: 1rem;
        margin: 0;
        accent-color: #ffd700;
    }

.deposit-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.55;
}

.deposit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(0.2rem, 0.55vw, 0.45rem) 0;
}

.deposit-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

    .deposit-field label {
        color: #ffd94b;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

.deposit-input-shell {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 58px;
    padding: 0.75rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(7, 15, 39, 0.98), rgba(11, 21, 52, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.22);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

    .deposit-input-shell i {
        color: #7cc3ff;
        font-size: 1rem;
    }

.deposit-input:disabled {
    color: rgba(255,255,255,.5);
    cursor: not-allowed;
}

.deposit-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/*.deposit-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}*/

.deposit-select {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    padding: .7rem .6rem .7rem 0;
    outline: none;
    width: 100%;
}

    .deposit-select option {
        background: #0b1534;
        color: #fff;
    }

.deposit-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.deposit-input-shell:focus-within {
    border-color: rgba(0, 166, 255, 0.65);
    box-shadow: 0 0 0 0.18rem rgba(0, 136, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.deposit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.1rem;
}

.deposit-secondary-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
    padding-bottom: 0.12rem;
}

    .deposit-secondary-link:hover {
        color: #ffffff;
        border-color: #ffffff;
    }

.deposit-span {
    font-size: .78rem;
    color: rgba(255,255,255,.72);
    margin: 1rem 0;
    line-height: 1.6;
}

.deposit-ribbon {
    grid-area: ribbon;
    align-self: stretch;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(15, 29, 68, 0.88), rgba(6, 10, 31, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

    .deposit-ribbon::before {
        content: "";
        position: absolute;
        inset: auto 14% 12% 14%;
        height: 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
        filter: blur(1px);
        opacity: 0.8;
    }

    .deposit-ribbon::after {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        pointer-events: none;
    }

.deposit-ribbon-mark {
    position: relative;
    z-index: 1;
    display: block;
    width: min(360px, 100%);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.deposit-ribbon span {
    display: block;
    color: #7bbaff;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 0 16px rgba(44, 147, 255, 0.42);
}

/*.deposit .subject {
    padding: 10px;
    background: #31b3e4;
    min-height: 30px;
    padding-left: 22px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 10px 0;
}

    .deposit .subject .first {
        margin: 0 0 10px 0;
    }

.deposit label {
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: Arial;
    font-weight: bolder;
}

.deposit .form .yellow {
    display: block;
    font-size: 14px;*/
/*color:#fbed07;*/
/*color: blue;
    font-family: Arial;
    font-weight: bolder;
    padding: 10px 0;
}

.deposit .form .red {
    display: block;
    font-size: 14px;
    color: #ff4949;
    font-family: Arial;
    font-weight: bolder;
    padding: 10px 0;
}

.deposit input, .deposit textarea, .deposit select {
    height: 40px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #999;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}

.deposit .bank select {
    width: 95%;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #999;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

.deposit .payment select {
    width: 95%;
    height: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #999;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

.deposit textarea {
    height: 150px;
}

.deposit .line {
    border-bottom: 1px dashed #fff;
    padding: 10px 0;
    margin-bottom: 15px;
}

.deposit .notice {
    font-size: 14px;
    font-family: Arial;
    color: #ff4949;
    text-align: center;
}

    .deposit .notice p {
        margin: 0;
        text-align: center;
    }

.deposit .submit {
    text-align: center;
    margin: 20px 0;
    height: 66px;
}

    .deposit .submit button {
        width: 90%;
        text-align: center;
        border-radius: 6px;
        background-color: #000000;
        background: -webkit-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -moz-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -ms-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -o-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: linear-gradient(to bottom,#000000 0,#2D2D2D 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.8),0 2px 5px rgba(0,0,0,.7);
        border: 1px solid #336;
        font-size: 14px;
        color: #fff;
        text-shadow: -1px -1px 0 rgba(0,0,0,.5);
        box-shadow: 0 2px 2px rgba(0,0,0,.5);
        height: 60px;
    }*/

.deposit-tab {
    padding: 12px;
    padding-top: 0;
    /*margin-top: -10px;*/
}

.deposit-after-area {
    margin: 15px 0;
}

.deposit-tab .nav-link {
    padding: 25px 50px;
    font-size: 20px;
    background: #ffcf00;
    display: inline-block;
    margin: 4px;
    border: 3px solid #f0ca00;
    border-radius: 5px 5px 0 0;
    color: #001026;
}

    .deposit-tab .nav-link:first-child {
        margin-left: 0;
    }

    /*.deposit-tab .tab-content {
    border: 3px solid #f0ca00;
    border-radius: 0 0 10px 10px;
    margin-top: -23px;
}*/

    .deposit-tab .nav-link.active {
        background: #00183a;
        color: #FFF;
        border-bottom: 3px solid #00183a;
    }

.deposit-content-bottom {
    background: #000b1f;
    padding: 25px;
    border-radius: 10px;
}

    .deposit-content-bottom h3 {
        color: #FFF;
        margin-bottom: 35px;
    }

    .deposit-content-bottom ul {
        list-style: unset;
        padding-left: 15px;
        padding-right: 15px;
    }

    .deposit-content-bottom li {
        font-size: 18px;
        color: #FFF;
        margin-bottom: 20px;
        line-height: 1.5;
    }

.deposit-top {
    padding-top: 20px;
}

    .deposit-top tr {
        border: 0;
    }

#pills-home .deposit-top td {
    border: 1px solid #fff;
    float: none;
}

.deposit-top td {
    font-size: 18px;
    color: #FFF;
    padding: 15px;
    border: 0;
}

    .deposit-top td span {
        margin-top: 15px;
        margin-bottom: 35px;
        display: inline-block;
    }

    .deposit-top td ul li {
        display: inline-block;
        background: #0044b4;
        padding: 5px 10px;
        border-radius: 5px;
        margin-top: 10px;
    }

        .deposit-top td ul li span img {
            width: 15px;
        }

    .deposit-top td input {
        max-width: 200px;
    }

    .deposit-top td select {
        max-width: 200px;
        border: 0;
        display: inline-block;
        margin-bottom: 15px;
    }

    .deposit-top td .bca-btn {
        background: #FFF;
        border-radius: 5px;
        padding: 8px 15px;
        display: inline-block;
        margin-left: 15px;
    }

        .deposit-top td .bca-btn img {
            height: 20px;
            margin-right: 10px;
        }

    .deposit-top td textarea {
        border: 0;
        border-radius: 15px;
    }

.salin-btn {
    display: inline-block;
    background: #0044b4;
    padding: 8px 15px;
    border-radius: 5px;
    color: #FFF;
    margin-left: 10px;
}

.kirim-btn {
    text-transform: uppercase;
    display: inline-block;
    background: #ffcf00;
    padding: 10px 15px;
    border-radius: 5px;
    color: #001026;
    margin-top: 15px;
}

.bankButton {
    height: 60px;
    background-size: 100% 50px;
    background-repeat: no-repeat;
    display: none;
}

/*== QR Tab Content ==*/
.qr-tab-content-top.deposit-top td input.form-control {
    max-width: 100%;
    margin-bottom: 5px;
    background: #ffffff;
}

.qr-tab-content-top.deposit-top td ul li a {
}

.qr-tab-content-top.deposit-top td ul li a {
    display: inline-block;
    color: #ffcf00;
    padding: 2px;
    font-weight: 600;
}

.qr-tab-content-top.deposit-top td ul li:first-child {
    background: #ffcf00;
}

    .qr-tab-content-top.deposit-top td ul li:first-child a {
        padding: 0px;
    }

        .qr-tab-content-top.deposit-top td ul li:first-child a img {
            width: 20px;
        }

.qr-tab-bottom {
    background: #001c85;
    padding: 10px;
    padding-bottom: 30px;
}

    .qr-tab-bottom span {
        color: #FFF;
        display: inline-block;
        line-height: 1.5;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .qr-tab-bottom img {
        border-radius: 10px;
    }

.qr-tab-bottom-dv {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}

    .qr-tab-bottom-dv span {
        margin-bottom: 0;
    }

    .qr-tab-bottom-dv .text-left {
        padding-top: 25px;
    }

    .qr-tab-bottom-dv .text-right-tab {
        width: 60%;
    }

    .qr-tab-bottom-dv .text-right {
        text-align: center;
        background: #FFF;
        border-radius: 10px;
        padding: 25px;
    }

        .qr-tab-bottom-dv .text-right span {
            color: #04368a;
        }

.qr-area, .qr-table td {
    color: #ffffff;
}

    .qr-area p {
        color: #ffffff;
    }

@media only screen and (max-width: 767px) {


    .deposit-tab .nav-link {
        padding: 5px 25px;
        font-size: 16px;
    }

    .deposit-top td {
        font-size: 14px;
    }

    .deposit-top {
        padding: 10px;
    }

        .deposit-top td {
            padding: 10px;
        }

            .deposit-top td ul li {
                padding: 5px;
            }

            .deposit-top td .bca-btn {
                margin-left: 0;
                margin-top: 15px;
            }

    .deposit-content-bottom li {
        font-size: 16px;
    }
}

/*.button1 {
    width: 100%;
    text-align: center;
    border-radius: 6px;
    background-color: #32b6e8;
    background: -webkit-linear-gradient(top,#2777f2 0,#1a4a94 100%);
    background: -moz-linear-gradient(top,#2777f2 0,#1a4a94 100%);
    background: -ms-linear-gradient(top,#2777f2 0,#1a4a94 100%);
    background: -o-linear-gradient(top,#2777f2 0,#1a4a94 100%);
    background: linear-gradient(to bottom,#2777f2 0,#1a4a94 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8),0 2px 5px rgba(0,0,0,.7);
    border: 1px solid #336;
    font-size: 25px;
    color: #fff;
    text-shadow: -1px -1px 0 rgba(0,0,0,.5);
    box-shadow: 0 2px 2px rgba(0,0,0,.5);
    height: 55px;
    line-height: 2;
}*/

.withdraw .form {
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
}

.withdraw .subject {
    padding: 10px;
    background: #31b3e4;
    min-height: 30px;
    padding-left: 22px;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 10px 0;
}

    .withdraw .subject .first {
        margin: 0 0 10px 0;
    }

/*.withdraw label {
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: Arial;
    font-weight: bolder;
}*/

.withdraw .form .yellow {
    display: block;
    font-size: 14px;
    /*color:#fbed07;*/
    color: blue;
    font-family: Arial;
    font-weight: bolder;
    padding: 10px 0;
}

.withdraw .form .red {
    display: block;
    font-size: 14px;
    color: #ff4949;
    font-family: Arial;
    font-weight: bolder;
    padding: 10px 0;
}

/*.withdraw input {
    height: 60px;
    width: 95%;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #999;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
}*/

.withdraw .line {
    border-bottom: 1px dashed #fff;
    padding: 10px 0;
    margin-bottom: 15px;
}

.withdraw .notice {
    font-size: 14px;
    font-family: Arial;
    color: #ff4949;
    text-align: center;
}

    .withdraw .notice p {
        margin: 0;
        text-align: center;
    }

.withdraw .submit {
    text-align: center;
    margin: 20px 0;
    height: 66px;
}

    .withdraw .submit button {
        width: 90%;
        text-align: center;
        border-radius: 6px;
        background-color: #000000;
        background: -webkit-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -moz-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -ms-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: -o-linear-gradient(top,#000000 0,#2D2D2D 100%);
        background: linear-gradient(to bottom,#000000 0,#2D2D2D 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.8),0 2px 5px rgba(0,0,0,.7);
        border: 1px solid #336;
        font-size: 14px;
        color: #fff;
        text-shadow: -1px -1px 0 rgba(0,0,0,.5);
        box-shadow: 0 2px 2px rgba(0,0,0,.5);
        height: 60px;
    }


/* Styling Game Card & Container */
.game-card {
    position: relative;
    background-color: #0b0e14;
    border: 1px solid #1e2530;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    .game-card:hover {
        transform: translateY(-4px);
        border-color: #ffd700;
    }

/* Badge HOT Merah Presisi */
.badge-hot {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    z-index: 10 !important;
    line-height: 1 !important;
    max-width: fit-content !important;
    max-height: fit-content !important;
    width: auto !important;
    height: auto !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.game-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #161b22;
}

    .game-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.game-info {
    padding: 8px 4px;
}

.game-title {
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.game-provider {
    color: #8b949e;
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================================
       OVERLAY SLIDER 1 PERBAIKAN: TEKS SANGAT JELAS & TAMPIL TEGAS
       ========================================================= */
.swiper-slide {
    position: relative;
    overflow: hidden;
}

.overlay-slide-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5%;
    /* Gradient hitam transparan di latar teks agar gambar tidak menabrak tulisan */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0) 80%);
    z-index: 5;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    pointer-events: none;
}

    .overlay-slide-1 * {
        pointer-events: auto;
    }

/* Baris 1: SELAMAT DATANG DI */
.banner-text-welcome {
    font-size: clamp(11px, 2.2vw, 24px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 4px;
    -webkit-text-stroke: 1px #000000;
    filter: drop-shadow(0px 3px 6px #000000);
}

/* Baris 2: VARIATIF SLOT 365 */
.banner-text-brand {
    font-size: clamp(20px, 4.4vw, 50px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

/* Gradasi Emas + Outline Hitam Tebal */
.gold-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFE666 35%, #FFB700 70%, #D47A00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px #000000;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.95));
}

/* Gradasi Ungu + Glow Neon Kuat + Outline */
.purple-gradient {
    background: linear-gradient(180deg, #F3D5FF 0%, #C052FF 50%, #7B00EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px #000000;
    filter: drop-shadow(0px 0px 12px rgba(192, 82, 255, 1)) drop-shadow(0px 4px 8px #000000);
}

/* Baris 3: SITUS SLOT GACOR */
.banner-text-sub {
    font-size: clamp(13px, 2.7vw, 30px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 4px;
    -webkit-text-stroke: 1.2px #000000;
    filter: drop-shadow(0px 3px 6px #000000);
}

/* Baris 4: TERPERCAYA (Ungu Neon Terang) */
.banner-text-terpercaya {
    font-size: clamp(16px, 3.4vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF 0%, #D882FF 50%, #9500FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.2px #000000;
    filter: drop-shadow(0px 0px 16px rgba(180, 50, 255, 1)) drop-shadow(0px 4px 8px #000000);
    margin-bottom: 16px;
}

/* Tombol DAFTAR SEKARANG */
.btn-daftar-now {
    display: inline-block;
    background: linear-gradient(180deg, #FFF080 0%, #FFB000 50%, #D66000 100%);
    color: #000000;
    font-size: clamp(10px, 1.6vw, 16px);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 26px;
    border-radius: 6px;
    border: 1.5px solid #FFFFFF;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.9), 0px 0px 10px rgba(255, 176, 0, 0.6);
    transition: transform 0.15s ease, filter 0.15s ease;
    letter-spacing: 0.5px;
}

    .btn-daftar-now:hover {
        transform: translateY(-2px) scale(1.04);
        filter: brightness(1.15);
    }