/* +----------------------------------------------------------------------
   | 奇迹MU发布站 经典游戏风格UI v1.0
   | 配色：暗黑底色 + 卓越暗金 + 血色暗红 + 冰风深蓝
   | 风格：厚重金属质感、整齐大气、贴合老奇迹玩家审美
   +---------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", "SimHei", sans-serif;
    background: #0a0a0d url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVQIW2P8//8/AxIwMDCgCgAANgABT8mE7wAAAABJRU5ErkJggg==') repeat;
    color: #e8e0c8;
    line-height: 1.6;
    font-size: 14px;
}
a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #f0c840;
}
img {
    max-width: 100%;
    border: 1px solid #3d3218;
}
ul, ol {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== 顶部导航栏 奇迹金属风格 ==================== */
.site-header {
    background: linear-gradient(180deg, #1a1610 0%, #0f0d09 100%);
    border-bottom: 2px solid #c9a227;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.2);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}
.nav {
    display: flex;
    gap: 5px;
    flex: 1;
    margin-left: 40px;
    height: 60px;
    align-items: center;
}
.nav a {
    color: #a09880;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}
.nav a:hover, .nav a.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
    background: rgba(201, 162, 39, 0.08);
}
.user-bar {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn {
    padding: 7px 16px;
    border-radius: 2px;
    border: 1px solid #3d3218;
    background: linear-gradient(180deg, #252018 0%, #1a1610 100%);
    color: #e8e0c8;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn:hover {
    border-color: #c9a227;
    color: #d4af37;
    background: rgba(201, 162, 39, 0.1);
}
.btn-primary {
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border-color: #c9a227;
    color: #0a0a0d;
    font-weight: bold;
}
.btn-primary:hover {
    background: linear-gradient(180deg, #e0b830 0%, #a8861c 100%);
    color: #0a0a0d;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
}
.btn-publish {
    background: linear-gradient(180deg, #922b21 0%, #641c16 100%);
    border-color: #922b21;
    color: #fff;
    font-weight: bold;
}
.btn-publish:hover {
    background: linear-gradient(180deg, #b03529 0%, #7a221b 100%);
    color: #fff;
    box-shadow: 0 0 10px rgba(146, 43, 33, 0.4);
}
.btn-sm {
    padding: 5px 12px;
    font-size: 13px;
}
.btn.danger {
    background: linear-gradient(180deg, #922b21 0%, #641c16 100%);
    border-color: #922b21;
    color: #fff;
}
.btn.danger:hover {
    background: linear-gradient(180deg, #b03529 0%, #7a221b 100%);
    color: #fff;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
}

/* ==================== 主内容区 ==================== */
.site-main {
    padding: 20px 0 50px;
}
.breadcrumb {
    margin-bottom: 15px;
    font-size: 13px;
    color: #706850;
    padding: 8px 12px;
    background: rgba(201, 162, 39, 0.05);
    border-left: 3px solid #c9a227;
}
.breadcrumb a {
    color: #a09880;
}
.breadcrumb a:hover {
    color: #d4af37;
}

/* ==================== Banner区 奇迹风格 ==================== */
.banner-section {
    margin-bottom: 25px;
}
.banner-item {
    background: linear-gradient(135deg, #1a1610 0%, #2d1a12 50%, #1a1610 100%);
    border: 2px solid #c9a227;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.banner-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #922b21, transparent);
}
.banner-text h1 {
    font-size: 42px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 12px;
    letter-spacing: 3px;
}
.banner-text p {
    font-size: 18px;
    color: #a09880;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.banner-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border: 1px solid #d4af37;
    color: #0a0a0d;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}
.banner-btn:hover {
    background: linear-gradient(180deg, #e0b830 0%, #a8861c 100%);
    color: #0a0a0d;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

/* 搜索框 */
.search-box-wrap {
    margin-bottom: 20px;
}
.search-box {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid #3d3218;
    background: #16161b;
}
.search-box:focus-within {
    border-color: #c9a227;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
}
.search-box input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: #e8e0c8;
    font-size: 15px;
    outline: none;
}
.search-box input::placeholder {
    color: #706850;
}
.search-box button {
    border: none;
    border-radius: 0;
    padding: 0 30px;
    font-size: 16px;
}

/* 快捷导航 */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.quick-item {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 20px 10px;
    text-align: center;
    color: #a09880;
    font-weight: 500;
    transition: all 0.2s;
}
.quick-item:hover {
    border-color: #c9a227;
    color: #d4af37;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
    transform: translateY(-2px);
}
.quick-item.publish-quick {
    background: linear-gradient(180deg, #922b21 0%, #641c16 100%);
    border-color: #922b21;
    color: #fff;
}
.quick-item.publish-quick:hover {
    border-color: #b03529;
    color: #fff;
    box-shadow: 0 0 10px rgba(146, 43, 33, 0.3);
}
.quick-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

/* ==================== 区块通用 ==================== */
.server-section {
    margin-bottom: 35px;
}
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3d3218;
    position: relative;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #c9a227;
}
.section-title h2 {
    font-size: 20px;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.more-btn {
    font-size: 13px;
    color: #706850;
}
.more-btn:hover {
    color: #d4af37;
}

/* ==================== 服务器卡片 奇迹装备风格 ==================== */
.server-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.server-card {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 18px;
    position: relative;
    transition: all 0.2s;
}
.server-card:hover {
    border-color: #c9a227;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
    transform: translateY(-3px);
}
.card-badge {
    position: absolute;
    top: 0;
    right: 15px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}
.top-badge {
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    color: #0a0a0d;
    border: 1px solid #d4af37;
}
.today-badge {
    background: linear-gradient(180deg, #922b21 0%, #641c16 100%);
    color: #fff;
    border: 1px solid #b03529;
}
.server-name {
    font-size: 17px;
    font-weight: bold;
    color: #e8e0c8;
    margin-bottom: 12px;
    padding-right: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.server-name a {
    color: #e8e0c8;
}
.server-name a:hover {
    color: #d4af37;
}
.server-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.tag {
    padding: 2px 8px;
    font-size: 12px;
    border: 1px solid;
    font-weight: 500;
}
.version-tag {
    border-color: #1f4e79;
    color: #5b9bd5;
    background: rgba(31, 78, 121, 0.1);
}
.exp-tag {
    border-color: #7b42a0;
    color: #b57edc;
    background: rgba(123, 66, 160, 0.1);
}
.line-tag {
    border-color: #2e7d32;
    color: #66bb6a;
    background: rgba(46, 125, 50, 0.1);
}
.server-meta {
    font-size: 13px;
    color: #a09880;
    margin-bottom: 12px;
    padding: 10px 0;
    border-top: 1px solid #2d2718;
    border-bottom: 1px solid #2d2718;
    line-height: 2;
}
.meta-label {
    color: #706850;
    width: 70px;
    display: inline-block;
}
.server-desc {
    font-size: 13px;
    color: #888068;
    margin-bottom: 15px;
    height: 42px;
    overflow: hidden;
    line-height: 1.5;
}
.card-btn {
    display: block;
    width: 100%;
    padding: 9px;
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border: 1px solid #c9a227;
    color: #0a0a0d;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}
.card-btn:hover {
    background: linear-gradient(180deg, #e0b830 0%, #a8861c 100%);
    color: #0a0a0d;
}
.countdown {
    background: rgba(146, 43, 33, 0.1);
    border: 1px solid rgba(146, 43, 33, 0.3);
    padding: 8px;
    text-align: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ef5350;
    font-weight: 500;
}

/* ==================== 列表页 ==================== */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.list-header h2 {
    font-size: 22px;
    color: #d4af37;
    font-weight: bold;
}
.list-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.list-filter a {
    padding: 5px 14px;
    background: #1e1a12;
    border: 1px solid #3d3218;
    color: #a09880;
    font-size: 14px;
}
.list-filter a:hover, .list-filter a.active {
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border-color: #c9a227;
    color: #0a0a0d;
    font-weight: bold;
}

/* ==================== 分页 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}
.page-btn {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #3d3218;
    background: #1e1a12;
    color: #a09880;
    font-weight: 500;
}
.page-btn:hover, .page-btn.active {
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border-color: #c9a227;
    color: #0a0a0d;
    font-weight: bold;
}

/* ==================== 空状态 ==================== */
.empty-state, .empty-box {
    text-align: center;
    padding: 60px 20px;
    background: #1e1a12;
    border: 1px solid #3d3218;
    color: #706850;
    font-size: 15px;
}
.empty-state a, .empty-box a {
    color: #d4af37;
    font-weight: bold;
}

/* ==================== 表单通用 ==================== */
.form-item {
    margin-bottom: 18px;
}
.form-item label {
    display: block;
    margin-bottom: 7px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
}
.form-item input, .form-item select, .form-item textarea {
    width: 100%;
    padding: 10px 14px;
    background: #0f0d09;
    border: 1px solid #3d3218;
    color: #e8e0c8;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}
.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
    border-color: #c9a227;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.2);
}
.form-item textarea {
    min-height: 120px;
    resize: vertical;
}
.form-tip {
    font-size: 12px;
    color: #706850;
    margin-top: 5px;
}

/* ==================== 登录/注册页 ==================== */
.auth-box {
    padding: 60px 15px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 2px solid #3d3218;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.auth-card h2 {
    text-align: center;
    font-size: 26px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.msg-box {
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 14px;
    border: 1px solid;
}
.msg-box.error {
    background: rgba(146, 43, 33, 0.1);
    border-color: rgba(146, 43, 33, 0.3);
    color: #ef5350;
}
.msg-box.success {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.3);
    color: #66bb6a;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border: 1px solid #c9a227;
    color: #0a0a0d;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    margin-top: 10px;
}
.submit-btn:hover {
    background: linear-gradient(180deg, #e0b830 0%, #a8861c 100%);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.3);
}
.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #706850;
}
.auth-footer a {
    color: #d4af37;
    font-weight: 500;
}

/* ==================== 发布页 ==================== */
.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 2px solid #3d3218;
    padding: 35px;
}
.form-title {
    font-size: 24px;
    text-align: center;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* ==================== 用户中心 ==================== */
.user-center {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
}
.user-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.user-info-card {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 25px 15px;
    text-align: center;
}
.user-info-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a227, #927417);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid #d4af37;
}
.user-info-card h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}
.user-info-card p {
    font-size: 13px;
    color: #a09880;
    margin-bottom: 4px;
}
.user-menu {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 10px;
    position: sticky;
    top: 80px;
}
.user-menu a {
    display: block;
    padding: 10px 14px;
    color: #a09880;
    font-size: 14px;
    border-left: 2px solid transparent;
    margin-bottom: 2px;
}
.user-menu a:hover, .user-menu a.active {
    background: rgba(201, 162, 39, 0.1);
    color: #d4af37;
    border-left-color: #c9a227;
}
.user-main {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 25px;
}
.user-main h2 {
    font-size: 22px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3d3218;
}
.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.stat-card {
    background: #0f0d09;
    border: 1px solid #3d3218;
    padding: 25px 15px;
    text-align: center;
}
.stat-num {
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.stat-label {
    font-size: 14px;
    color: #706850;
}
.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.action-btn {
    padding: 10px 25px;
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border: 1px solid #c9a227;
    color: #0a0a0d;
    font-weight: bold;
}
.action-btn:hover {
    background: linear-gradient(180deg, #e0b830 0%, #a8861c 100%);
    color: #0a0a0d;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* ==================== 我的发布 ==================== */
.my-server-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.my-server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: #0f0d09;
    border: 1px solid #3d3218;
    transition: all 0.2s;
}
.my-server-item:hover {
    border-color: #c9a227;
}
.my-server-info h4 {
    color: #e8e0c8;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}
.my-server-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #706850;
    margin-bottom: 6px;
}
.my-server-actions {
    display: flex;
    gap: 8px;
}
.status {
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
}
.status.pass {
    border-color: rgba(46, 125, 50, 0.5);
    color: #66bb6a;
    background: rgba(46, 125, 50, 0.1);
}
.status.reject {
    border-color: rgba(146, 43, 33, 0.5);
    color: #ef5350;
    background: rgba(146, 43, 33, 0.1);
}
.status.audit, .status.wait {
    border-color: rgba(237, 108, 2, 0.5);
    color: #ffa726;
    background: rgba(237, 108, 2, 0.1);
}

/* ==================== 详情页 ==================== */
.detail-header {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 2px solid #3d3218;
    padding: 30px;
    margin-bottom: 20px;
}
.detail-title {
    font-size: 28px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.download-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 25px;
}
.download-btn {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    border: 1px solid;
}
.download-btn.login {
    background: linear-gradient(180deg, #c9a227 0%, #927417 100%);
    border-color: #c9a227;
    color: #0a0a0d;
}
.download-btn.client {
    background: linear-gradient(180deg, #922b21 0%, #641c16 100%);
    border-color: #922b21;
    color: #fff;
}
.download-btn.patch {
    background: linear-gradient(180deg, #1f4e79 0%, #143350 100%);
    border-color: #1f4e79;
    color: #fff;
}
.download-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.detail-content {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 25px;
    line-height: 1.8;
    color: #c0b8a0;
}
.sidebar-card {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 20px;
    margin-bottom: 15px;
}
.sidebar-title {
    font-size: 17px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3d3218;
}
.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #2d2718;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list .label {
    color: #706850;
}

/* ==================== 后台管理 统一奇迹风格 ==================== */
.admin-content {
    background: linear-gradient(180deg, #1e1a12 0%, #16130e 100%);
    border: 1px solid #3d3218;
    padding: 25px;
}
.admin-content table {
    width: 100%;
    border-collapse: collapse;
}
.admin-content table th, .admin-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #2d2718;
    font-size: 14px;
}
.admin-content table th {
    background: #0f0d09;
    color: #d4af37;
    font-weight: bold;
}
.admin-content table tr:hover td {
    background: rgba(201, 162, 39, 0.05);
}
.msg {
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid;
}
.msg.success {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.3);
    color: #66bb6a;
}
.msg.error {
    background: rgba(146, 43, 33, 0.1);
    border-color: rgba(146, 43, 33, 0.3);
    color: #ef5350;
}

/* 后台侧边栏样式适配 */
.admin-sidebar {
    background: #0f0d09 !important;
    border-right: 2px solid #c9a227 !important;
}
.admin-logo {
    color: #d4af37 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
}
.admin-menu a {
    border-left: 3px solid transparent !important;
}
.admin-menu a:hover, .admin-menu a.active {
    background: rgba(201, 162, 39, 0.1) !important;
    color: #d4af37 !important;
    border-left-color: #c9a227 !important;
}
.admin-top {
    border-bottom: 1px solid #3d3218 !important;
}
.admin-top h2 {
    color: #d4af37 !important;
}
.stat-card {
    background: #0f0d09 !important;
    border: 1px solid #3d3218 !important;
}
.btn {
    background: linear-gradient(180deg, #252018 0%, #1a1610 100%) !important;
    border: 1px solid #3d3218 !important;
    color: #e8e0c8 !important;
}
.btn:hover {
    border-color: #c9a227 !important;
    color: #d4af37 !important;
}
.btn-sm {
    background: rgba(201, 162, 39, 0.2) !important;
    color: #d4af37 !important;
    border: none !important;
}
.btn-sm.danger {
    background: rgba(146, 43, 33, 0.2) !important;
    color: #ef5350 !important;
}
table {
    background: #16130e !important;
    border: 1px solid #3d3218 !important;
}
th {
    background: #0f0d09 !important;
    color: #d4af37 !important;
    border-bottom: 1px solid #3d3218 !important;
}
td {
    border-bottom: 1px solid #2d2718 !important;
}
input, select, textarea {
    background: #0f0d09 !important;
    border: 1px solid #3d3218 !important;
    color: #e8e0c8 !important;
}
input:focus, select:focus, textarea:focus {
    border-color: #c9a227 !important;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.2) !important;
}

/* ==================== 页脚 ==================== */
.site-footer {
    background: linear-gradient(180deg, #0f0d09 0%, #0a0806 100%);
    border-top: 2px solid #c9a227;
    padding: 35px 0 20px;
    margin-top: 50px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}
.footer-title {
    color: #d4af37;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #706850;
    font-size: 13px;
}
.footer-links a:hover {
    color: #d4af37;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d2718;
    color: #585038;
    font-size: 13px;
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 992px) {
    .quick-nav {
        grid-template-columns: repeat(3, 1fr);
    }
    .server-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-grid, .user-center {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner-text h1 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .banner-item {
        padding: 40px 20px;
    }
    .banner-text h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }
    .banner-text p {
        font-size: 15px;
    }
    .quick-nav, .server-grid, .stat-cards, .download-btns {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .my-server-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .my-server-actions {
        width: 100%;
    }
    .my-server-actions .btn-sm {
        flex: 1;
        text-align: center;
    }
    .quick-actions {
        flex-direction: column;
    }
    .action-btn {
        text-align: center;
    }
    .auth-card, .form-card {
        padding: 25px 20px;
    }
    .search-box {
        flex-direction: column;
    }
    .search-box button {
        padding: 12px;
    }
}