/* Extracted from inline <style> block #25. */
/* =========================================
   FOOTER UTAMA (DARK GOLD ELEGANT)
   ========================================= */
          .UUSTOTO-TOTO-TOGEL {
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            /* Agar tombol tengah bisa melayang */
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 99;
            padding: 12px 10px 20px 10px;
            /* Bawah lebih lebar */
            /* Tema Glassmorphism & Hitam */
            background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), #000000);
            border-top: 1px solid #eb1e1e;
            /* Garis Emas Solid */
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
            /* Bayangan hitam ke atas */
            backdrop-filter: blur(8px);
            /* Efek kaca buram */
            border-radius: 20px 20px 0 0;
            /* Sudut atas melengkung halus */
            font-family: 'Montserrat', sans-serif;
          }

          /* =========================================
   BUTTON NAVIGASI (PROMO, LOGIN, DLL)
   ========================================= */
          .UUSTOTO-TOTO-TOGEL a {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #888;
            /* Abu-abu redup default */
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            flex: 1;
            /* Ukuran rata */
          }

          .UUSTOTO-TOTO-TOGEL a:hover {
            color: #eb1e1e;
            /* Berubah Emas saat hover */
            transform: translateY(-3px);
          }

          /* Styling Icon (GIF) */
          .UUSTOTO-TOTO-TOGEL img {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
            filter: grayscale(100%) brightness(200%);
            /* Buat icon jadi putih/abu biar rapi */
            transition: 0.3s;
          }

          .UUSTOTO-TOTO-TOGEL a:hover img {
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
            /* Glow Emas saat hover */
          }

          /* =========================================
   BUTTON TENGAH (DAFTAR) - SPESIAL
   ========================================= */
          .UUSTOTO-TOTO-TOGEL a.tada {
            position: relative;
            top: -25px;
            /* Naikkan posisi ke atas (Melayang) */
            background: linear-gradient(135deg, #c10101 0%, #9b0000 100%);
            /* Gradasi Emas Solid */
            color: #000000;
            /* Teks Hitam agar kontras */
            /* Bentuk Kapsul (Pill) */
            min-width: 60px;
            height: 55px;
            padding: 0 15px;
            border-radius: 50px;
            /* Border menyesuaikan background agar terlihat seperti "Lubang" */
            border: 4px solid #050505;
            box-shadow: 0 5px 15px rgba(237, 0, 0, 0.4);
            animation: floatGold 3s ease-in-out infinite;
            /* Animasi melayang halus */
          }

          .UUSTOTO-TOTO-TOGEL a.tada img {
            margin-bottom: 2px;
            width: 22px;
            height: 22px;
            filter: brightness(0);
            /* Icon hitam di atas emas */
          }

          /* Animasi Melayang - Hanya ganti glow kuning jadi putih */
          @keyframes floatGold {

            0%,
            100% {
              transform: translateY(0);
              box-shadow: 0 5px 15px rgba(237, 0, 0, 0.4);
              /* merah transparan */
            }

            50% {
              transform: translateY(-5px);
              box-shadow: 0 10px 25px rgba(255, 255, 255, 0.6);
              /* Glow putih */
            }
          }

          /* Responsif Mobile Kecil */
          @media (max-width: 350px) {
            .UUSTOTO-TOTO-TOGEL a {
              font-size: 9px;
            }

            .UUSTOTO-TOTO-TOGEL img {
              width: 20px;
              height: 20px;
            }

            .UUSTOTO-TOTO-TOGEL a.tada {
              width: 50px;
              height: 50px;
              min-width: 50px;
              top: -20px;
            }
          }
