
:root {
  --ex-blue: #0330fb;
  --ex-blue-2: #001a8f;
  --ex-blue-3: #06104a;
  --ex-navy: #030713;
  --ex-navy-2: #071126;
  --ex-red: #e20f2f;
  --ex-red-2: #7b0618;
  --ex-gold: #d7a83f;
  --ex-gold-soft: rgba(215, 168, 63, .18);
  --ex-text: #f4f7ff;
  --ex-muted: #9aa8cf;
  --ex-line: rgba(3, 48, 251, .42);
  --ex-line-red: rgba(226, 15, 47, .32);
  --ex-panel: rgba(5, 12, 35, .78);
  --ex-panel-2: rgba(8, 17, 45, .92);
  --ex-glass: rgba(255, 255, 255, .055);

  --theme-color: var(--ex-navy) !important;
  --primary-color: var(--ex-blue) !important;
  --secondary-background: rgba(3, 48, 251, .14) !important;
  --footer-background: #040814 !important;
  --menu-item-color: var(--ex-text) !important;
  --marquee-color: #ffffff !important;
  --content-box-background: transparent !important;
}

@keyframes exAurora {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .76; }
  50% { transform: translate3d(-2%, 1%, 0) scale(1.05); opacity: 1; }
}

@keyframes exScan {
  0% { transform: translateY(-100%); opacity: 0; }
  18% { opacity: .42; }
  100% { transform: translateY(120%); opacity: 0; }
}

@keyframes exBorderRun {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes exGlowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(3, 48, 251, .26), inset 0 1px 0 rgba(255, 255, 255, .08); }
  50% { box-shadow: 0 0 34px rgba(3, 48, 251, .44), 0 0 22px rgba(226, 15, 47, .16), inset 0 1px 0 rgba(255, 255, 255, .12); }
}

@keyframes exButtonShine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(260%) skewX(-18deg); }
}

@keyframes exLogoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 10px rgba(3, 48, 251, .72)); }
  50% { transform: translateY(-2px); filter: drop-shadow(0 0 18px rgba(3, 48, 251, .92)) drop-shadow(0 0 10px rgba(215, 168, 63, .30)); }
}

@keyframes exStatusBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .62; transform: scale(.86); }
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--ex-blue) #050915;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #050915;
}

*::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ex-blue), var(--ex-red));
}

html,
body {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 2%, rgba(3, 48, 251, .46), transparent 34rem),
    radial-gradient(circle at 84% 4%, rgba(226, 15, 47, .28), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(215, 168, 63, .10), transparent 28rem),
    linear-gradient(180deg, #081540 0%, var(--ex-navy) 48%, #01030a 100%) !important;
  color: var(--ex-text) !important;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(3, 48, 251, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .90), rgba(0, 0, 0, .12));
}

body::after {
  background:
    radial-gradient(circle at 24% 16%, rgba(3, 48, 251, .28), transparent 24rem),
    radial-gradient(circle at 76% 20%, rgba(226, 15, 47, .18), transparent 20rem),
    linear-gradient(transparent 0 52%, rgba(255, 255, 255, .024) 52% 53%, transparent 53% 100%);
  background-size: 100% 100%, 100% 100%, 100% 4px;
  animation: exAurora 9s ease-in-out infinite;
  opacity: .85;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  background: transparent !important;
}

.header {
  position: relative;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid var(--ex-line);
  background:
    linear-gradient(180deg, rgba(6, 16, 54, .92), rgba(3, 7, 19, .94)) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .62), 0 0 34px rgba(3, 48, 251, .18);
  backdrop-filter: blur(16px);
}

.header::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(3, 48, 251, .38), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(226, 15, 47, .22), transparent 22rem);
  animation: exAurora 8s ease-in-out infinite;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ex-blue), var(--ex-blue), var(--ex-red), var(--ex-gold), transparent);
  background-size: 220% 100%;
  box-shadow: 0 0 18px rgba(3, 48, 251, .92), 0 0 10px rgba(215, 168, 63, .36);
  animation: exBorderRun 4s linear infinite;
}

.header-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: grid;
  place-items: center;
  padding: 12px 18px !important;
}

.logoimg {
  max-height: 66px;
  animation: exLogoFloat 4.2s ease-in-out infinite;
}

.menu,
.promosi {
  background: transparent !important;
}

.menu {
  gap: 6px;
  align-items: stretch;
}

