        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            min-height: 100vh;
        }
        .top-nav {
            position: fixed; top: 0; left: 0; right: 0;
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 20px; z-index: 100; background: transparent;
        }
        .nav-icon {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; cursor: pointer;
            transition: all 0.2s; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
        }
        .nav-icon:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
        .nav-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .nav-icon.user-icon svg { fill: rgba(255,255,255,0.15); stroke: rgba(255,255,255,0.8); }
        .nav-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
        .theme-toggle {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; cursor: pointer;
            transition: all 0.2s; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8); flex-shrink: 0;
        }
        .theme-toggle:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
        .theme-toggle svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .menu-wrapper { position: relative; }
        .dropdown {
            display: none; position: absolute; top: 48px; right: 0;
            background: rgba(30, 27, 75, 0.95); border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px; min-width: 160px; padding: 8px;
            backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            animation: fadeDown 0.2s ease;
        }
        .dropdown.show { display: block; }
        @keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
        .dropdown a {
            display: flex; align-items: center; gap: 10px; padding: 12px 16px;
            color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px;
            border-radius: 10px; transition: all 0.15s;
        }
        .dropdown a:hover { background: rgba(99, 102, 241, 0.2); color: #fff; }
        .dropdown a svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .dropdown .divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 8px; }
        .main { display: flex; align-items: flex-start; justify-content: center; padding: 105px 20px 20px; }
        .container { text-align: center; max-width: 800px; width: 100%; }
        .logo { font-size: 56px; font-weight: 800; letter-spacing: 6px; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(99, 102, 241, 0.5); }
        .logo span { background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .subtitle { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 40px; letter-spacing: 2px; font-weight: 300; }
        .ai-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2)); border: 1px solid rgba(99,102,241,0.3); border-radius: 20px; font-size: 12px; color: #a5b4fc; margin-bottom: 16px; }
        .ai-badge svg { width: 14px; height: 14px; }
        .search-wrapper {
            display: flex; align-items: center; background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15); border-radius: 24px; padding: 6px;
            backdrop-filter: blur(20px); transition: all 0.3s;
        }
        .search-wrapper:focus-within { border-color: rgba(99, 102, 241, 0.6); box-shadow: 0 0 30px rgba(99, 102, 241, 0.2); background: rgba(255,255,255,0.12); }
        .search-wrapper input { flex: 1; height: 52px; border: none; background: transparent; color: #fff; font-size: 16px; padding: 0 20px; outline: none; font-family: inherit; }
        .search-wrapper input::placeholder { color: rgba(255,255,255,0.35); }
        .search-wrapper button {
            width: 48px; height: 48px; border-radius: 50%; border: none;
            background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all 0.3s; align-self: flex-end;
        }
        .search-wrapper button:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
        .search-wrapper button:disabled { opacity: 0.5; cursor: not-allowed; }
        .search-wrapper button svg { width: 22px; height: 22px; }
        .mv-banner { display: inline-block; margin: 16px auto 0; padding: 8px 14px; background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(52,211,153,0.08)); border: 1px dashed rgba(16,185,129,0.35); border-radius: 8px; text-align: center; color: rgba(16,185,129,0.9); font-size: 13px; text-decoration: none; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.mv-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%); animation: mvShine 3s ease-in-out infinite; }
