<style>
        /* 
          ========================================================================
          @license
          COPYRIGHT © 2026 QQSTAR OFFICIAL. ALL RIGHTS RESERVED.
          Situs Resmi Scatter Hitam & Slot PG Gacor Indonesia - ziftthemovie.com
          
          WARNING: 
          Segala bentuk penggandaan, pendistribusian, atau penyalinan kode CSS ini 
          tanpa izin tertulis dari manajemen QQSTAR adalah pelanggaran hak cipta 
          dan akan ditindaklanjuti secara hukum siber internasional.
          ========================================================================
        */
        .glow-gold {
            box-shadow: 0 0 25px rgba(229, 169, 60, 0.25);
        }
        .glow-red {
            box-shadow: 0 0 25px rgba(225, 42, 60, 0.35);
        }
        .text-glow {
            text-shadow: 0 0 12px rgba(229, 169, 60, 0.6);
        }
        .text-glow-red {
            text-shadow: 0 0 12px rgba(225, 42, 60, 0.7);
        }
        .glass-panel {
            background: rgba(18, 18, 20, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .glass-panel-heavy {
            background: rgba(10, 10, 12, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(229, 169, 60, 0.15);
        }
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #080809;
        }
        ::-webkit-scrollbar-thumb {
            background: #E5A93C;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #C68E28;
        }
        /* Cyber Matrix Background */
        .cyber-grid {
            background-size: 50px 50px;
            background-image: linear-gradient(to right, rgba(229, 169, 60, 0.02) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(229, 169, 60, 0.02) 1px, transparent 1px);
        }
        /* Shimmer Animation */
        @keyframes shimmer {
            100% { transform: translateX(100%); }
        }
        .shimmer-btn::after {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            transform: translateX(-100%);
            background-image: linear-gradient(
                90deg,
                rgba(255,255,255, 0) 0%,
                rgba(255,255,255, 0.2) 20%,
                rgba(255,255,255, 0.6) 60%,
                rgba(255,255,255, 0) 100%
            );
            animation: shimmer 2.5s infinite;
        }
        
        /* Mencegah seleksi teks secara tidak sengaja oleh tukang copy */
        body {
            -webkit-user-select: none; /* Safari */
            -ms-user-select: none; /* IE 10 dan Opera */
            user-select: none; /* Standard syntax */
        }
        
        /* Pengecualian seleksi teks hanya untuk form pendaftaran agar user tetap bisa mengetik */
        input, textarea, select {
            -webkit-user-select: text;
            -ms-user-select: text;
            user-select: text;
        }
    </style>