.menu-item {
  position: relative;
  min-width: 90px !important;
  color: var(--ex-text) !important;
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)),
    rgba(5, 12, 35, .40) !important;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.menu-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .45s ease;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  opacity: 0;
  transform: scaleX(.35);
  background: linear-gradient(90deg, transparent, var(--ex-blue), var(--ex-red), var(--ex-gold), transparent);
  box-shadow: 0 0 14px rgba(3, 48, 251, .82);
  transition: opacity .18s ease, transform .18s ease;
}

.menu-item label {
  margin: 0;
  cursor: pointer;
  color: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .75px;
  text-transform: uppercase;
}

.menu-item-icon {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(3, 48, 251, .92), 0 0 24px rgba(3, 48, 251, .48);
  transition: transform .18s ease, color .18s ease, text-shadow .18s ease;
}

.menu-item:hover,
.menu-item.active {
  color: #fff !important;
  border-color: rgba(3, 48, 251, .72);
  background:
    linear-gradient(135deg, rgba(3, 48, 251, .34), rgba(226, 15, 47, .16) 70%, rgba(215, 168, 63, .10)),
    rgba(6, 16, 54, .72) !important;
  box-shadow: 0 0 24px rgba(3, 48, 251, .34), inset 0 0 24px rgba(3, 48, 251, .12);
  transform: translateY(-2px);
}

.menu-item:hover::before {
  transform: translateX(130%) skewX(-18deg);
}

.menu-item:hover::after,
.menu-item.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-item:hover .menu-item-icon,
.menu-item.active .menu-item-icon {
  color: var(--ex-gold) !important;
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(215, 168, 63, .56), 0 0 28px rgba(3, 48, 251, .72);
}

.hover-menu {
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .46) !important;
  border-radius: 0 !important;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  background:
    linear-gradient(180deg, rgba(8, 17, 45, .98), rgba(2, 5, 16, .98)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .70), 0 0 28px rgba(3, 48, 251, .22);
}

.hover-item {
  color: var(--ex-text) !important;
  background: transparent !important;
  transition: background .16s ease, color .16s ease, padding-left .16s ease;
}

.hover-item:hover {
  padding-left: 14px;
  color: var(--ex-gold) !important;
  background: linear-gradient(90deg, rgba(3, 48, 251, .22), rgba(226, 15, 47, .10)) !important;
}

#marquee,
#marquee-mobile {
  overflow: hidden;
  color: #fff !important;
  border-top: 1px solid rgba(215, 168, 63, .28);
  border-bottom: 1px solid rgba(3, 48, 251, .62);
  background:
    linear-gradient(90deg, #03146f 0%, var(--ex-blue) 45%, #0b1d66 68%, var(--ex-red) 100%) !important;
  box-shadow: 0 0 26px rgba(3, 48, 251, .34);
}

#marquee::after,
#marquee-mobile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: exButtonShine 5.4s ease-in-out infinite;
}

#marquee .marquee-content,
#marquee-mobile .marquee-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff !important;
  font-weight: 950;
  letter-spacing: .25px;
  text-transform: uppercase;
}

#marquee .broadcast,
#marquee-mobile .broadcast,
#timenow {
  color: #fff !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, .28) !important;
}

.login-input-field,
.form-select.login-input-field {
  min-height: 38px;
  border: 1px solid rgba(3, 48, 251, .44) !important;
  border-radius: 0 !important;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018)),
    rgba(3, 7, 19, .72) !important;
  color: var(--ex-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 0 18px rgba(3, 48, 251, .10) !important;
}

.login-input-field::placeholder {
  color: rgba(244, 247, 255, .56) !important;
}

.login-input-field:focus,
.form-select.login-input-field:focus {
  border-color: var(--ex-blue) !important;
  box-shadow: 0 0 0 3px rgba(3, 48, 251, .18), 0 0 24px rgba(3, 48, 251, .28) !important;
}

.prepend,
.input-group-text {
  border: 1px solid rgba(3, 48, 251, .34) !important;
  border-radius: 0 !important;
  background: linear-gradient(135deg, rgba(3, 48, 251, .22), rgba(226, 15, 47, .12)) !important;
  color: var(--ex-gold) !important;
}

