* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: #161616;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
  }
  
  body.nav-open {
    overflow: hidden;
  }

  /* POPUP SULTAN STYLE */
.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(0, 238, 255, .22), transparent 35%),
    radial-gradient(circle at bottom, rgba(255, 0, 102, .18), transparent 35%),
    rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  backdrop-filter: blur(6px);
}

.popup-content {
  position: relative;
  background: linear-gradient(135deg, #07131f, #102b3a, #111827);
  color: #ffffff;
  padding: 34px 28px;
  text-align: center;
  border-radius: 18px;
  max-width: 330px;
  width: calc(100% - 34px);
  border: 1px solid rgba(0, 238, 255, .35);
  box-shadow:
    0 0 18px rgba(0, 238, 255, .75),
    0 0 38px rgba(255, 0, 102, .35),
    inset 0 0 22px rgba(255,255,255,.05);
  overflow: hidden;
  animation: popupZoom .55s ease both, popupGlow 2.2s ease-in-out infinite alternate;
}

.popup-content::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 238, 255, .55), transparent 65%);
  filter: blur(6px);
}

.popup-content::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 0, 102, .5), transparent 65%);
  filter: blur(6px);
}

.popup-content h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #00eeff;
  font-size: 21px;
  line-height: 1.25;
  text-shadow:
    0 0 10px rgba(0,238,255,.9),
    0 0 22px rgba(0,238,255,.55);
}

.popup-content p {
  position: relative;
  z-index: 2;
  color: #e7fbff;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 18px;
}

.popup-content button {
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #ff0066, #ff7700, #ffcc00);
  background-size: 220% 220%;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .4px;
  box-shadow:
    0 0 12px rgba(255,0,102,.85),
    0 0 26px rgba(255,204,0,.55);
  transition: .25s ease;
  animation: popupButtonMove 3s linear infinite;
}

.popup-content button:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 0 20px rgba(255,204,0,.95),
    0 0 42px rgba(255,0,102,.7);
}

