* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: #0a1014;
    color: #d4c8a8;
    min-height: 100vh;
    background-image: radial-gradient(ellipse at top, #1a1030 0%, #0a1014 60%);
}
.top-bar {
    background: #0d0d1f;
    border-bottom: 2px solid #c8963e;
    padding: 6px 0;
    font-size: 12px;
    color: #887d6a;
    text-align: center;
}
.top-bar span {
    color: #e8b84b;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.header {
    background: linear-gradient(180deg, #1a1040 0%, #120d28 100%);
    border-bottom: 3px solid #c8963e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.6);
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #c8963e 0%, #e8b84b 40%, #8b5e2f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #1a0a00;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 2px solid #f0d080;
    box-shadow: 0 0 20px rgba(200, 150, 62, 0.5);
}
.site-name {
    font-size: 24px;
    font-weight: bold;
    color: #f0d080;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(240, 208, 120, 0.4);
}
.site-name small {
    display: block;
    font-size: 11px;
    color: #a09070;
    letter-spacing: 1px;
    font-weight: normal;
}
.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.nav a {
    color: #c8b898;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}
.nav a:hover,
.nav a.active {
    background: rgba(200, 150, 62, 0.2);
    color: #f0d080;
    box-shadow: inset 0 0 15px rgba(200, 150, 62, 0.15);
}
.nav a.active {
    border-bottom: 2px solid #c8963e;
}
.nav a .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e8453c;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}
.page-title-area {
    background: linear-gradient(135deg, #1a1040 0%, #251545 50%, #1a1040 100%);
    border: 2px solid #3a2850;
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 20px;
    text-align: center;
}
.page-title-area h1 {
    font-size: 26px;
    color: #f0d080;
    letter-spacing: 3px;
}
.page-title-area .sub {
    color: #b09870;
    font-size: 13px;
    margin-top: 6px;
}
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
}
.filter-bar select,
.filter-bar input {
    background: #120d28;
    border: 1px solid #2a2040;
    color: #d4c8a8;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}
.filter-bar select:focus,
.filter-bar input:focus {
    border-color: #c8963e;
}
.btn-filter {
    background: #c8963e;
    color: #1a0a00;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-filter:hover {
    background: #e8b84b;
    box-shadow: 0 0 15px rgba(200, 150, 62, 0.5);
}
.table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #2a2040;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-size: 14px;
}
table thead {
    background: #1a1040;
}
table thead th {
    padding: 14px 10px;
    color: #f0d080;
    letter-spacing: 1px;
    border-bottom: 2px solid #c8963e;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
}
table tbody tr {
    transition: all 0.3s;
    border-bottom: 1px solid #1a1540;
}
table tbody tr:hover {
    background: rgba(200, 150, 62, 0.08);
}
table tbody td {
    padding: 12px 10px;
    text-align: center;
    vertical-align: middle;
}
.status-live {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 8px #4caf50;
    margin-right: 6px;
    animation: pulse 2s infinite;
}
.status-new {
    display: inline-block;
    background: #e8453c;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    animation: blink 1.2s infinite;
    margin-left: 4px;
}
.tag-hot-sm {
    display: inline-block;
    background: #e8b84b;
    color: #1a0a00;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
    margin-left: 4px;
}
.srv-link {
    color: #e8b84b;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.srv-link:hover {
    color: #f0d080;
    text-decoration: underline;
}
.btn-sm {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-enter {
    background: linear-gradient(135deg, #c8963e, #e8b84b);
    color: #1a0a00;
}
.btn-enter:hover {
    box-shadow: 0 0 15px rgba(200, 150, 62, 0.6);
}
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.pagination span,
.pagination a {
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.pagination span {
    background: #1a1040;
    color: #d4c8a8;
    border: 1px solid #2a2040;
}
.pagination span.active {
    background: #c8963e;
    color: #1a0a00;
    border-color: #c8963e;
    font-weight: bold;
}
.pagination span:hover {
    border-color: #c8963e;
    color: #f0d080;
}
.footer {
    background: #0d0d1f;
    border-top: 2px solid #2a2040;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #6a5f4f;
    margin-top: 30px;
    letter-spacing: 1px;
}
.footer a {
    color: #a09070;
    text-decoration: none;
}
.footer a:hover {
    color: #e8b84b;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
    }
    .nav {
        justify-content: center;
    }
    .nav a {
        padding: 8px 12px;
        font-size: 13px;
    }
    table {
        font-size: 11px;
        min-width: 700px;
    }
    table thead th,
    table tbody td {
        padding: 8px 4px;
    }
}