.btn,
.btn-masuk,
.btn-daftar,
.btn-footer,
.bet-btn {
  position: relative;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  font-weight: 950 !important;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.btn::before,
.btn-masuk::before,
.btn-daftar::before,
.btn-footer::before,
.bet-btn::before {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}

.btn:hover::before,
.btn-masuk:hover::before,
.btn-daftar:hover::before,
.btn-footer:hover::before,
.bet-btn:hover::before {
  animation: exButtonShine .75s ease;
}

.btn-masuk,
.bet-btn {
  color: #fff !important;
  background:
    linear-gradient(135deg, #001fb8 0%, var(--ex-blue) 54%, #2659ff 100%) !important;
  box-shadow: 0 0 22px rgba(3, 48, 251, .44), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
}

.btn-daftar,
.btn-footer {
  color: #fff !important;
  background:
    linear-gradient(135deg, #32091a 0%, var(--ex-red) 48%, #ff3a58 100%) !important;
  box-shadow: 0 0 20px rgba(226, 15, 47, .34), inset 0 1px 0 rgba(255, 255, 255, .18) !important;
}

.btn:hover,
.btn-masuk:hover,
.btn-daftar:hover,
.bet-btn:hover,
.btn-footer:hover {
  filter: brightness(1.12) saturate(1.08);
  transform: translateY(-1px);
}

.contentdata {
  padding: 18px 0 8px;
  background: transparent !important;
}

#content-primary,
.desktop-only #mobile-slider,
.banner.shadow {
  position: relative;
  max-width: 1200px;
  margin: 0 auto !important;
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .44) !important;
  border-radius: 0 !important;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  background: rgba(3, 7, 19, .72) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .58), 0 0 38px rgba(3, 48, 251, .18) !important;
  animation: exGlowPulse 5s ease-in-out infinite;
}

.desktop-only #mobile-slider::before,
.banner.shadow::before,
.match-card::after,
.transaksi-layout::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .08), transparent);
  transform: translateY(-100%);
  animation: exScan 5.8s ease-in-out infinite;
}

.banner,
.carousel-item img {
  object-fit: cover;
}

.carousel-indicators [data-bs-target] {
  width: 9px !important;
  height: 9px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: rgba(244, 247, 255, .48) !important;
}

.carousel-indicators .active {
  width: 34px !important;
  background: linear-gradient(90deg, var(--ex-blue), var(--ex-red), var(--ex-gold)) !important;
  box-shadow: 0 0 14px rgba(3, 48, 251, .82);
}

.widget-kupon,
.widget-sbo {
  justify-content: center;
  background: transparent !important;
  padding: 18px 12px !important;
}

.iframe-kupon {
  width: min(100%, 1000px) !important;
  border: 1px solid rgba(3, 48, 251, .42);
  border-radius: 0;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  background: #050915;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .52), 0 0 28px rgba(3, 48, 251, .18);
}

.match-slider-wrap {
  max-width: 1200px !important;
}

.match-card {
  position: relative;
  border: 1px solid rgba(3, 48, 251, .42);
  border-radius: 0 !important;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  background:
    radial-gradient(circle at 50% -24%, rgba(3, 48, 251, .30), transparent 48%),
    radial-gradient(circle at 10% 110%, rgba(226, 15, 47, .18), transparent 44%),
    linear-gradient(180deg, rgba(8, 17, 45, .97), rgba(3, 7, 19, .97)) !important;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .52), 0 0 32px rgba(3, 48, 251, .18) !important;
}

.match-card::before {
  background:
    linear-gradient(90deg, transparent, rgba(3, 48, 251, .13), transparent),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .035) 8px, transparent 8px, transparent 18px) !important;
}

.league-name {
  color: var(--ex-text) !important;
}

.kickoff-time {
  color: var(--ex-gold) !important;
  text-shadow: 0 0 12px rgba(215, 168, 63, .30);
}

.odds-col,
.odds-col small {
  color: #8aa5ff !important;
}

.score-value {
  color: #fff !important;
  text-shadow: 0 0 18px rgba(3, 48, 251, .60), 0 0 28px rgba(226, 15, 47, .18);
}

.transaksi-layout {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .42);
  border-radius: 0;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  background:
    linear-gradient(135deg, rgba(3, 48, 251, .16), transparent 44%),
    linear-gradient(315deg, rgba(226, 15, 47, .12), transparent 44%),
    rgba(3, 7, 19, .82);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .56), 0 0 36px rgba(3, 48, 251, .18);
}

.transaksi-left-box {
  flex: 0 0 36%;
}

.transaksi-left-img {
  border: 1px solid rgba(3, 48, 251, .32);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .48)) saturate(1.14) contrast(1.06);
}

