/* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-color: #6a6fb7;
            --secondary-color: #edbc5d;
            --dark-bg: #121212;
            --darker-bg: #0a0a0a;
            --light-text: #f5f5f5;
            --accent-color: #edbc5d;
            --card-bg: #1e1e1e;
            --border-color: #333;
            --ban-color: #ff4444;
            --mute-color: #ff9900;
            --warn-color: #ffcc00;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        .container-1 {
            max-width: 9000px;
            margin: 0 auto;
            padding: 0 100px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background-color: var(--darker-bg);
            padding: 1.2rem 0;
            border-bottom: 3px solid var(--primary-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-color);
            border-bottom: 2px solid var(--accent-color);
        }
        
        .back-to-home,
        .page-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            gap: 10px;
            border: 1px solid transparent;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.96);
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
        }

        .back-to-home::before,
        .page-btn::before {
            position: absolute;
            content: "";
            right: 0;
            top: 50%;
            margin-top: -64px;
            width: 32px;
            height: 128px;
            background: #ffffff;
            transform: translateX(48px) rotate(12deg);
            opacity: 0.1;
            transition: transform 1s ease-out, opacity 0.3s ease;
            pointer-events: none;
        }

        .back-to-home {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-weight: 600;
            margin-top: 1rem;
        }

        .back-to-home:hover,
        .page-btn:hover {
            background: rgba(0, 0, 0, 0.9);
            border-color: #ffffff;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 10px 22px rgba(0, 0, 0, 0.3);
        }

        .back-to-home:hover::before,
        .page-btn:hover::before {
            transform: translateX(-160px) rotate(12deg);
            opacity: 0.12;
        }

        .back-to-home:active,
        .page-btn:active {
            transform: scale(0.95);
        }
        
        /* 页面标题 */
        .page-header {
            padding: 3rem 0 2rem;
            text-align: center;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--ban-color);
            position: relative;
            display: inline-block;
        }
        
        .page-title:after {
            content: '🚫';
            position: absolute;
            top: -15px;
            right: -35px;
            font-size: 2rem;
        }
        
        .page-subtitle {
            color: #aaa;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 封禁统计 */
        .ban-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 2rem 0 3rem;
            flex-wrap: wrap;
        }
        
        .stat-card {
            background-color: var(--card-bg);
            padding: 1.5rem 2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-color);
            min-width: 180px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .total-bans .stat-number {
            color: var(--ban-color);
        }
        
        .active-bans .stat-number {
            color: #ff9900;
        }
        
        .recent-bans .stat-number {
            color: #ffcc00;
        }
        
        .stat-label {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 筛选器 */
        .filter-bar {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-label {
            color: #aaa;
            font-size: 0.9rem;
        }
        
.filter-select {
    background-color: var(--darker-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.custom-select {
    position: relative;
    min-width: 180px;
}

.custom-select-button {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    background: #0b0b0b;
    color: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    box-shadow: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.custom-select-button:hover,
.custom-select.is-open .custom-select-button,
.custom-select-button:focus-visible {
    background: #101010;
    border-color: rgba(255, 255, 255, 0.24);
    outline: none;
}

.custom-select-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-icon {
    flex: 0 0 auto;
    color: #e7e7e7;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-icon {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 25;
    display: none;
    padding: 8px;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.custom-select.is-open .custom-select-menu {
    display: grid;
    gap: 6px;
}

.custom-select-option {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.02);
    color: #f1f1f1;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    outline: none;
}

.custom-select-option.is-selected {
    color: var(--accent-color);
    border-color: rgba(237, 188, 93, 0.22);
    background: rgba(237, 188, 93, 0.08);
}
        
.search-box {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    position: relative;
    display: flex;
}

.search-shell {
    --background: #000000;
    --color: #ffffff;
    --muted-foreground: #9c9c9c;
    --border: #2e2e2e;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--muted-foreground);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
    gap: 10px;
}

.search-shell:hover,
.search-shell:focus-within {
    background: var(--background);
    color: var(--color);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.search-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.search-icon i {
    color: #fff;
    font-size: 0.9rem;
}
.search-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    background: transparent;
    color: var(--light-text);
    border: 0;
    padding: 11px 0;
    border-radius: 0;
    font-size: 0.95rem;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #9c9c9c;
}

        
        /* 封禁表格 */
        .ban-table-container {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 3rem;
        }
        
        .ban-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .ban-table thead {
            background-color: var(--darker-bg);
        }
        
        .ban-table th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            color: var(--accent-color);
            border-bottom: 2px solid var(--border-color);
        }
        
        .ban-table td {
            padding: 18px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .ban-table tbody tr:hover {
            background-color: rgba(255, 68, 68, 0.05);
        }
        
        /* 状态徽章 */
        .ban-status {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .status-banned {
            background-color: rgba(255, 68, 68, 0.2);
            color: #ff4444;
            border: 1px solid rgba(255, 68, 68, 0.4);
        }
        
        .status-muted {
            background-color: rgba(255, 153, 0, 0.2);
            color: #ff9900;
            border: 1px solid rgba(255, 153, 0, 0.4);
        }
        
        .status-warning {
            background-color: rgba(255, 204, 0, 0.2);
            color: #ffcc00;
            border: 1px solid rgba(255, 204, 0, 0.4);
        }
        
        .status-expired {
            background-color: rgba(170, 170, 170, 0.2);
            color: #aaa;
            border: 1px solid rgba(170, 170, 170, 0.4);
        }
        
        /* 玩家信息 */
        .player-info {
            display: flex;
            flex-direction: column;
        }
        
        .player-name {
            font-weight: 600;
            color: #fff;
        }
        
    
        
        /* 理由和操作员 */
        .ban-reason {
            max-width: 250px;
            word-wrap: break-word;
        }
        
        .operator {
            color: var(--accent-color);
            font-weight: 500;
        }
        
        /* 时间样式 */
        .ban-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .expires-in {
            color: #ff9900;
            font-size: 0.9rem;
        }
        
        .expired {
            color: #aaa;
            font-style: italic;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 2rem 0;
            align-items: center;
            flex-wrap: wrap;
        }

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    min-width: 196px;
    justify-content: center;
}
        
        .page-btn {
            padding: 8px 15px;
            min-width: 44px;
        }

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

        .page-btn:disabled:hover {
            background: rgba(0, 0, 0, 0.96);
            border-color: transparent;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
        }

        .page-btn:disabled:hover::before {
            transform: translateX(48px) rotate(12deg);
            opacity: 0.1;
        }

        .page-btn.active {
            border-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 8px 18px rgba(0, 0, 0, 0.28);
        }

        .pagination-ellipsis {
            color: #aaa;
            padding: 8px 6px;
        }
        
        /* 页脚 */
        footer {
            background-color: var(--darker-bg);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .footer-section p {
            color: #aaa;
            margin-bottom: 1.5rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
         .footicp {
             color: white;
             text-decoration: none
            }
        /* 备注区域 */
        .notes {
            background-color: rgba(255, 68, 68, 0.05);
            border: 1px solid rgba(255, 68, 68, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        .notes h4 {
            color: var(--ban-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .notes ul {
            color: #aaa;
            padding-left: 20px;
            line-height: 1.8;
        }
        
        /* 响应式设计 */
@media (max-width: 768px) {
    .container-1 {
        padding: 0 18px;
    }

    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        height: 42px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    .page-header {
        padding: 2.2rem 0 1.4rem;
    }
    
    .page-title {
        font-size: 2rem;
    }

    .page-title:after {
        right: -20px;
        top: -10px;
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 0.98rem;
        line-height: 1.75;
        padding: 0 6px;
    }

    .ban-stats {
        gap: 14px;
        margin: 1.5rem 0 2rem;
    }

    .stat-card {
        flex: 1 1 calc(50% - 14px);
        min-width: 0;
        padding: 1.1rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 1rem;
    }

    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .filter-select {
        width: 100%;
        min-height: 42px;
    }

    .custom-select {
        width: 100%;
        min-width: 0;
    }

    .custom-select-button {
        min-height: 42px;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }

    .search-shell {
        width: 100%;
        min-height: 42px;
        padding: 0 10px;
    }

    .ban-table-container {
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .ban-table {
        display: block;
    }

    .ban-table thead {
        display: none;
    }

    .ban-table tbody {
        display: grid;
        gap: 14px;
    }

    .ban-table tr {
        display: block;
        background-color: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        padding: 14px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .ban-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        padding: 0;
        border: 0;
        font-size: 0.95rem;
    }

    .ban-table td + td {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ban-table td::before {
        content: attr(data-label);
        flex: 0 0 78px;
        color: var(--accent-color);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .player-info,
    .ban-reason,
    .operator,
    .ban-date,
    .expires-in,
    .expired,
    .ban-status {
        flex: 1;
        text-align: right;
    }

    .ban-reason {
        max-width: none;
    }

    .pagination {
        gap: 8px;
    }

    .pagination-pages {
        flex-wrap: wrap;
        justify-content: center;
        min-width: 0;
    }

    .page-btn {
        min-width: 42px;
        min-height: 42px;
    }

    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .footer-section {
        width: 100%;
        min-width: 0;
        padding: 18px 16px;
        background: rgba(30, 30, 30, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
    }

    .footer-bottom {
        line-height: 1.8;
    }
}

@media (max-width: 576px) {
    .container-1,
    .container {
        padding: 0 12px;
    }

    header {
        padding: 1rem 0;
    }

    .ban-stats {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-card {
        width: 100%;
        max-width: none;
    }

    .page-title {
        font-size: 1.65rem;
    }

    .page-title:after {
        display: none;
    }

    .page-subtitle {
        font-size: 0.92rem;
        padding: 0;
    }

    .ban-table tr {
        padding: 12px;
        border-radius: 12px;
    }

    .ban-table td {
        flex-direction: column;
        gap: 6px;
        font-size: 0.9rem;
    }

    .ban-table td::before {
        flex: none;
    }

    .player-info,
    .ban-reason,
    .operator,
    .ban-date,
    .expires-in,
    .expired,
    .ban-status {
        text-align: left;
    }

    .pagination {
        justify-content: stretch;
    }

    .pagination .page-btn {
        flex: 1 1 calc(50% - 8px);
    }

    .pagination-pages {
        width: 100%;
    }

    .back-to-home {
        display: flex !important;
        width: 100%;
        margin-top: 0.5rem !important;
        padding: 11px 12px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        box-shadow: 0 0 0 3px rgba(237, 188, 93, 0.14), 0 10px 20px rgba(0, 0, 0, 0.24);
    }

    .footer-content {
        gap: 14px;
    }

    .footer-section {
        padding: 16px 14px 14px;
        border-radius: 12px;
    }

    .footer-section h3 {
        margin-bottom: 0.9rem;
        font-size: 1.15rem;
    }

    .footer-section p {
        margin-bottom: 0.9rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .footer-bottom {
        padding-top: 1.4rem;
        font-size: 0.82rem;
        line-height: 1.9;
        word-break: break-word;
    }

    .footicp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
}


.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(237, 188, 93, 0.35);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(237, 188, 93, 0.14), 0 12px 24px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.3s ease;
    z-index: 1200;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(237, 188, 93, 0.45);
    outline-offset: 3px;
}

.back-to-top .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.back-to-top .svgIcon path {
    fill: var(--accent-color);
}

a,
button,
select,
input,
.page-btn,
.back-to-home,
.search-trigger,
    .version-header,
.footer-section,
.footicp {
    -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
select:focus,
input:focus,
.search-trigger:focus,
    .back-to-home:focus,
.page-btn:focus {
    outline: none;
}

.back-to-top::before {
    position: absolute;
    bottom: -20px;
    content: "返回顶部";
    color: #fff7e3;
    font-size: 0;
    transition-duration: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .back-to-top:hover {
        width: 132px;
        border-radius: 50px;
        background: rgba(0, 0, 0, 0.9);
        box-shadow: 0 0 0 4px rgba(237, 188, 93, 0.2), 0 18px 30px rgba(0, 0, 0, 0.32);
        transform: translateY(-2px);
    }

    .back-to-top:hover .svgIcon {
        transform: translateY(-200%);
    }

    .back-to-top:hover .svgIcon path {
        fill: #fff;
    }

    .back-to-top:hover::before {
        font-size: 13px;
        opacity: 1;
        bottom: unset;
    }
}

@media (max-width: 768px) {
    .container-1 {
        padding: 0 18px;
    }

    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        height: 42px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 14px;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 6px 0;
    }

    .page-header {
        padding: 2.2rem 0 1.4rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-title:after {
        right: -20px;
        top: -10px;
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 0.98rem;
        line-height: 1.75;
        padding: 0 6px;
    }

    .ban-stats {
        gap: 14px;
        margin: 1.5rem 0 2rem;
    }

    .stat-card {
        flex: 1 1 calc(50% - 14px);
        min-width: 0;
        padding: 1.1rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 1rem;
    }

    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .filter-select {
        width: 100%;
        min-height: 42px;
    }

    .search-box {
        max-width: 100%;
        width: 100%;
    }

    .search-shell {
        width: 100%;
        min-height: 42px;
        padding: 0 10px;
    }

    .ban-table-container {
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .ban-table {
        display: block;
    }

    .ban-table thead {
        display: none;
    }

    .ban-table tbody {
        display: grid;
        gap: 14px;
    }

    .ban-table tr {
        display: block;
        background-color: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        padding: 14px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .ban-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        padding: 0;
        border: 0;
        font-size: 0.95rem;
    }

    .ban-table td + td {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .ban-table td::before {
        content: attr(data-label);
        flex: 0 0 78px;
        color: var(--accent-color);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .player-info,
    .ban-reason,
    .operator,
    .ban-date,
    .expires-in,
    .expired,
    .ban-status {
        flex: 1;
        text-align: right;
    }

    .ban-reason {
        max-width: none;
    }

    .pagination {
        gap: 8px;
    }

    .pagination-pages {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-btn {
        min-width: 42px;
        min-height: 42px;
    }

    .footer-content {
        gap: 18px;
    }

    .footer-section {
        min-width: 0;
        padding: 18px 16px;
        background: rgba(30, 30, 30, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
    }

    .footer-bottom {
        line-height: 1.8;
    }
}

@media (max-width: 576px) {
    .container-1,
    .container {
        padding: 0 12px;
    }

    header {
        padding: 1rem 0;
    }

    .ban-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        width: 100%;
        max-width: none;
    }

    .page-title {
        font-size: 1.65rem;
    }

    .page-title:after {
        display: none;
    }

    .page-subtitle {
        font-size: 0.92rem;
        padding: 0;
    }

    .ban-table tr {
        padding: 12px;
        border-radius: 12px;
    }

    .ban-table td {
        flex-direction: column;
        gap: 6px;
        font-size: 0.9rem;
    }

    .ban-table td::before {
        flex: none;
    }

    .player-info,
    .ban-reason,
    .operator,
    .ban-date,
    .expires-in,
    .expired,
    .ban-status {
        text-align: left;
    }

    .pagination {
        justify-content: stretch;
    }

    .pagination .page-btn {
        flex: 1 1 calc(50% - 8px);
    }

    .pagination-pages {
        width: 100%;
    }

    .back-to-home {
        padding: 11px 12px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        box-shadow: 0 0 0 3px rgba(237, 188, 93, 0.14), 0 10px 20px rgba(0, 0, 0, 0.24);
    }

    .footer-content {
        gap: 14px;
    }

    .footer-section {
        padding: 16px 14px 14px;
        border-radius: 12px;
    }

    .footer-section h3 {
        margin-bottom: 0.9rem;
        font-size: 1.15rem;
    }

    .footer-section p {
        margin-bottom: 0.9rem;
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .footer-section .back-to-home {
        margin-top: 0.5rem;
    }

    .footer-bottom {
        padding-top: 1.4rem;
        font-size: 0.82rem;
        line-height: 1.9;
        word-break: break-word;
    }

    .footicp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
}