@keyframes mvShine { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10%,10%); } }
.mv-banner:hover { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.12)); border-color: rgba(16,185,129,0.5); color: #10b981; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,185,129,0.15); }
.mv-banner svg { vertical-align: middle; margin-right: 6px; }
.hot-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
        .hot-tag {
            padding: 8px 18px; border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px; font-size: 13px; cursor: pointer;
            transition: all 0.2s; backdrop-filter: blur(10px); white-space: nowrap;
        }
        .hot-tag:hover { filter: brightness(1.2); transform: translateY(-1px); }
        .hot-tag.hot { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); color: #f87171; }
        .hot-tag.c0 { background: rgba(99, 102, 241, 0.15); border-color: rgba(99, 102, 241, 0.3); color: #a5b4fc; }
        .hot-tag.c1 { background: rgba(16, 185, 129, 0.15); border-color: rgba(16, 185, 129, 0.3); color: #6ee7b7; }
        .hot-tag.c2 { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.3); color: #fcd34d; }
        .hot-tag.c3 { background: rgba(236, 72, 153, 0.15); border-color: rgba(236, 72, 153, 0.3); color: #f9a8d4; }
        .hot-tag.c4 { background: rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.3); color: #7dd3fc; }
        .hot-tag.c5 { background: rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.3); color: #c4b5fd; }
        .hot-tag.c6 { background: rgba(251, 146, 60, 0.15); border-color: rgba(251, 146, 60, 0.3); color: #fdba74; }
        .hot-tag.c7 { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }
        .results { margin-top: 24px; text-align: left; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; overflow: hidden; }
        .result-item {
            display: flex; flex-direction: column; gap: 8px; padding: 10px;
            background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; cursor: pointer;
            transition: all 0.2s; backdrop-filter: blur(10px); text-decoration: none; color: inherit;
            overflow: hidden; min-width: 0;
        }
        .result-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(99, 102, 241, 0.3); transform: translateY(-2px); }
        .result-item .thumb {
            width: 100%; height: 140px; border-radius: 8px; flex-shrink: 0;
            background-color: rgba(99, 102, 241, 0.2);
            display: flex; align-items: center; justify-content: center; font-size: 22px;
            overflow: hidden;
        }
        .result-item .thumb img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .result-item .info { flex: 1; min-width: 0; }
        .result-item .info .title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .result-item .info .meta { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .result-item .info .reason { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .result-item .play-icon { display: none; }
        .search-status { text-align: center; padding: 30px; color: rgba(255,255,255,0.5); font-size: 14px; }
        .loading-spinner { width: 36px; height: 36px; border: 3px solid rgba(255,255,255,0.1); border-top-color: #6366f1; border-radius: 50%; margin: 0 auto 12px; animation: spin 0.8s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }
        /* 骨架屏 */
        @keyframes shimmer { 0% { background-position: -200px 0; } 100% { background-position: 200px 0; } }
        .skeleton { background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%); background-size: 400px 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: 8px; }
        .skeleton-card { display: flex; gap: 12px; padding: 12px; margin-bottom: 8px; border-radius: 12px; background: rgba(255,255,255,0.03); }
        .skeleton-thumb { width: 100px; height: 60px; border-radius: 8px; flex-shrink: 0; }
        .skeleton-info { flex: 1; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
        .skeleton-title { height: 16px; width: 70%; }
        .skeleton-meta { height: 12px; width: 50%; }
        .skeleton-reason { height: 12px; width: 90%; }
        .hot-section { max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 16px 0; }
        .hot-section .section-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .hot-section .section-subtitle { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
        /* 横向导航标签 */
        .hot-nav { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
        .hot-nav::-webkit-scrollbar { height: 0; }
        .hot-nav-tab {
            flex-shrink: 0; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
            cursor: pointer; transition: all 0.3s; white-space: nowrap; border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65);
            backdrop-filter: blur(10px); display: flex; align-items: center; gap: 5px;
        }
        .hot-nav-tab svg { width: 14px; height: 14px; flex-shrink: 0; }
        .hot-nav-tab.active {
            background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(139,92,246,0.3));
            border-color: rgba(139,92,246,0.5); color: #fff; box-shadow: 0 2px 12px rgba(99,102,241,0.25);
        }
        .hot-nav-tab:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
        .hot-nav-tab.active:hover { background: linear-gradient(135deg, rgba(99,102,241,0.45), rgba(139,92,246,0.4)); }
        /* 内容网格 */
        .hot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .hot-card {
            display: flex; text-decoration: none; border-radius: 14px; overflow: hidden;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s; backdrop-filter: blur(10px); height: 100px;
        }
        .hot-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(99,102,241,0.35); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        .hot-card .hot-thumb {
            width: 70px; min-width: 70px;
            background-color: rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .hot-card .hot-thumb img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .hot-card .hot-info { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; flex: 1; }
        .hot-card .hot-name { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
        .hot-card .hot-meta { font-size: 11px; color: rgba(255,255,255,0.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .hot-card .hot-tag { display: inline-block; font-size: 10px; padding: 2px 6px; border-radius: 8px; background: rgba(99,102,241,0.2); color: #a5b4fc; margin-top: 4px; }
        @media (max-width: 480px) {
            .logo { font-size: 42px; letter-spacing: 4px; }
            .subtitle { font-size: 14px; margin-bottom: 30px; }
            .search-wrapper input { height: 46px; font-size: 15px; }
            .search-wrapper button { width: 42px; height: 42px; }
            .top-nav { padding: 12px 16px; }
        }


/* ========== 主题切换 ========== */
/* 浅色模式变量覆盖（默认深色，添加 data-theme="light" 切换浅色） */
[data-theme="light"] body {
  background: #f5f6f8 !important;
  color: #1a1a1a;
}
[data-theme="light"] .top-nav {
  background: transparent !important;
  border-bottom: none;
}
[data-theme="light"] .nav-icon {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.08) !important;
  color: #1a1a1a;
}
[data-theme="light"] .nav-icon svg {
  stroke: #4a4a5a;
}
[data-theme="light"] .nav-icon.user-icon svg {
  fill: rgba(0,0,0,0.08);
  stroke: #4a4a5a;
}
[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.05) !important;
  border-color: rgba(0,0,0,0.08) !important;
  color: #4a4a5a;
}
[data-theme="light"] .theme-toggle svg {
  stroke: #4a4a5a;
}
[data-theme="light"] .theme-toggle:hover {
  background: rgba(0,0,0,0.1) !important;
  border-color: rgba(0,0,0,0.15) !important;
}
[data-theme="light"] .nav-icon:hover {
  background: rgba(0,0,0,0.1) !important;
  border-color: rgba(0,0,0,0.15) !important;
}
[data-theme="light"] .dropdown {
  background: #ffffff;
  border-color: #ececef;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
[data-theme="light"] .dropdown a {
  color: #1a1a1a;
}
[data-theme="light"] .dropdown a:hover {
  background: #fff0e6;
  color: #FF6B00;
}
[data-theme="light"] .divider {
  background: #ececef;
}
[data-theme="light"] .logo span {
  background: linear-gradient(135deg, #FF6B00, #FF8C00, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .subtitle {
  color: #8a8a8e;
}
[data-theme="light"] .search-wrapper {
  background: #ffffff;
  border: 2px solid #ececef;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
[data-theme="light"] .search-wrapper:focus-within {
  border-color: #FF6B00;
  box-shadow: 0 2px 16px rgba(255,107,0,0.15);
}
[data-theme="light"] .search-wrapper input {
  color: #1a1a1a;
}
[data-theme="light"] .search-wrapper input::placeholder {
}
[data-theme="light"] .search-wrapper button {
  background: linear-gradient(135deg, #FF6B00, #FF8C00);
  color: #fff;
}
[data-theme="light"] .result-item {
  background: #ffffff;
  border-color: #ececef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="light"] .result-item:hover {
  border-color: rgba(255,107,0,0.25);
}
[data-theme="light"] .result-item .title {
  color: #1a1a1a;
}
[data-theme="light"] .result-item .meta {
  color: #8a8a8e;
}
[data-theme="light"] .hot-card {
  background: #ffffff;
  border-color: #ececef;
}
[data-theme="light"] .hot-card:hover {
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 4px 16px rgba(255,107,0,0.1);
}
[data-theme="light"] .hot-card .hot-name {
  color: #1a1a1a;
}
[data-theme="light"] .hot-card .hot-meta {
  color: #8a8a8e;
}
[data-theme="light"] .hot-card .hot-tag {
  background: rgba(255,107,0,0.12);
  color: #FF6B00;
}
[data-theme="light"] .hot-card .title {
  color: #1a1a1a;
}
[data-theme="light"] .hot-section .section-title {
  color: #1a1a1a;
}
[data-theme="light"] .hot-section .section-subtitle { color: rgba(0,0,0,0.55); }
[data-theme="light"] .hot-nav-tab {
  color: #6b6b7b;
  background: #f5f6f8;
  border-color: #e0e0e4;
}
[data-theme="light"] .hot-nav-tab:hover {
  background: #ececef;
  border-color: #d0d0d4;
}
[data-theme="light"] .hot-nav-tab.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,140,0,0.12));
  border-color: rgba(255,107,0,0.35);
  color: #FF6B00;
  box-shadow: 0 2px 8px rgba(255,107,0,0.12);
}
[data-theme="light"] .hot-nav-tab.active:hover {
  background: linear-gradient(135deg, rgba(255,107,0,0.22), rgba(255,140,0,0.18));
}
[data-theme="light"] .hot-nav a {
  color: #8a8a8e;
  background: #f5f6f8;
}
[data-theme="light"] .hot-nav a.active {
  color: #FF6B00;
  background: #fff0e6;
  border-color: rgba(255,107,0,0.3);
}
[data-theme="light"] .ai-badge {
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,140,0,0.1));
  border: 1px solid rgba(255,107,0,0.25);
  color: #FF6B00;
}
[data-theme="light"] .skeleton,
[data-theme="light"] .skeleton-card {
  background: #ececef;
}
/* 切换按钮图标 */
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }
/* 翻页组件 */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 6px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.page-btn {
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.page-btn:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: rgba(255,255,255,0.9);
}
.page-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.page-info {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    min-width: 50px;
    text-align: center;
}
[data-theme="light"] .pagination {
    border-top-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .page-btn {
    border-color: rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.5);
}
[data-theme="light"] .page-btn:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    color: #4f46e5;
}
[data-theme="light"] .page-info {
    color: rgba(0,0,0,0.3);
}

/* ========== 排行榜样式 V3 - 领奖台 ========== */
.ranking-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px 50px;
    box-sizing: border-box;
    overflow: hidden;
}
.ranking-header {
    text-align: center;
    margin-bottom: 32px;
}
.ranking-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.ranking-title svg {
    stroke: #f59e0b;
    filter: drop-shadow(0 0 6px rgba(245,158,11,0.5));
}
.ranking-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.ranking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}
.ranking-col {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    min-width: 0;
}
.ranking-col:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.ranking-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px 20px 0 0;
}
.ranking-col-header.daily {
    background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(251,146,60,0.12));
}
.ranking-col-header.weekly {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.12));
}
.ranking-col-header.monthly {
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.12));
}
.ranking-col-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ranking-col-header.daily .ranking-col-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 4px 16px rgba(239,68,68,0.4);
}
.ranking-col-header.weekly .ranking-col-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 16px rgba(99,102,241,0.4);
}
.ranking-col-header.monthly .ranking-col-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 4px 16px rgba(16,185,129,0.4);
}
.ranking-col-icon svg {
    stroke: #fff;
}
.ranking-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.ranking-col-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
/* ===== 领奖台前三名 ===== */
.ranking-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px 0;
    min-height: 280px;
}
/* 第2名 - 左边 */
.podium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}
.podium-card.silver {
    width: 42%;
    background: linear-gradient(180deg, rgba(148,163,184,0.15), rgba(148,163,184,0.04));
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 0 20px rgba(148,163,184,0.1);
    order: 1;
}
.podium-card.gold {
    width: 52%;
    background: linear-gradient(180deg, rgba(245,158,11,0.2), rgba(245,158,11,0.06));
    border: 1.5px solid rgba(245,158,11,0.5);
    box-shadow: 0 0 35px rgba(245,158,11,0.2), 0 8px 32px rgba(0,0,0,0.3);
    order: 2;
    transform: translateY(-12px);
    z-index: 2;
}
.podium-card.bronze {
    width: 42%;
    background: linear-gradient(180deg, rgba(217,119,6,0.15), rgba(217,119,6,0.04));
    border: 1px solid rgba(217,119,6,0.35);
    box-shadow: 0 0 20px rgba(217,119,6,0.1);
    order: 3;
}
.podium-card:hover {
    transform: translateY(-4px);
}
.podium-card.gold:hover {
    transform: translateY(-16px);
    border-color: rgba(245,158,11,0.7);
    box-shadow: 0 0 50px rgba(245,158,11,0.3), 0 12px 40px rgba(0,0,0,0.4);
}
.podium-card.silver:hover {
    border-color: rgba(148,163,184,0.6);
    box-shadow: 0 0 30px rgba(148,163,184,0.2), 0 8px 24px rgba(0,0,0,0.3);
}
.podium-card.bronze:hover {
    border-color: rgba(217,119,6,0.6);
    box-shadow: 0 0 30px rgba(217,119,6,0.2), 0 8px 24px rgba(0,0,0,0.3);
}
/* 卡片图片区 */
.podium-card .card-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}
.podium-card.gold .card-img-wrap {
    height: 160px;
}
.podium-card.silver .card-img-wrap,
.podium-card.bronze .card-img-wrap {
    height: 110px;
}
.podium-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.podium-card .card-img-wrap .card-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.podium-card.gold .card-img-wrap .card-img-fallback {
    font-size: 48px;
}
/* 排名徽章 */
.podium-card .card-rank-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    z-index: 3;
    backdrop-filter: blur(4px);
}
.podium-card.gold .card-rank-badge {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #7c2d12;
    box-shadow: 0 3px 12px rgba(245,158,11,0.5);
}
.podium-card.silver .card-rank-badge {
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    color: #334155;
    box-shadow: 0 2px 8px rgba(148,163,184,0.4);
}
.podium-card.bronze .card-rank-badge {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #451a03;
    box-shadow: 0 2px 8px rgba(217,119,6,0.4);
}
/* 皇冠 */
.podium-card.gold .card-crown {
    position: absolute;
    top: -14px;
    right: 10px;
    font-size: 26px;
    filter: drop-shadow(0 2px 6px rgba(245,158,11,0.7));
    animation: crownBounce 2s ease-in-out infinite;
    z-index: 4;
}
/* 卡片信息区 */
.podium-card .card-info {
    width: 100%;
    padding: 10px 12px;
    text-align: center;
}
.podium-card.gold .card-info {
    padding: 14px 14px;
}
.podium-card .card-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.podium-card.gold .card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.podium-card .card-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.podium-card.gold .card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.podium-card .card-meta svg {
    stroke: rgba(255,255,255,0.4);
}
.podium-card.gold .card-meta svg {
    stroke: #f59e0b;
}
/* ===== 4-10名表格 ===== */
.ranking-table {
    padding: 0 16px 12px;
}
.ranking-table-header {
    display: grid;
    grid-template-columns: 36px 1fr 60px;
    gap: 8px;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 4px;
}
.ranking-table-row {
    display: grid;
    grid-template-columns: 36px 1fr 60px;
    gap: 8px;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.ranking-table-row:hover {
    background: rgba(255,255,255,0.04);
}
.ranking-table-row .table-rank {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
}
/* 4-10名序号渐变色：红→橙→灰 */
.ranking-table-row .table-rank.r4 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 2px 6px rgba(239,68,68,0.3);
}
.ranking-table-row .table-rank.r5 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    box-shadow: 0 2px 6px rgba(249,115,22,0.3);
}
.ranking-table-row .table-rank.r6 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #7c2d12;
    box-shadow: 0 2px 6px rgba(245,158,11,0.3);
}
.ranking-table-row .table-rank.r7 {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #713f12;
    box-shadow: 0 2px 6px rgba(234,179,8,0.25);
}
.ranking-table-row .table-rank.r8 {
    background: linear-gradient(135deg, #a3a3a3, #737373);
    color: #fff;
    box-shadow: 0 2px 6px rgba(163,163,163,0.2);
}
.ranking-table-row .table-rank.r9 {
    background: linear-gradient(135deg, #78716c, #57534e);
    color: #fff;
    box-shadow: 0 2px 6px rgba(120,113,108,0.2);
}
.ranking-table-row .table-rank.r10 {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: #fff;
    box-shadow: 0 2px 6px rgba(107,114,128,0.2);
}
.ranking-table-row .table-name {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-table-row .table-count {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.ranking-empty {
    text-align: center;
    padding: 30px 16px;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}
/* 动画 */
@keyframes crownBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-4px) rotate(5deg); }
}
/* 浅色主题适配 */
[data-theme="light"] .ranking-title {
    color: #1a1a1a;
}
[data-theme="light"] .ranking-subtitle {
    color: rgba(0,0,0,0.35);
}
[data-theme="light"] .ranking-col {
    background: #ffffff;
    border-color: #e5e5ea;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
[data-theme="light"] .ranking-col:hover {
    border-color: rgba(255,107,0,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
[data-theme="light"] .ranking-col-header {
    border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .ranking-col-header.daily {
    background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(251,146,60,0.04));
}
[data-theme="light"] .ranking-col-header.weekly {
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.04));
}
[data-theme="light"] .ranking-col-header.monthly {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(52,211,153,0.04));
}
[data-theme="light"] .ranking-col-title {
    color: #1a1a1a;
}
[data-theme="light"] .ranking-col-desc {
    color: rgba(0,0,0,0.4);
}
[data-theme="light"] .podium-card.gold {
    background: linear-gradient(180deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03));
    border-color: rgba(245,158,11,0.35);
}
[data-theme="light"] .podium-card.silver {
    background: linear-gradient(180deg, rgba(148,163,184,0.1), rgba(148,163,184,0.03));
    border-color: rgba(148,163,184,0.25);
}
[data-theme="light"] .podium-card.bronze {
    background: linear-gradient(180deg, rgba(217,119,6,0.1), rgba(217,119,6,0.03));
    border-color: rgba(217,119,6,0.25);
}
[data-theme="light"] .podium-card .card-name {
    color: rgba(0,0,0,0.8);
}
[data-theme="light"] .podium-card.gold .card-name {
    color: #1a1a1a;
}
[data-theme="light"] .podium-card .card-meta {
    color: rgba(0,0,0,0.4);
}
[data-theme="light"] .ranking-table-header {
    color: rgba(0,0,0,0.3);
    border-bottom-color: rgba(0,0,0,0.04);
}
[data-theme="light"] .ranking-table-row:hover {
    background: rgba(0,0,0,0.03);
}
[data-theme="light"] .ranking-table-row .table-rank {
    background: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.5);
}
[data-theme="light"] .ranking-table-row .table-name {
    color: rgba(0,0,0,0.7);
}
[data-theme="light"] .ranking-table-row .table-count {
    color: rgba(0,0,0,0.4);
}
[data-theme="light"] .ranking-empty {
    color: rgba(0,0,0,0.45);
}
/* 移动端响应式 */
@media (max-width: 768px) {
    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ranking-section {
        padding: 0 12px 30px;
    }
    .ranking-podium {
        min-height: 240px;
        gap: 6px;
        padding: 16px 10px 0;
    }
    .podium-card.gold .card-img-wrap {
        height: 130px;
    }
    .podium-card.silver .card-img-wrap,
    .podium-card.bronze .card-img-wrap {
        height: 90px;
    }
    .podium-card.gold .card-name {
        font-size: 13px;
    }
    .podium-card .card-name {
        font-size: 11px;
    }
    .podium-card.gold .card-rank-badge {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .podium-card .card-rank-badge {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}
.carousel-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 24px;
    padding: 0 16px;
}
.carousel-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/7;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: none;
    text-decoration: none;
    cursor: pointer;
}
.carousel-slide.active {
    display: block;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: brightness(0.85);
}
.carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.carousel-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}
.carousel-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.carousel-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.4);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10;
}
.carousel-btn:hover {
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.4);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    gap: 6px;
    z-index: 10;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active {
    width: 20px;
    border-radius: 3px;
    background: #fff;
}

