*,
*::before,
*::after {
    box-sizing: border-box;
}

.banlist-section {
    position: relative;
    z-index: 1;
    padding: 140px 0 100px;
}

.bl-hero {
    margin-bottom: 64px;
}

.bl-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bl-eyebrow-line {
    width: 32px;
    height: 1px;
    background: #e8521a;
}

.bl-eyebrow-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: #e8521a;
    text-transform: uppercase;
}

.bl-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0px;
}

.bl-hero-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}

.bl-hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.bl-hero-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #4a4a4a;
    max-width: 340px;
    line-height: 1.6;
}

.bl-hero-meta span {
    color: #e8521a;
    font-weight: 600;
}

.bl-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(34,197,94,0.2);
    background: rgba(34,197,94,0.05);
    padding: 8px 16px;
    flex-shrink: 0;
}

.bl-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.bl-live-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: #22c55e;
}

.bl-filters {
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 10px;
}

.bl-filters-top {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.bl-filters-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bl-filter-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: #3a3a3a;
    text-transform: uppercase;
    flex-shrink: 0;
}

.search-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.3);
    transition: border-color 0.2s;
    border-radius: 10px;
}

.search-wrap:focus-within {
    border-color: #5a5a5a;
    background: #1a1a1a;
}

.search-icon-svg {
    flex-shrink: 0;
    margin: 0 14px;
    color: #3a3a3a;
    transition: color 0.2s;
}

.search-wrap:focus-within .search-icon-svg {
    color: #e8521a;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    color: #e8e8e8;
    padding: 14px 0;
}

.search-input::placeholder {
    color: #333;
}

.search-clear {
    display: none;
    align-items: center;
    padding: 0 12px;
    cursor: pointer;
    color: #5a5a5a;
    background: transparent;
    border: none;
    transition: color 0.15s;
}

.search-clear:hover { color: #c8c8c8; }

.search-clear.visible { display: flex; }

.filter-select-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.3);
    padding: 0 14px;
    color: #3a3a3a;
    transition: border-color 0.2s;
    border-radius: 10px;
}

.filter-select-wrap:focus-within {
    border-color: #5a5a5a;
    background: #1a1a1a;
}

.filter-select {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #a0a0a0;
    cursor: pointer;
    padding: 14px 10px;
    appearance: none;
    -webkit-appearance: none;
    min-width: 140px;
}

.filter-select option {
    background: #0d0d0d;
    color: #e8e8e8;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #e8521a;
    color: #fff;
    border: none;
    padding: 0 28px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
    height: 100%;
    min-height: 48px;
    border-radius: 10px;
}

.search-btn:hover { background: #c94415; }
.search-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.filter-toggles {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a4a4a;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    border-radius: 10px;
}

.filter-toggle:hover {
    color: #c8c8c8;
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
}

.filter-toggle.active {
    color: #fff;
    border-color: #5a5a5a;
    background: #1a1a1a;
}

.ft-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ft-dot-global { background: #f87171; }
.ft-dot-local  { background: #4a4a4a; }

.bl-feed-wrap {
    position: relative;
    min-height: 480px;
}

.feed-state {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.feed-state.hidden { display: none; }

.feed-state-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.spinner-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.06);
    border-top-color: #e8521a;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.state-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3a3a3a;
}

.state-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: #2a2a2a;
}

.state-glyph { color: #2a2a2a; }
.state-glyph-err { color: rgba(248,113,113,0.4); }

.bl-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.ban-card {
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    cursor: default;
    border-radius: 10px;
}

.ban-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.ban-card:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.035);
    transform: translateY(-2px);
}

.ban-card-expired {
    opacity: 0.38;
}

.ban-card-expired:hover {
    transform: none;
}

.bc-cover {
    position: relative;
    height: 90px;
    overflow: hidden;
}

.bc-cover-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(18px) brightness(0.25) saturate(1.4);
    transform: scale(1.15);
    transition: filter 0.4s;
}

.bc-cover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.7) 100%);
}

.bc-cover-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.bc-avatar-wrap {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 2;
}

.bc-avatar-link {
    display: block;
    text-decoration: none;
}

.bc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.bc-avatar-fallback {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    flex-shrink: 0;
}

.bc-cover-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 2;
}

.bc-scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 3px 9px;
    border-radius: 2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bc-scope-badge.bc-scope-global {
    color: #fca5a5;
    background: rgba(239,68,68,0.2);
    border: 1px solid rgba(239,68,68,0.3);
}

.bc-scope-badge.bc-scope-local {
    color: #9a9a9a;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.bc-scope-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

.bc-server-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 9px;
    border-radius: 2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bc-body {
    padding: 32px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bc-identity {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bc-nickname {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f5f5;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.bc-steamid {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: #8c8c8c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
}

.bc-reason-block {
    border-left: 2px solid;
    padding-left: 12px;
}

.bc-reason-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    opacity: 0.9;
}

.bc-reason-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #7a7a7a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.4;
}

.bc-divider {
    height: 1px;
    background: rgba(255,255,255,0.04);
}

.bc-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bc-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bc-meta-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8c8c8c;
}

.bc-meta-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: #8a8a8a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-expiry-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.bc-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 2px 7px;
    border-radius: 2px;
}

.bc-badge-perm {
    color: #c084fc;
    background: rgba(192,132,252,0.1);
    border: 1px solid rgba(192,132,252,0.2);
}

.bc-badge-expired {
    color: #5a5a5a;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pagination-info {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #3a3a3a;
    letter-spacing: 0.04em;
}

.pagination-controls {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    color: #5a5a5a;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 7px 13px;
    cursor: pointer;
    transition: all 0.15s;
    border-radius: 3px;
}

.page-btn:hover:not(:disabled) {
    color: #fff;
    border-color: rgba(232,82,26,0.4);
    background: rgba(232,82,26,0.08);
}

.page-btn.active {
    color: #fff;
    background: rgba(232,82,26,0.2);
    border-color: rgba(232,82,26,0.6);
}

.page-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.page-ellipsis {
    font-family: monospace;
    font-size: 0.75rem;
    color: #2a2a2a;
    padding: 0 4px;
}

@media (max-width: 860px) {
    .bl-feed {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .banlist-section {
        padding: 100px 0 60px;
    }

    .bl-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .bl-filters-top {
        flex-direction: column;
    }

    .search-btn {
        min-height: 44px;
    }

    .bl-feed {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}