.transaksi-name {
  color: var(--ex-gold);
  font-size: 1rem !important;
  letter-spacing: .9px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(215, 168, 63, .28);
}

.transaksi-header {
  min-width: 112px !important;
  height: 38px !important;
  border: 1px solid rgba(3, 48, 251, .36) !important;
  border-radius: 0 !important;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)),
    rgba(5, 12, 35, .92) !important;
  color: var(--ex-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 10px 18px rgba(0, 0, 0, .30);
}

.transaksi-header.is-online::before {
  background-color: var(--ex-gold) !important;
  box-shadow: 0 0 10px rgba(215, 168, 63, .95), 0 0 20px rgba(3, 48, 251, .55) !important;
  animation: exStatusBlink 1.55s ease-in-out infinite;
}

.transaksi-header.is-offline {
  color: rgba(244, 247, 255, .48) !important;
  background: rgba(7, 10, 22, .68) !important;
  border-color: rgba(226, 15, 47, .28) !important;
  opacity: .68 !important;
}

.bantuan {
  max-width: 1200px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .32);
  border-radius: 0;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  background:
    linear-gradient(90deg, rgba(3, 48, 251, .14), rgba(226, 15, 47, .08)),
    rgba(3, 7, 19, .78) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .32);
}

.bantuan-content {
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 14px 12px !important;
}

.bantuan-item {
  padding: 7px 10px;
  color: var(--ex-muted) !important;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .45px;
  transition: background .16s ease, color .16s ease, text-shadow .16s ease;
}

.bantuan-item:hover {
  color: var(--ex-gold) !important;
  background: rgba(3, 48, 251, .14);
  text-shadow: 0 0 12px rgba(215, 168, 63, .32);
}

.bantuan-devider {
  color: rgba(215, 168, 63, .34) !important;
}

.footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(3, 48, 251, .22), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(226, 15, 47, .16), transparent 24rem),
    linear-gradient(180deg, rgba(5, 12, 35, .86), #02040b) !important;
  border-top: 1px solid rgba(3, 48, 251, .25);
}

.footer h1 {
  color: #ffffff !important;
  font-size: 25px !important;
  font-weight: 950;
  letter-spacing: .35px;
  text-shadow: 0 0 18px rgba(3, 48, 251, .56), 0 0 12px rgba(215, 168, 63, .18);
}

.footer h1::first-letter {
  color: var(--ex-gold);
}

.footer p,
.copyright {
  color: var(--ex-muted) !important;
}

.provider-group img,
.guidelines-content img {
  max-width: min(100%, 900px);
  opacity: .94;
  filter: saturate(1.14) contrast(1.08) drop-shadow(0 0 18px rgba(3, 48, 251, .16));
}

.footer-group {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 12px !important;
  border-top: 1px solid rgba(3, 48, 251, .18);
}

.btn-aduan2 {
  color: var(--ex-gold) !important;
  border: 1px solid rgba(215, 168, 63, .55) !important;
  background:
    linear-gradient(135deg, rgba(215, 168, 63, .10), rgba(3, 48, 251, .16)) !important;
  -webkit-text-fill-color: currentColor !important;
  text-shadow: 0 0 12px rgba(215, 168, 63, .30) !important;
}

#mySidenav,
.sidenav {
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .62));
}

.modal-content,
#informasi-menu {
  overflow: hidden;
  border: 1px solid rgba(3, 48, 251, .42) !important;
  border-radius: 0 !important;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  background:
    linear-gradient(180deg, rgba(8, 17, 45, .98), rgba(2, 5, 16, .98)) !important;
  color: var(--ex-text) !important;
  box-shadow: 0 32px 86px rgba(0, 0, 0, .78), 0 0 40px rgba(3, 48, 251, .20) !important;
}

.imgpop {
  border-radius: 0 !important;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: 0 0 0 1px rgba(3, 48, 251, .44), 0 32px 86px rgba(0, 0, 0, .78) !important;
}