/* 浅色主题适配 */
[data-theme="light"] .carousel-container {
    background: #f0f0f3;
    border-color: #e0e0e4;
}
[data-theme="light"] .carousel-btn {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.15);
    color: #333;
}
[data-theme="light"] .carousel-btn:hover {
    background: rgba(255,255,255,0.9);
}
[data-theme="light"] .carousel-dot {
    background: rgba(0,0,0,0.25);
}
[data-theme="light"] .carousel-dot.active {
    background: #333;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .carousel-section {
        padding: 0 12px;
        margin-bottom: 16px;
    }
    .carousel-container {
        aspect-ratio: 16/9;
        border-radius: 12px;
    }
    .carousel-info {
        padding: 40px 16px 14px;
    }
    .carousel-title {
        font-size: 16px;
    }
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
}


/* ========== 续播卡片样式 ========== */
.resume-section { margin-top: 0; 
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 4px;
    padding: 0 16px;
}
.resume-header {
    margin-bottom: 12px;
}
.resume-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.resume-title svg {
    stroke: #10b981;
}
.resume-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
}
.resume-grid::-webkit-scrollbar { height: 0; }
.resume-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
}
.resume-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(16,185,129,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.resume-thumb {
    width: 100px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(255,255,255,0.06);
}
.resume-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resume-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,0.15);
}
.resume-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s;
}
.resume-card:hover .resume-play-icon {
    opacity: 1;
}
.resume-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.resume-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.resume-episode {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}
.resume-progress-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    margin-top: 2px;
}
.resume-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transition: width 0.5s;
}
.resume-progress-text {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
}

