.banner-mobile-top {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 0px;
    text-align: center;
  }
  
  .banner-mobile-top img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .banner-mobile-top {
    margin-bottom: 0 !important;
  }

  #matchFilterBar {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .d-flex.filter-button-group {
    margin-top: 0 !important;
  }
#stickyBannerFull {
  position: fixed;
  bottom: 60px; /* biar pas di atas navbar */
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #111;
  padding-bottom: 10px; /* â¬…ï¸ tambahin ini */
}

#stickyBannerFull img {
  width: 100%;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  margin: auto;
  image-rendering: auto;
  border-radius: 0;
}

.svg-border-button {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  background: #000;
  border-radius: 999px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
}

.svg-border-button span {
  position: relative;
  z-index: 2;
}

.svg-border-button {
  position: relative;
  width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  background: #000;
  border-radius: 999px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  margin: 0 auto;
}

.svg-border-button span {
  position: relative;
  z-index: 2;
}

.svg-border-button {
  position: relative;
  width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  background: #000;
  border-radius: 999px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
}

.svg-border-button span {
  position: relative;
  z-index: 2;
}

.svg-border-button svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 60px;
  z-index: 1;
}

/* Border tracer keliling */
.trace-path {
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 220 220;
  stroke-dashoffset: 0;
  animation: dashLoop 2s linear infinite;
}
@keyframes dashLoop {
  to { stroke-dashoffset: -440; }
}

/* Cahaya melintas dalam */
.inner-light {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  transform: skewX(-25deg);
  animation: lightSweep 1.2s linear infinite;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
@keyframes lightSweep {
  0% { left: -60%; }
  100% { left: 120%; }
}

/* ======================== */
/*         WARNA            */
/* ======================== */

/* MAGENTA */
.neon-btn.magenta {
  box-shadow: inset 0 0 12px rgba(255, 0, 204, 0.5);
  animation: pulseMagenta 2s ease-in-out infinite;
}
.trace-magenta {
  stroke: #ff00cc;
  filter: drop-shadow(0 0 6px #ff00cc);
}
.light-magenta {
  background: linear-gradient(120deg, transparent, #ff00cc, transparent);
}
@keyframes pulseMagenta {
  0%, 100% { box-shadow: inset 0 0 8px rgba(255, 0, 204, 0.2); }
  50%      { box-shadow: inset 0 0 16px rgba(255, 0, 204, 0.5); }
}

/* YELLOW */
.neon-btn.yellow {
  box-shadow: inset 0 0 12px rgba(255, 230, 0, 0.5);
  animation: pulseYellow 2s ease-in-out infinite;
}
.trace-yellow {
  stroke: #ffe600;
  filter: drop-shadow(0 0 6px #ffe600);
}
.light-yellow {
  background: linear-gradient(120deg, transparent, #ffe600, transparent);
}
@keyframes pulseYellow {
  0%, 100% { box-shadow: inset 0 0 8px rgba(255, 230, 0, 0.2); }
  50%      { box-shadow: inset 0 0 16px rgba(255, 230, 0, 0.5); }
}

/* RED */
.neon-btn.red {
  box-shadow: inset 0 0 12px rgba(255, 58, 58, 0.5);
  animation: pulseRed 2s ease-in-out infinite;
}
.trace-red {
  stroke: #ff3a3a;
  filter: drop-shadow(0 0 6px #ff3a3a);
}
.light-red {
  background: linear-gradient(120deg, transparent, #ff3a3a, transparent);
}
@keyframes pulseRed {
  0%, 100% { box-shadow: inset 0 0 8px rgba(255, 58, 58, 0.2); }
  50%      { box-shadow: inset 0 0 16px rgba(255, 58, 58, 0.5); }
}