#EmailCheck {
  display: none;
}

@keyframes rotateGear {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#gearContainer i {
  animation: rotateGear 2s linear infinite;
}
@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  to {
    left: 100%;
  }
}

@keyframes moveBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100px 0;
  }
}

.winrate-bar-container {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.winrate-bar-background {
  transition: width 2s ease;
}

.winrate-bar-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}

#serviceWinrateBtn {
  position: relative;
  margin: 20px 80px;
  display: block;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 10px 20px;
  border: 2px solid #b6b6b6;
  border-radius: 5px;
  background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhE-T4Y1j1XDQABEI4GEoRdYvmIaGhC6bpf7HFFGFRGUSx7odowPChGMLq3kSqw1xs_Jit4viRuUadD7sXL4-qebK13TaYrS7gGRibdUM38HAGHX10TOB5-G5oihLkzilgMiQL63X6GsyfAfwtmyG3VzRxB_yP8q_NsqHk_rDdnkZ4qh-hrBJLfTu5rKt7q/s1600/oborback.jpg) !important;
  background-size: 100% !important;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #666;
  overflow: visible;
}

#serviceWinrateBtn .fas.fa-wrench {
  position: absolute;
  top: -11px;
  right: -17px;
  font-size: 28px;
  color: #ffd700;
  filter: grayscale(100%) brightness(150%);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

#serviceWinrateBtn:hover {
  background: linear-gradient(145deg, #303030, #505050);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 1);
}

#serviceWinrateBtn:focus {
  outline: none;
  box-shadow: 0 0 12px #ffd700;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

#serviceWinrateBtn {
  animation: heartbeat 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.blink-text {
  animation: blink 1s linear infinite;
}

.w-\[120px\] {
  width: 180px !important;
}

img[alt="vip_custom_icon_url"] {
  width: 200%;
  height: 200%;
  margin-top: -25px;
}

.text-meta {
  transition: all 0.3s ease;
  font-size: small;
  background: rgb(62, 4, 196);
  color: #ffffff;
  text-align: center;
  text-wrap: nowrap;
  position: absolute;
  width: 100%;
  border: 1px solid var(--base-color);
  padding: 5px;
  border-radius: 10px;
}

/* Hanya tampil di perangkat mobile (lebar layar max 768px) */
@media only screen and (max-width: 768px) {
  .cust-banner-mobile {
    display: flex; /* Flexbox untuk membuat gambar berjejer */
    justify-content: center; /* Posisikan gambar di tengah */
    align-items: center; /* Posisikan vertikal di tengah */
    gap: 10px; /* Jarak antar gambar */
    margin: 20px auto;
    width: 100%;
    overflow: hidden;
  }

  .cust-banner-mobile a {
    display: block;
    width: 32%; /* Lebar 32% untuk 3 gambar */
    height: auto;
  }

  .cust-banner-mobile img {
    width: 100%; /* Gambar memenuhi elemen <a> */
    height: auto;
    border: none;
  }
}

/* Sembunyikan banner di layar yang lebih besar */
@media only screen and (min-width: 769px) {
  .cust-banner-mobile {
    display: none; /* Sembunyikan banner */
  }
}

.cheat-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  /* Jarak horizontal antar elemen */
  row-gap: 15px;
  /* Jarak vertikal antar elemen */
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f4f4f41c;
  border: 1px solid #dddddd18;
  border-radius: 10px;
  justify-content: space-evenly;
}