@keyframes popupZoom {
  from { opacity: 0; transform: scale(.78) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes popupGlow {
  from {
    box-shadow:
      0 0 16px rgba(0, 238, 255, .65),
      0 0 32px rgba(255, 0, 102, .28),
      inset 0 0 22px rgba(255,255,255,.05);
  }
  to {
    box-shadow:
      0 0 24px rgba(0, 238, 255, .95),
      0 0 48px rgba(255, 0, 102, .45),
      inset 0 0 28px rgba(255,255,255,.08);
  }
}

@keyframes popupButtonMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


  header {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav.desktop-nav {
    display: flex;
    gap: 20px;
  }
  
  nav.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  nav.desktop-nav a:hover {
    color: #00EEFF;
  }
  
  .actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .register {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  
  .register:hover {
    color: #00EEFF;
    border-color: #00EEFF;
  }
  
  .login {
    background-color: #00EEFF;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(25, 239, 232, 0.49);
    transition: 0.3s;
  }
  
  .login:hover {
    background-color: #00EEFF;
    box-shadow: 0 0 15px rgba(25, 239, 232, 0.49);
  }
  
  .right-mobile {
    display: none;
    align-items: center;
    gap: 10px;
  }
  
  .hamburger {
    display: none; /* Tampilkan di mobile pakai media query */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    z-index: 10000;
  }
  
  .hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Saat tombol aktif (menu kebuka) */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Menghilang */
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  
  
  .mobile-register,
  .mobile-login {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-register {
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .mobile-login {
    background-color: #00EEFF;
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    border-top: 1px solid #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    animation: dropdownFade 0.3s ease;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-nav a {
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #333;
    background-color: #000000;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .mobile-nav a:hover {
    background-color: #333;
    color: #00EEFF;
  }
  
  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 992px) {
    nav.desktop-nav,
    .actions {
      display: none;
    }
  
    .right-mobile {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .logo img {
      height: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .mobile-register,
    .mobile-login {
      padding: 5px 8px;
      font-size: 11px;
    }
  
    .right-mobile {
      gap: 5px;
    }
  }
  
  .marquee-container {
    background-color: #242000;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .carousel-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .carousel-slide {
    display: none;
  }
  
  .carousel-slide img {
    width: 100%;
    display: block;
  }
  
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
  }
  
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .prev {
    left: 15px;
  }
  
  .next {
    right: 15px;
  }
  
  body.nav-open .carousel-container .prev,
  body.nav-open .carousel-container .next {
    display: none;
  }
  
  .dot-container {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 15px;
    z-index: 5;
  }
  
  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .dot.active,
  .dot:hover {
    background-color: #ff7700;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  
  .live-score {
    background: rgb(20, 20, 20);
    padding: 30px 15px;
    margin: 20px 0;
    width: 100%;
    text-align: center;
  }
  
  .live-score .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .live-score .buttons a {
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }
  /* JADWAL BTN BIAR SAMA FLEX */
.live-score .buttons .jadwal-btn {
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #2bd6e2;
  color: #fff;

  box-shadow: 0 0 10px #2bcde2, 0 0 20px #2baee2;
  transition: 0.3s;
}

/* HOVER */
.live-score .buttons .jadwal-btn:hover {
  box-shadow: 0 0 20px #2bc0e2, 0 0 40px #2ba2e2;
  transform: translateY(-2px);
}
@media (max-width: 768px) {

/* ================= BUTTON LIVE SCORE FIX ================= */

.live-score .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* SEMUA BUTTON */
.live-score .buttons a {
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg, #ff0066, #ff7700) !important;
  color: #fff !important;

  box-shadow: 0 0 10px #ff0066;
  transition: 0.3s;
}

/* HOVER */
.live-score .buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #ff7700;
  background: linear-gradient(90deg, #ff7700, #ff0066) !important;
}

/* JADWAL BTN (kalau ada class khusus) */
.live-score .buttons .jadwal-btn {
  background: linear-gradient(90deg, #ff0066, #ff7700) !important;
  color: #fff !important;
}

/* EFFECT CAHAYA */
.live-score .buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
}

.live-score .buttons a:hover::before {
  animation: shine 0.8s ease;
}

/* ANIMASI */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px #2bcae2, 0 0 20px #2ba5e2;
  }
  50% {
    box-shadow: 0 0 20px #2bcde2, 0 0 40px #2babe2;
  }
}

.live-score .buttons .jadwal-btn {
  animation: glow 2s infinite;
}
  
  .masuk {
    background: linear-gradient(90deg, #00EEFF, #007380);
    color: #000;
    box-shadow: 0 0 15px #00EEFF;
  }
  
  .daftar {
    background: linear-gradient(90deg, #00EEFF, #007380);
    color: #000;
    box-shadow: 0 0 15px #00EEFF;
  }
  
  .cta-button {
    margin-top: 25px;
    background: linear-gradient(90deg, #ff0066, #ff7700);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .cta-button:hover {
    transform: scale(1.1);
  }
  
  footer {
    background: #111;
    color: #ff7700;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    width: 100%;
  }
  .money-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Biar ga ganggu klik */
    overflow: hidden;
    z-index: 9999;
  }
  
  .money {
    position: absolute;
    top: -50px;
    width: 40px;
    height: 40px;
    background-image: url('CAHAYA.png'); /* Gambar uang */
    background-size: cover;
    opacity: 0.5;
    animation: fall linear infinite;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }
  /* Animasikan tombol saat ditendang */
@keyframes tendangButton {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    transform: translate(-10px, -10px) scale(1.1);
  }
  40% {
    transform: translate(0px, 0px) scale(1);
  }
  60% {
    transform: translate(100px, -30px) scale(1.2);
  }
  80% {
    transform: translate(300px, -80px) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(600px, -150px) scale(0.3);
    opacity: 0;
  }
}

/* Tambahkan class ini untuk aktifkan animasi */
#enterButton.tendang {
  animation: tendangButton 1.2s forwards ease-in;
}


/* =========================================================
   FINAL FIX BUTTON WARNA-WARNI 128SPORTS
   ========================================================= */

.live-score .buttons{
  display:flex !important;
  justify-content:center !important;
  gap:15px !important;
  flex-wrap:wrap !important;
  margin-bottom:25px !important;
}

.live-score .buttons a,
.live-score .buttons .masuk,
.live-score .buttons .daftar,
.live-score .buttons .jadwal-btn{
  position:relative !important;
  overflow:hidden !important;
  padding:12px 22px !important;
  border-radius:50px !important;
  text-decoration:none !important;
  font-weight:800 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
  border:none !important;
  transition:.3s ease !important;
  animation:none !important;
}

/* BUTTON 1 - LINK SLOT QRIS */
.live-score .buttons a:nth-child(1){
  background:linear-gradient(45deg,#ff0066,#ff7700) !important;
  box-shadow:0 0 12px #ff0066,0 0 25px rgba(255,119,0,.75) !important;
}

/* BUTTON 2 - LIVECHAT RESMI */
.live-score .buttons a:nth-child(2){
  background:linear-gradient(45deg,#00ffee,#0077ff) !important;
  box-shadow:0 0 12px #00ffee,0 0 25px rgba(0,119,255,.75) !important;
}

/* BUTTON 3 - KLASEMEN */
.live-score .buttons a:nth-child(3){
  background:linear-gradient(45deg,#00ff99,#00cc66) !important;
  box-shadow:0 0 12px #00ff99,0 0 25px rgba(0,204,102,.75) !important;
}

/* BUTTON 4 - BERITA BOLA */
.live-score .buttons a:nth-child(4){
  background:linear-gradient(45deg,#ffcc00,#ff0066) !important;
  box-shadow:0 0 12px #ffcc00,0 0 25px rgba(255,0,102,.75) !important;
}

.live-score .buttons a:hover{
  transform:translateY(-4px) scale(1.05) !important;
  filter:brightness(1.18) !important;
}

/* efek cahaya lewat */
.live-score .buttons a::before{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  left:-80% !important;
  width:55% !important;
  height:100% !important;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.65),transparent) !important;
  transform:skewX(-22deg) !important;
  pointer-events:none !important;
}

.live-score .buttons a:hover::before{
  animation:shineButton .8s ease !important;
}

@keyframes shineButton{
  0%{left:-80%}
  100%{left:130%}
}

@media(max-width:768px){
  .live-score .buttons{
    flex-direction:column !important;
  }

  .live-score .buttons a{
    width:100% !important;
  }
}
@media (max-width: 768px) {

  .live-score .buttons {
    gap: 10px !important;
  }

}
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: #161616;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
  }
  
  body.nav-open {
    overflow: hidden;
  }

  /* POPUP SULTAN STYLE */
.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(0, 238, 255, .22), transparent 35%),
    radial-gradient(circle at bottom, rgba(255, 0, 102, .18), transparent 35%),
    rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  backdrop-filter: blur(6px);
}

.popup-content {
  position: relative;
  background: linear-gradient(135deg, #07131f, #102b3a, #111827);
  color: #ffffff;
  padding: 34px 28px;
  text-align: center;
  border-radius: 18px;
  max-width: 330px;
  width: calc(100% - 34px);
  border: 1px solid rgba(0, 238, 255, .35);
  box-shadow:
    0 0 18px rgba(0, 238, 255, .75),
    0 0 38px rgba(255, 0, 102, .35),
    inset 0 0 22px rgba(255,255,255,.05);
  overflow: hidden;
  animation: popupZoom .55s ease both, popupGlow 2.2s ease-in-out infinite alternate;
}

.popup-content::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 238, 255, .55), transparent 65%);
  filter: blur(6px);
}

.popup-content::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 0, 102, .5), transparent 65%);
  filter: blur(6px);
}