.modal-backdrop.show {
  opacity: .88 !important;
  background: #000 !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(3, 48, 251, .38), transparent 22rem),
      radial-gradient(circle at 86% 4%, rgba(226, 15, 47, .20), transparent 20rem),
      linear-gradient(180deg, #081540 0%, #02040b 100%) !important;
  }

  .header-content {
    max-width: 100%;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }

  .logo {
    width: 100% !important;
    min-height: 72px;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
      linear-gradient(90deg, transparent, rgba(3, 48, 251, .16), rgba(226, 15, 47, .08), transparent);
  }

  .logoimg {
    width: auto !important;
    max-width: min(78vw, 260px) !important;
    max-height: 54px;
    object-fit: contain;
  }

  .header-content > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-content .mslider,
  .header-content .login,
  .header-content .menu-mobile,
  .header-content .menu-content,
  .header-content .promosi {
    width: 100% !important;
  }

  .header-content .menu,
  .header-content > .promosi .desktop-only {
    display: none !important;
  }

  #marquee-mobile {
    order: 2;
    width: 100% !important;
  }

  .mslider.mobile-only {
    order: 3;
  }

  .login.mobile-only {
    order: 4;
    width: 100% !important;
    padding: 0 14px 14px;
  }

  #mobilelogin,
  #mobile-daftar-form,
  #mobile-changepassword-form {
    padding: 14px;
    border: 1px solid rgba(3, 48, 251, .38);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
    background: rgba(3, 7, 19, .84);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .54), 0 0 24px rgba(3, 48, 251, .16);
  }

  .menu-mobile {
    order: 5;
    position: sticky;
    top: 0;
    z-index: 25;
    width: 100% !important;
    overflow: hidden !important;
    border-top: 1px solid rgba(3, 48, 251, .45) !important;
    border-bottom: 1px solid rgba(226, 15, 47, .32) !important;
    background: #030713 !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .42), 0 0 22px rgba(3, 48, 251, .14);
  }

  #menu-mobile {
    height: 66px !important;
    background:
      linear-gradient(90deg, rgba(3, 48, 251, .34), rgba(226, 15, 47, .16)) !important;
    scrollbar-width: none;
  }

  #menu-mobile::-webkit-scrollbar {
    display: none;
  }

  #menu-mobile .menu-item {
    min-width: 76px !important;
    height: 58px !important;
    gap: 6px !important;
    border: 0;
    background: transparent !important;
    clip-path: none;
  }

  #menu-mobile .menu-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(3, 48, 251, .72));
  }

  #menu-mobile .menu-item label {
    font-size: 10px !important;
    line-height: 1.05;
    white-space: normal;
    text-align: center;
  }

  .mobile-only .banner.shadow {
    margin: 16px !important;
    min-height: 150px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .52), 0 0 24px rgba(3, 48, 251, .18) !important;
  }

  .mobile-only .banner.shadow img {
    object-fit: cover;
  }

  .widget-kupon,
  .widget-sbo {
    padding: 14px !important;
  }

  .match-slider-wrap {
    padding: 0 !important;
    margin: 8px 0 14px !important;
  }

  .match-card {
    min-height: 178px;
    padding: 14px 12px 16px !important;
  }

  .league-name {
    font-size: 12px !important;
  }

  .kickoff-time {
    font-size: 12px !important;
  }

  .team-logo {
    width: 40px !important;
    height: 40px !important;
  }

  .team-name {
    font-size: 11px !important;
  }

  .score-value {
    font-size: 23px !important;
  }

  .bet-btn {
    min-width: 84px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  .transaksi-layout {
    margin: 0 14px;
    padding: 16px;
  }

  .transaksi-left-box {
    width: 100%;
    flex: auto;
  }

  .transaksi-list-bank,
  .transaksi-list-other {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100%;
  }

  .transaksi-header {
    min-width: 0 !important;
    width: 100%;
    font-size: .95rem !important;
    height: 40px !important;
  }

  .bantuan {
    margin: 16px 14px 0;
  }

  .bantuan-content {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bantuan-item {
    text-align: center;
    border: 1px solid rgba(3, 48, 251, .18);
    background: rgba(255, 255, 255, .035);
  }

  .footer h1 {
    padding: 0 14px;
    font-size: 20px !important;
  }

  .footer p {
    padding: 0 14px;
  }

  .footer-group {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .my-navbar {
    border-top: 1px solid rgba(3, 48, 251, .45) !important;
    background:
      linear-gradient(180deg, rgba(6, 16, 54, .96), rgba(2, 5, 16, .98)) !important;
    box-shadow: 0 -14px 34px rgba(0, 0, 0, .55), 0 0 22px rgba(3, 48, 251, .18);
  }

  .navbar-item {
    color: var(--ex-text) !important;
  }

  .navbar-item-content {
    color: var(--ex-text) !important;
    text-shadow: 0 0 10px rgba(3, 48, 251, .38);
  }

  .navbar-item:hover,
  .navbar-item:active {
    color: var(--ex-gold) !important;
  }
}