.cheat-box {
  display: flex;
  flex-direction: column;
  /* Elemen di dalam kolom tersusun vertikal */
  align-items: center;
  text-align: center;
  background-color: #ffffff13;
  border: 1px solid #9c34341c;
  border-radius: 10px;
  padding: 10px;
  width: 100px;
  /* Lebar kotak */
  height: 200px;
  /* Tinggi kotak */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.cheat-box:hover {
  transform: translateY(-5px);
  /* Efek hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Gambar cheat */
.cheat-image {
  width: 80px;
  /* Ukuran gambar */
  height: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px; /* Lebar toggle switch */
  height: 19px; /* Tinggi toggle switch */
  margin-bottom: 10px; /* Jarak bawah jika diperlukan */
}

.switch input {
  opacity: 0; /* Sembunyikan input asli */
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc; /* Warna background default */
  transition: 0.4s; /* Animasi transisi */
  border-radius: 19px; /* Membuat slider berbentuk elips */
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px; /* Ukuran lingkaran slider */
  width: 15px;
  left: 2px; /* Posisi lingkaran di awal */
  bottom: 2px;
  background-color: white; /* Warna lingkaran */
  transition: 0.4s;
  border-radius: 50%; /* Membuat lingkaran */
}

input:checked + .slider {
  background-color: #4caf50; /* Warna saat aktif */
}

input:checked + .slider:before {
  transform: translateX(21px); /* Geser lingkaran ke kanan */
}

/* Deskripsi cheat */
.cheat-description {
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
  font-weight: bold;
}

/* Hanya tampil di perangkat mobile (lebar layar max 768px) */
@media only screen and (max-width: 768px) {
  .cust-banner-mobile {
    display: flex; /* Flexbox untuk membuat gambar berjejer */
    justify-content: center; /* Posisikan gambar di tengah */
    align-items: center; /* Posisikan vertikal di tengah */
    gap: 10px; /* Jarak antar gambar */
    margin: 20px auto;
    width: 100%;
    overflow: hidden;
  }

  .cust-banner-mobile a {
    display: block;
    width: 32%; /* Lebar 32% untuk 3 gambar */
    height: auto;
  }

  .cust-banner-mobile img {
    width: 100%; /* Gambar memenuhi elemen <a> */
    height: auto;
    border: none;
  }
}

/* Sembunyikan banner di layar yang lebih besar */
@media only screen and (min-width: 769px) {
  .cust-banner-mobile {
    display: none; /* Sembunyikan banner */
  }
}

progress {
  vertical-align: baseline;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}
.text-container > span {
  text-transform: uppercase;
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    color: #fff;
    text-shadow: 0 0 10px #0652dd, 0 0 50px #0652dd, 0 0 100px #0652dd;
  }
  10%,
  90% {
    color: #111;
    text-shadow: none;
  }
}
.text-container > #left:nth-child(6) {
  animation-delay: 0.25s;
}
.text-container > #left:nth-child(5) {
  animation-delay: 0.5s;
}
.text-container > #left:nth-child(4) {
  animation-delay: 0.75s;
}
.text-container > #left:nth-child(3) {
  animation-delay: 1s;
}
.text-container > #left:nth-child(2) {
  animation-delay: 1.25s;
}
.text-container > #left:nth-child(1) {
  animation-delay: 1.5s;
}
.text-container > #right:nth-child(2) {
  animation-delay: 0.25s;
}
.text-container > #right:nth-child(3) {
  animation-delay: 0.5s;
}
.text-container > #right:nth-child(4) {
  animation-delay: 0.75s;
}
.text-container > #right:nth-child(5) {
  animation-delay: 1s;
}
.text-container > #right:nth-child(6) {
  animation-delay: 1.25s;
}
.text-container > #right:nth-child(7) {
  animation-delay: 1.5s;
}
.newsInfo #slideup {
  width: calc(100vw - 28px - 28px - 48px);
}
.newsInfo #slideup {
  width: calc(100vw - 28px - 28px - 22px);
  height: 34px;
  line-height: 34px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  text-transform: uppercase;
}
.newsInfo a {
  color: #c71600;
}

/* Hanya tampil di perangkat mobile (lebar layar max 768px) */
@media only screen and (max-width: 768px) {
  .cust-banner-mobile {
    display: flex; /* Flexbox untuk membuat gambar berjejer */
    justify-content: center; /* Posisikan gambar di tengah */
    align-items: center; /* Posisikan vertikal di tengah */
    gap: 10px; /* Jarak antar gambar */
    margin: 20px auto;
    width: 100%;
    overflow: hidden;
  }

  .cust-banner-mobile a {
    display: block;
    width: 32%; /* Lebar 32% untuk 3 gambar */
    height: auto;
  }

  .cust-banner-mobile img {
    width: 100%; /* Gambar memenuhi elemen <a> */
    height: auto;
    border: none;
  }
}

/* Sembunyikan banner di layar yang lebih besar */
@media only screen and (min-width: 769px) {
  .cust-banner-mobile {
    display: none; /* Sembunyikan banner */
  }
}

.ard-sosmed {
  position: fixed;
  bottom: 70px;
  left: 10px;
  z-index: 9999;
  opacity: 0.98;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.ard-sosmed ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ard-sosmed ul li {
  text-align: center;
  margin-bottom: 12px;
}

.ard-sosmed ul li a img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.ard-sosmed ul li a img:hover {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .ard-sosmed {
    bottom: 70px;
    left: 10px;
    padding: 8px;
  }

  .ard-sosmed ul li a img {
    width: 50px;
    height: 50px;
  }
}

.custom-page {
  display: none;
}