/* 浅色主题适配 */
[data-theme="light"] .resume-title {
    color: #1a1a1a;
}
[data-theme="light"] .resume-card {
    background: #ffffff;
    border-color: #ececef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="light"] .resume-card:hover {
    background: #fafafa;
    border-color: rgba(16,185,129,0.3);
}
[data-theme="light"] .resume-name {
    color: #1a1a1a;
}
[data-theme="light"] .resume-episode {
    color: rgba(0,0,0,0.45);
}
[data-theme="light"] .resume-progress-bar {
    background: rgba(0,0,0,0.08);
}
[data-theme="light"] .resume-progress-text {
    color: rgba(0,0,0,0.3);
}
[data-theme="light"] .resume-placeholder {
    background: rgba(99,102,241,0.08);
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .resume-section { margin-top: 0; 
        padding: 0 12px;
        margin-bottom: 14px;
    }
    .resume-card {
        width: 260px;
    }
    .resume-thumb {
        width: 80px;
        height: 56px;
    }
}


/* ========== 导航登录状态样式 ========== */
.nav-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 4px 12px 4px 4px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}
.nav-user-info:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.2);
}
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-username {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nav-login-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}
.nav-login-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
}

/* 浅色主题适配 */
[data-theme="light"] .nav-user-info {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .nav-user-info:hover {
    background: rgba(0,0,0,0.08);
}
[data-theme="light"] .nav-username {
    color: #1a1a1a;
}
[data-theme="light"] .nav-login-btn {
    color: rgba(0,0,0,0.5);
    border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .nav-login-btn:hover {
    color: #1a1a1a;
    border-color: rgba(0,0,0,0.35);
    background: rgba(0,0,0,0.04);
}


/* ========== 桌面端响应式布局 (1024px+) ========== */
@media (min-width: 1024px) {
    /* 主容器 - 扩大搜索区域 */
    .main {
        padding: 120px 40px 30px;
    }
    .container {
        max-width: 900px;
    }
    .logo {
        font-size: 72px;
        letter-spacing: 10px;
    }
    .subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    /* 搜索框 */
    .search-wrapper {
        max-width: 700px;
        margin: 0 auto;
    }
    .search-wrapper input {
        height: 56px;
        font-size: 17px;
    }
    .search-wrapper button {
        width: 52px;
        height: 52px;
    }
    
    /* 热门标签 */
    .hot-tags {
        max-width: 900px;
        gap: 12px;
        margin-top: 24px;
    }
    .hot-tag {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    /* 热门推荐区域 */
    .hot-section {
        max-width: 1400px;
        padding: 0 24px 0;
    }
    .hot-section .section-title {
        font-size: 24px;
    }
    .hot-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    /* 分类导航标签 */
    .hot-nav {
        gap: 12px;
        padding: 6px 0 8px;
        justify-content: center;
    }
    .hot-nav-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 影片网格 - 桌面端多列 */
    .vod-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
    .vod-card {
        width: 100%;
    }
    .vod-card .thumb {
        aspect-ratio: 3/4;
    }
    
    /* 续播卡片 */
    .resume-section {
        max-width: 1400px;
        padding: 0 24px;
    }
    .resume-grid {
        gap: 16px;
    }
    .resume-card {
        width: 340px;
        padding: 14px;
    }
    .resume-title {
        font-size: 18px;
    }
    
    /* 轮播图 */
    .carousel-section {
        max-width: 1400px;
        padding: 0 24px;
        margin-top: 0;
    }
    .carousel-container {
        aspect-ratio: 21/7;
        border-radius: 20px;
    }
    .carousel-title {
        font-size: 24px;
    }
    .carousel-meta {
        font-size: 14px;
    }
    
    /* 排行榜 */
    .ranking-section {
        max-width: 1400px;
        padding: 0 24px;
    }
    .ranking-grid {
        gap: 20px;
    }
    
    /* 搜索结果 */
    .results {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1400px;
        margin: 24px auto 0;
    }
    
    /* 通用间距优化 */
    body {
        font-size: 15px;
    }
}

/* ========== 大屏幕优化 (1440px+) ========== */
@media (min-width: 1440px) {
    .container {
        max-width: 1000px;
    }
    .hot-section,
    .resume-section,
    .carousel-section,
    .ranking-section {
        max-width: 1600px;
    }
    .vod-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
    }
    .results {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
    }
    .resume-card {
        width: 380px;
    }
}
