:root {
    --danger: #ff3e3e;
    --danger-bg: rgba(255, 62, 62, 0.1);
    --warning: #fbbf24;
    --warning-bg: rgba(251, 191, 36, 0.1);
}

.blacklist-container {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-chip {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-chip.active {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
    box-shadow: 0 0 15px rgba(255, 62, 62, 0.3);
}

#blacklist-results tr {
    transition: all 0.2s ease;
}

#blacklist-results tr:hover {
    background: rgba(255, 62, 62, 0.03);
}

@media (max-width: 767px) {
    #blacklist-results tr {
        border-left: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.02);
        margin-bottom: 1rem;
    }
}

.badge {
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.badge-pc { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.badge-ps5 { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.badge-x { background: rgba(255, 255, 255, 0.1); color: #f3f4f6; }

.badge-scam-high { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(255, 62, 62, 0.2); }
.badge-scam-mid { background: var(--warning-bg); color: var(--warning); border: 1px solid rgba(251, 191, 36, 0.2); }

.player-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.overflow-x-auto::-webkit-scrollbar { height: 6px; }
.overflow-x-auto::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
.overflow-x-auto::-webkit-scrollbar-thumb { background: rgba(255, 62, 62, 0.2); border-radius: 10px; }
.overflow-x-auto::-webkit-scrollbar-thumb:hover { background: var(--danger); }