.popup-content h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #00eeff;
  font-size: 21px;
  line-height: 1.25;
  text-shadow:
    0 0 10px rgba(0,238,255,.9),
    0 0 22px rgba(0,238,255,.55);
}

.popup-content p {
  position: relative;
  z-index: 2;
  color: #e7fbff;
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 18px;
}

.popup-content button {
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #ff0066, #ff7700, #ffcc00);
  background-size: 220% 220%;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .4px;
  box-shadow:
    0 0 12px rgba(255,0,102,.85),
    0 0 26px rgba(255,204,0,.55);
  transition: .25s ease;
  animation: popupButtonMove 3s linear infinite;
}

.popup-content button:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 0 20px rgba(255,204,0,.95),
    0 0 42px rgba(255,0,102,.7);
}

@keyframes popupZoom {
  from { opacity: 0; transform: scale(.78) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes popupGlow {
  from {
    box-shadow:
      0 0 16px rgba(0, 238, 255, .65),
      0 0 32px rgba(255, 0, 102, .28),
      inset 0 0 22px rgba(255,255,255,.05);
  }
  to {
    box-shadow:
      0 0 24px rgba(0, 238, 255, .95),
      0 0 48px rgba(255, 0, 102, .45),
      inset 0 0 28px rgba(255,255,255,.08);
  }
}

@keyframes popupButtonMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


  header {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav.desktop-nav {
    display: flex;
    gap: 20px;
  }
  
  nav.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
  }
  
  nav.desktop-nav a:hover {
    color: #00EEFF;
  }
  
  .actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .register {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }
  
  .register:hover {
    color: #00EEFF;
    border-color: #00EEFF;
  }
  
  .login {
    background-color: #00EEFF;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(25, 239, 232, 0.49);
    transition: 0.3s;
  }
  
  .login:hover {
    background-color: #00EEFF;
    box-shadow: 0 0 15px rgba(25, 239, 232, 0.49);
  }
  
  .right-mobile {
    display: none;
    align-items: center;
    gap: 10px;
  }
  
  .hamburger {
    display: none; /* Tampilkan di mobile pakai media query */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    z-index: 10000;
  }
  
  .hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Saat tombol aktif (menu kebuka) */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Menghilang */
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  
  
  .mobile-register,
  .mobile-login {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-register {
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .mobile-login {
    background-color: #00EEFF;
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    border-top: 1px solid #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    animation: dropdownFade 0.3s ease;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-nav a {
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #333;
    background-color: #000000;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .mobile-nav a:hover {
    background-color: #333;
    color: #00EEFF;
  }
  
  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 992px) {
    nav.desktop-nav,
    .actions {
      display: none;
    }
  
    .right-mobile {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .logo img {
      height: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .mobile-register,
    .mobile-login {
      padding: 5px 8px;
      font-size: 11px;
    }
  
    .right-mobile {
      gap: 5px;
    }
  }
  
  .marquee-container {
    background-color: #242000;
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .carousel-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .carousel-slide {
    display: none;
  }
  
  .carousel-slide img {
    width: 100%;
    display: block;
  }
  
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 10;
  }
  
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .prev {
    left: 15px;
  }
  
  .next {
    right: 15px;
  }
  
  body.nav-open .carousel-container .prev,
  body.nav-open .carousel-container .next {
    display: none;
  }
  
  .dot-container {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 15px;
    z-index: 5;
  }
  
  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .dot.active,
  .dot:hover {
    background-color: #ff7700;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  
  .live-score {
    background: rgb(20, 20, 20);
    padding: 30px 15px;
    margin: 20px 0;
    width: 100%;
    text-align: center;
  }
  
  .live-score .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .live-score .buttons a {
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }
  /* JADWAL BTN BIAR SAMA FLEX */
.live-score .buttons .jadwal-btn {
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #2bd6e2;
  color: #fff;

  box-shadow: 0 0 10px #2bcde2, 0 0 20px #2baee2;
  transition: 0.3s;
}

/* HOVER */
.live-score .buttons .jadwal-btn:hover {
  box-shadow: 0 0 20px #2bc0e2, 0 0 40px #2ba2e2;
  transform: translateY(-2px);
}
@media (max-width: 768px) {

/* ================= BUTTON LIVE SCORE FIX ================= */

.live-score .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* SEMUA BUTTON */
.live-score .buttons a {
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg, #ff0066, #ff7700) !important;
  color: #fff !important;

  box-shadow: 0 0 10px #ff0066;
  transition: 0.3s;
}

/* HOVER */
.live-score .buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px #ff7700;
  background: linear-gradient(90deg, #ff7700, #ff0066) !important;
}

/* JADWAL BTN (kalau ada class khusus) */
.live-score .buttons .jadwal-btn {
  background: linear-gradient(90deg, #ff0066, #ff7700) !important;
  color: #fff !important;
}

/* EFFECT CAHAYA */
.live-score .buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
}

.live-score .buttons a:hover::before {
  animation: shine 0.8s ease;
}

/* ANIMASI */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px #2bcae2, 0 0 20px #2ba5e2;
  }
  50% {
    box-shadow: 0 0 20px #2bcde2, 0 0 40px #2babe2;
  }
}

.live-score .buttons .jadwal-btn {
  animation: glow 2s infinite;
}
  
  .masuk {
    background: linear-gradient(90deg, #00EEFF, #007380);
    color: #000;
    box-shadow: 0 0 15px #00EEFF;
  }
  
  .daftar {
    background: linear-gradient(90deg, #00EEFF, #007380);
    color: #000;
    box-shadow: 0 0 15px #00EEFF;
  }
  
  .cta-button {
    margin-top: 25px;
    background: linear-gradient(90deg, #ff0066, #ff7700);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .cta-button:hover {
    transform: scale(1.1);
  }
  
  footer {
    background: #111;
    color: #ff7700;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    width: 100%;
  }
  .money-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Biar ga ganggu klik */
    overflow: hidden;
    z-index: 9999;
  }
  
  .money {
    position: absolute;
    top: -50px;
    width: 40px;
    height: 40px;
    background-image: url('CAHAYA.png'); /* Gambar uang */
    background-size: cover;
    opacity: 0.5;
    animation: fall linear infinite;
  }
  
  @keyframes fall {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }
  /* Animasikan tombol saat ditendang */
@keyframes tendangButton {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  20% {
    transform: translate(-10px, -10px) scale(1.1);
  }
  40% {
    transform: translate(0px, 0px) scale(1);
  }
  60% {
    transform: translate(100px, -30px) scale(1.2);
  }
  80% {
    transform: translate(300px, -80px) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(600px, -150px) scale(0.3);
    opacity: 0;
  }
}

/* Tambahkan class ini untuk aktifkan animasi */
#enterButton.tendang {
  animation: tendangButton 1.2s forwards ease-in;
}


/* =========================================================
   FINAL FIX BUTTON WARNA-WARNI 128SPORTS
   ========================================================= */

.live-score .buttons{
  display:flex !important;
  justify-content:center !important;
  gap:15px !important;
  flex-wrap:wrap !important;
  margin-bottom:25px !important;
}

.live-score .buttons a,
.live-score .buttons .masuk,
.live-score .buttons .daftar,
.live-score .buttons .jadwal-btn{
  position:relative !important;
  overflow:hidden !important;
  padding:12px 22px !important;
  border-radius:50px !important;
  text-decoration:none !important;
  font-weight:800 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
  border:none !important;
  transition:.3s ease !important;
  animation:none !important;
}

/* BUTTON 1 - LINK SLOT QRIS */
.live-score .buttons a:nth-child(1){
  background:linear-gradient(45deg,#ff0066,#ff7700) !important;
  box-shadow:0 0 12px #ff0066,0 0 25px rgba(255,119,0,.75) !important;
}

/* BUTTON 2 - LIVECHAT RESMI */
.live-score .buttons a:nth-child(2){
  background:linear-gradient(45deg,#00ffee,#0077ff) !important;
  box-shadow:0 0 12px #00ffee,0 0 25px rgba(0,119,255,.75) !important;
}

/* BUTTON 3 - KLASEMEN */
.live-score .buttons a:nth-child(3){
  background:linear-gradient(45deg,#00ff99,#00cc66) !important;
  box-shadow:0 0 12px #00ff99,0 0 25px rgba(0,204,102,.75) !important;
}

/* BUTTON 4 - BERITA BOLA */
.live-score .buttons a:nth-child(4){
  background:linear-gradient(45deg,#ffcc00,#ff0066) !important;
  box-shadow:0 0 12px #ffcc00,0 0 25px rgba(255,0,102,.75) !important;
}

.live-score .buttons a:hover{
  transform:translateY(-4px) scale(1.05) !important;
  filter:brightness(1.18) !important;
}

/* efek cahaya lewat */
.live-score .buttons a::before{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  left:-80% !important;
  width:55% !important;
  height:100% !important;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.65),transparent) !important;
  transform:skewX(-22deg) !important;
  pointer-events:none !important;
}

.live-score .buttons a:hover::before{
  animation:shineButton .8s ease !important;
}

@keyframes shineButton{
  0%{left:-80%}
  100%{left:130%}
}

@media(max-width:768px){
  .live-score .buttons{
    flex-direction:column !important;
  }

  .live-score .buttons a{
    width:100% !important;
  }
}
@media (max-width: 768px) {

  .live-score .buttons {
    gap: 10px !important;
  }

}


/* =========================================================
   FINAL FIX MOBILE BUTTON: 2 KOLOM x 2 BARIS
   Ini harus ada PALING BAWAH agar tidak ketimpa CSS lama.
   ========================================================= */
@media (max-width: 768px) {
  .live-score .buttons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 10px !important;
    margin: 18px auto 24px !important;
    width: 100% !important;
    max-width: 390px !important;
  }

  .live-score .buttons a,
  .live-score .buttons .masuk,
  .live-score .buttons .daftar,
  .live-score .buttons .jadwal-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 9px 8px !important;
    font-size: 11.5px !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    letter-spacing: .2px !important;
  }

  .live-score .buttons a:hover {
    transform: translateY(-2px) scale(1.02) !important;
  }
}

/* Kalau layar super kecil, tetap 2 kolom tapi lebih kecil */
@media (max-width: 380px) {
  .live-score .buttons {
    gap: 10px !important;
    padding: 0 6px !important;
  }

  .live-score .buttons a,
  .live-score .buttons .masuk,
  .live-score .buttons .daftar,
  .live-score .buttons .jadwal-btn {
    font-size: 10.5px !important;
    min-height: 44px !important;
    padding: 8px 6px !important;
  }
}

.live-wrap{
    width:100%;
    max-width:1100px;
    margin:20px auto;
}