/* ============================================================
   私服发布站
   ============================================================ */
* { margin:0; padding:0; box-sizing:border-box; }

body {
    background: #f5f6f8;
    font-size: 14px;
    font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: #1e293b;
    line-height: 1.5;
    padding-top: 35px;
}

a { color: #1a1a1a; text-decoration: none; }
a:hover { color: #ff5500; }

/* ===== Header ===== */
.site-header {
    width: 100%;
    height: 35px;
    background: #0f0f0f;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    height: 100%;
}
.site-header .logo-brand {
    font-family: "Orbitron", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
}
.site-header .logo-9 { color: #ff5500; text-shadow: 0 0 10px rgba(255,85,0,0.6); }
.site-header .logo-fb { color: #ff5500; text-shadow: 0 0 10px rgba(255,85,0,0.6); }
.site-header .logo-domain {
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}
.site-header .logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: #666;
    letter-spacing: 2px;
}

/* ===== Header Nav ===== */
.header-nav {
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-link {
    color: #aaa;
    font-size: 12px;
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
    user-select: none;
}
.nav-link:hover { color: #fff; }
.nav-link i { font-size: 11px; }
.nav-link .fa-chevron-down { font-size: 9px; color: #666; }

/* ===== Dropdown ===== */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 520px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 12px;
    max-height: 70vh;
    overflow-y: auto;
}
.dropdown-trigger:hover .dropdown-menu {
    display: block;
}
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.dropdown-item {

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 12px;
    color: #334155;
    text-decoration: none;
    background: #f8fafc;
    transition: all 0.15s;
}
.dropdown-item:hover {
    background: #0f0f0f;
    color: #fff;
}
.dropdown-count {
    font-size: 10px;
    color: #94a3b8;
    background: #e2e8f0;
    padding: 1px 7px;
}
.dropdown-item:hover .dropdown-count {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.dropdown-item-all {
    background: #fff7ed;
    font-weight: 600;
    color: #f97316;
}
.dropdown-item-all:hover {
    background: #0f0f0f;
    color: #fff;
}

/* ===== Game Buttons ===== */
.game-type-buttons {
    max-width: 1100px; margin:0 auto;
    padding:12px 0;
    display:grid; grid-template-columns:repeat(6,1fr); gap:6px;
    background:transparent;
    border-bottom:none;
}
.type-btn {
    display:inline-flex; align-items:center; gap:6px;
    padding:5px 14px;
    background:#f1f5f9;
    color:#475569;
    font-size:13px;
    text-decoration:none;
    transition:all 0.2s;
    border:1px solid transparent;
}
.type-btn:hover { background:#f97316; color:#fff; border-color:#f97316; }
.type-btn-active { background:#f97316 !important; color:#fff !important; border-color:#f97316 !important; }
.type-btn-count {
    display:inline-flex; align-items:center; justify-content:center;
    min-width:20px; height:16px; padding:0 5px;
    background:rgba(0,0,0,0.08);
    font-size:10px; font-weight:600; color:inherit;
    line-height:1;
}
.type-btn:hover .type-btn-count { background:rgba(255,255,255,0.25); }
.type-btn-active .type-btn-count { background:rgba(255,255,255,0.25) !important; }

/* ===== Top Bar ===== */
.top-ad-bar {
    width:1100px; margin:0 auto;
    background:linear-gradient(135deg, #fef3c7, #fde68a);
    padding:10px 24px;
    font-size:13px; color:#92400e; font-weight:500;
    border-bottom:1px solid #f59e0b;
}

/* ===== Table ===== */
.server-table {
    width:100%;
    border-collapse:collapse;
    font-size:13px;
    background:#fff;
}
.server-table thead th {
    background:#f8f9fb;
    color:#64748b;
    height:34px;
    padding:0 10px;
    text-align:center;
    font-weight:600;
    font-size:11px;
    white-space:nowrap;
    letter-spacing:0.3px;
    border-bottom:1px solid #e2e8f0;
}
.server-table tbody td {
    padding:7px 10px;
    border-bottom:1px solid #f1f5f9;
    text-align:center;
    font-size:12px;
}
.server-table tbody tr:hover td { background:#fafbfc; }
.server-table tbody tr.row-top td { background:#fefce8 !important; }
.server-table tbody tr.row-featured td { background:#fff1f2 !important; }

.server-table .td-name { text-align:left; }
.server-table .td-name a { font-size:12px; font-weight:600; color:#1e293b; }
.server-table .td-name a:hover { color:#ff5500; }
.server-table .td-desc { font-size:12px; color:#94a3b8; text-align:left; max-width:180px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.server-table .td-date { font-size:11px; color:#dc2626; font-weight:500; text-align:left; white-space:nowrap; }
.server-table .td-stats { font-size:12px; color:#94a3b8; }
.server-table .td-action a.viewlink {
    display:inline-block; padding:3px 12px;
    background:#f1f5f9; color:#64748b;
    font-size:11px; white-space:nowrap;
    text-decoration:none;
    transition:all 0.15s;
}
.server-table .td-action a.viewlink:hover { background:#ff5500; color:#fff; }

/* ===== Footer ===== */
.site-footer {
    width: 100%;
    background: #0f0f0f;
    text-align: center;
    padding: 28px 16px;
    color: #666;
    font-size: 12px;
    line-height: 2;
}
.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.site-footer a { color: #888; font-size: 12px; }
.site-footer a:hover { color: #ff5500; }

/* ===== Type listing ===== */
.type-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.type-main {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: 16px 16px 0;
}
.type-sidebar {
    width: 280px;
    flex-shrink: 0;
}
.type-header { background:transparent; border-bottom:none; margin-bottom:4px; }
.type-header h1 { font-size:20px; font-weight:700; color:#1e293b; margin-bottom:4px; }
.type-header p { font-size:13px; color:#64748b; }

/* Date tabs */
.date-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    padding: 10px 0;
}
.date-tab {
    display: inline-block;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.15s;
}
.date-tab:hover { color: #ff5500; border-color: #e2e8f0; }
.date-tab.active { background: #ff5500; color: #fff; border-color: #ff5500; }
.date-tab-picker {
    margin-left: auto;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    background: #fff;
    cursor: pointer;
}

/* Date archive */
.date-archive {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 260px;
    overflow-y: auto;
}
.archive-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 8px;
    font-size: 12px;
    text-decoration: none;
    color: #475569;
    background: #f8fafc;
    transition: all 0.12s;
}
.archive-item:hover { background: #fff7ed; color: #ff5500; }
.archive-item.active { background: #ff5500; color: #fff; }
.archive-date { font-weight: 500; }
.archive-cnt { font-size: 11px; color: #94a3b8; }
.archive-item:hover .archive-cnt { color: #ff5500; }
.archive-item.active .archive-cnt { color: rgba(255,255,255,0.8); }

.breadcrumb { max-width:1100px; margin:0 auto; padding:8px 0; font-size:12px; color:#94a3b8; background:transparent; border-bottom:none; }
.breadcrumb a { color:#64748b; font-size:12px; }
.breadcrumb a:hover { color:#dc2626; }
.breadcrumb li { display:inline; }
.breadcrumb li+li::before { content:"/"; margin:0 6px; color:#cbd5e1; }

.pagination { max-width:1100px; margin:0 auto; padding:16px 0; text-align:center; }
.pagination .page-btn { display:inline-block; padding:5px 12px; margin:0 2px; border:1px solid #e2e8f0; background:#fff; color:#64748b; font-size:12px; text-decoration:none; }
.pagination .page-btn:hover, .pagination .page-btn.active { background:#1e293b; color:#fff; border-color:#1e293b; }

.search-page { max-width:1100px; margin:16px auto; }
.search-page-header { background:#fff; border:1px solid #e2e8f0; padding:20px 24px; }
.search-page-input { flex:1; padding:10px 16px; border:2px solid #1e293b; font-size:14px; outline:none; }
.search-page-btn { padding:10px 28px; background:#1e293b; color:#fff; border:none; font-size:14px; font-weight:600; cursor:pointer; }
.search-page-info { font-size:13px; color:#64748b; padding:12px 24px; background:#fff; border-bottom:1px solid #e2e8f0; }
.search-highlight { color:#dc2626; font-weight:700; }

.error-page { max-width:1100px; margin:0 auto; padding:60px 24px; text-align:center; }
.empty-state { text-align:center; padding:40px 24px; color:#999; font-size:13px; background:#fff; max-width:1100px; margin:0 auto; }

.btn-go { display:inline-block; padding:4px 14px; background:#f1f5f9; color:#475569; font-size:12px; text-decoration:none; transition:all 0.15s; }
.btn-go:hover { background:#ff5500; color:#fff; }
.stats-cell { font-size:12px; color:#94a3b8; white-space:nowrap; }
.stats-cell i { margin:0 2px; }
.actions-cell { text-align:center; }
.server-title-cell { text-align:left; }
.server-title-cell a { font-size:13px; font-weight:500; color:#1e293b; }
.server-title-cell a:hover { color:#ff5500; }

/* ============================================================
   首页 — Hero
   ============================================================ */
.home-hero {
    width: 100%;
    background: #111;
    padding: 24px 0 20px;
}
.home-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hero-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2px;
}
.hero-title span { color: #ff5500; }
.hero-sub {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-bottom: 16px;
}
.hero-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto 16px;
}
.hero-search input {
    flex: 1;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #222;
    background: #1a1a1a;
    color: #ccc;
    font-size: 12px;
    outline: none;
}
.hero-search input::placeholder { color: #444; }
.hero-search input:focus { border-color: #ff5500; }
.hero-search button {
    width: 60px;
    height: 34px;
    background: #ff5500;
    color: #fff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}
.hero-search button:hover { background: #e64a00; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 16px; font-weight: 700; color: #eee; }
.hero-stat-label { display: block; font-size: 11px; color: #555; margin-top: 1px; }

/* ============================================================
   首页 — 主布局 + 侧边栏
   ============================================================ */
.home-layout {
    max-width: 1100px;
    margin: 16px auto;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.home-main {
    flex: 1;
    min-width: 0;
}
.home-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* ===== Block ===== */
.block {
    background: #fff;
    border: 1px solid #e2e8f0;
    margin-bottom: 14px;
}
.block-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    border-bottom: 1px solid #e2e8f0;
}
.block-header-icon {
    color: #ff5500;
    font-size: 12px;
    width: 18px;
    text-align: center;
}
.block-header-title {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}
.block-header h2,
.block-header h3 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}
.block-header-more {
    font-size: 11px;
    color: #94a3b8;
}
.block-header-more:hover { color: #ff5500; }
.block-body {
    padding: 12px 14px;
}
.block-body.no-pad {
    padding: 0;
}

/* ===== Game Card Grid ===== */
.game-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.game-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    text-decoration: none;
    background: #f8f9fb;
    border: 1px solid #eef0f2;
    transition: all 0.12s;
}
.game-card:hover {
    border-color: #ff5500;
    background: #fff;
}
.game-card-name {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}
.game-card-count {
    font-size: 10px;
    color: #999;
}
.game-card-empty {
    opacity: 0.5;
}
.game-card-more {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #ff5500;
    cursor: pointer;
    border: 1px dashed #e2e8f0;
    border-radius: 4px;
    margin-top: 6px;
}
.game-card-more:hover {
    background: #fff5f0;
}

/* ===== Sidebar ===== */
.sidebar-hot-list {
    list-style: none;
}
.sidebar-hot-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
}
.sidebar-hot-list li + li {
    border-top: 1px solid #f0f0f0;
}
.sidebar-hot-rank {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    background: #f0f0f0;
    flex-shrink: 0;
}
.sidebar-hot-list li:nth-child(1) .sidebar-hot-rank,
.sidebar-hot-list li:nth-child(2) .sidebar-hot-rank,
.sidebar-hot-list li:nth-child(3) .sidebar-hot-rank {
    background: #ff5500;
    color: #fff;
}
.sidebar-hot-list li a {
    flex: 1;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-hot-list li a:hover { color: #ff5500; }
.sidebar-hot-clicks {
    font-size: 11px;
    color: #bbb;
    flex-shrink: 0;
}
.sidebar-stats {
    list-style: none;
}
.sidebar-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 5px 0;
    color: #666;
}
.sidebar-stats li + li {
    border-top: 1px solid #f0f0f0;
}

.empty-state-inline { text-align:center; padding:24px; color:#94a3b8; font-size:13px; }

/* ===== 随机推荐 ===== */
.sidebar-rec-list {
    list-style: none;
}
.sidebar-rec-list li {
    padding: 6px 0;
    font-size: 12px;
}
.sidebar-rec-list li + li {
    border-top: 1px solid #f0f0f0;
}
.sidebar-rec-list li a {
    display: block;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-rec-list li a:hover { color: #ff5500; }
.sidebar-rec-meta {
    font-size: 11px;
    color: #bbb;
    margin-top: 1px;
}

/* ===== 标签云 ===== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tag-item {
    display: inline-block;
    padding: 2px 8px;
    color: #666;
    background: #f5f5f5;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.12s;
}
.tag-item:hover {
    background: #ff5500;
    color: #fff;
}

/* ============================================================
   内容页 — 详情
   ============================================================ */
.detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-main {
    flex: 1;
    min-width: 0;
}
.detail-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* ===== Detail hero ===== */
.detail-hero {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    margin-bottom: 14px;
}
.detail-hero-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.detail-game-tag {
    display: inline-block;
    padding: 2px 10px;
    background: #fff7ed;
    color: #ff5500;
    font-size: 11px;
    font-weight: 600;
}
.detail-qq-tag {
    display: inline-block;
    padding: 2px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
}
.detail-hero h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 16px;
}
.detail-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
    padding: 14px 18px;
    background: #f8f9fb;
}
.hero-stat-item {
    flex: 1;
    text-align: center;
}
.hero-stat-val {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
}
.hero-stat-lbl {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
}
.detail-hero-actions {
    display: flex;
    gap: 8px;
}
.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    background: #ff5500;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-visit:hover { background: #e64a00; color: #fff; }
.btn-like {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.15s;
}
.btn-like:hover { border-color: #ff5500; color: #ff5500; }
.btn-like.liked { background: #fff7ed; border-color: #ff5500; color: #ff5500; }
.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 9px 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.15s;
}
.btn-share:hover { border-color: #ff5500; color: #ff5500; }

/* Stat tabs */
.stat-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}
.stat-tab {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
}
.stat-tab:hover { color: #ff5500; border-color: #e2e8f0; }
.stat-tab.active { background: #ff5500; color: #fff; border-color: #ff5500; }
.stat-date-input {
    margin-left: auto;
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    background: #fff;
    cursor: pointer;
}
.stat-panel { display: none; }
.stat-panel.active { display: block; }

/* Stats grid */
.stats-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.stat-cell {
    flex: 1;
    min-width: 60px;
    text-align: center;
    padding: 12px 6px;
    background: #f8fafc;
}
.stat-cell .num {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}
.stat-cell .lbl {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Trend chart */
.trend-chart-wrap {
    padding-top: 8px;
}
.trend-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
}
.trend-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.trend-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
}
.trend-bar {
    flex: 1;
    min-height: 2px;
}
.trend-bar.pv { background: #ff5500; }
.trend-bar.uv { background: #fde68a; }
.trend-date {
    font-size: 10px;
    color: #94a3b8;
}
.trend-legend {
    display: flex;
    gap: 14px;
    justify-content: center;
    font-size: 11px;
    color: #64748b;
    margin-top: 8px;
}
.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
}
.legend-dot.pv { background: #ff5500; }
.legend-dot.uv { background: #fde68a; }

/* Detail info table */
.detail-props {
    display: grid;
    gap: 8px;
}
.detail-prop {
    display: flex;
    gap: 8px;
    font-size: 13px;
}
.detail-prop .pl {
    width: 80px;
    flex-shrink: 0;
    color: #94a3b8;
}
.detail-prop .pv { color: #334155; }
.detail-desc-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.7;
}


/* Hot list */
.hot-list {
    list-style: none;
}
.hot-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 12px;
}
.hot-list li:last-child { border-bottom: none; }
.hot-rank {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    flex-shrink: 0;
}
.hot-list li:nth-child(1) .hot-rank,
.hot-list li:nth-child(2) .hot-rank,
.hot-list li:nth-child(3) .hot-rank {
    background: #ff5500;
    color: #fff;
}
.hot-list li a {
    flex: 1;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hot-list li a:hover { color: #ff5500; }
.hot-clicks {
    font-size: 10px;
    color: #94a3b8;
    flex-shrink: 0;
}

.side-stats {
    list-style: none;
}
.side-stats li {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 5px 0;
    color: #64748b;
    border-bottom: 1px solid #f8fafc;
}
.side-stats li:last-child { border-bottom: none; }

@media (max-width: 860px) {
    .home-layout { flex-direction: column; }
    .home-sidebar { width: 100%; }
    .game-card-grid { grid-template-columns: repeat(2, 1fr); }
    .game-type-buttons { grid-template-columns: repeat(3, 1fr); }
    .detail-wrapper { flex-direction: column; }
    .detail-sidebar { width: 100%; }
    .hero-title { font-size: 17px; }
    .type-layout { flex-direction: column; }
    .type-sidebar { width: 100%; }
    .date-tabs { flex-wrap: wrap; }
}
