.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;
  }