.nk-feature-1 {
        cursor: pointer;
    }
    
    /* Efek Hover: Baris akan sedikit menyala saat dilewati mouse */
    #champion-list-container tr:hover {
        background-color: rgba(221, 22, 59, 0.05) !important;
        transform: scale(1.01);
        box-shadow: inset 5px 0 0 #dd163b;
    }
    
    /* Membuat angka prize terlihat bersinar */
    .prize-amount {
        text-shadow: 0 0 10px rgba(246, 194, 62, 0.3);
    }
    
    /* Custom Scrollbar untuk Table Container */
    .table-responsive::-webkit-scrollbar {
        height: 4px; /* Tipis saja agar tidak mengganggu */
        width: 4px;
    }
    
    .table-responsive::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }
    
    .table-responsive::-webkit-scrollbar-thumb {
        background: #dd163b; /* Warna utama server Anda */
        border-radius: 10px;
    }
    
    /* Tweak Table Row */
    #champion-list-container tr {
        background-color: transparent;
        transition: all 0.2s ease-in-out;
    }
    
    #champion-list-container tr:hover {
        background-color: rgba(255, 255, 255, 0.03) !important;
    }
    
    /* Efek Glow untuk Angka Prize */
    .prize-amount {
        color: #f6c23e;
        text-shadow: 0 0 8px rgba(246, 194, 62, 0.4);
        font-family: 'Rajdhani', sans-serif;
    }