/* 直播广场 /live — PC 端优化版 */
:root {
    --live-brand: var(--theme-color-primary, var(--color-brand-500));
    --live-brand-d: var(--theme-color-dark, var(--color-brand-600));
    --live-brand-l: var(--theme-color-light-1, #FF9C66);
    --live-red: #e84025;
    --live-bg: #f2f4f8;
    --live-card: #fff;
    --live-bdr: #eaecf0;
    --live-t1: #1a1d24;
    --live-t2: #5a6073;
    --live-t3: #9ca3af;
}

.live-hub-page {
    min-height: calc(100vh - var(--live-top-offset, 64px));
    background: linear-gradient(180deg, #e8ecf2 0%, var(--live-bg) 120px, var(--live-bg) 100%);
    padding-bottom: 64px;
    box-sizing: border-box;
}

.live-hub-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 28px 40px;
    box-sizing: border-box;
}

.live-hub-body {
    display: block;
}

.live-hub-primary {
    min-width: 0;
}

.live-hub-aside {
    display: none;
}

/* ========== Hero 区域 ========== */
.live-hub-hero {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 56px 64px;
    margin: 0 0 32px;
    background: linear-gradient(135deg, var(--live-brand-d) 0%, var(--live-brand) 50%, var(--live-brand-l) 100%);
    box-shadow: 0 16px 48px rgba(255, 114, 36, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.live-hub-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.live-hub-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.live-hub-hero-text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 240px;
}

.live-hub-hero-text h1 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.live-hub-hero-text p {
    font-size: clamp(15px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
    line-height: 1.7;
    max-width: 768px;
}

.live-hub-hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.live-hub-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 12px 20px;
    color: #fff;
    backdrop-filter: blur(4px);
}

.live-hub-hero-stat .stat-icon {
    font-size: 22px;
    opacity: 0.9;
}

.live-hub-hero-stat .stat-num {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.live-hub-hero-stat .stat-label {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 2px;
}

.live-hub-hero-cta {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.live-hub-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.live-hub-cta-btn.primary {
    background: #fff;
    color: var(--live-brand);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.live-hub-cta-btn.ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.live-hub-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* ========== 个性化横滑区 ========== */
.live-hub-personal {
    margin-bottom: 24px;
}

.live-hub-personal-section {
    margin-bottom: 20px;
}

.live-hub-personal-section:last-child {
    margin-bottom: 0;
}

.live-hub-personal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--live-t1);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-hub-personal-title .layui-icon {
    color: var(--live-brand);
    font-size: 18px;
}

.live-hub-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.live-hub-scroll::-webkit-scrollbar {
    display: none;
}

.hub-scroll-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--live-card);
    border: 1px solid var(--live-bdr);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hub-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.hub-scroll-cover {
    position: relative;
    width: 200px;
    height: 112px;
    background: #1a1d24;
}

.hub-scroll-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hub-scroll-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(232, 64, 37, 0.92);
    border-radius: 10px;
    padding: 3px 8px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.hub-scroll-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: hub-pulse 1.4s ease-in-out infinite;
}

@keyframes hub-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.7); }
}

.hub-scroll-viewers {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 10px;
    color: #fff;
}

.hub-scroll-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
}

.hub-scroll-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
}

.hub-scroll-texts {
    flex: 1;
    min-width: 0;
}

.hub-scroll-name {
    font-size: 11px;
    color: var(--live-t2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hub-scroll-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--live-t1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35;
}

/* ========== Sticky 工具栏 ========== */
.live-hub-toolbar {
    position: sticky;
    top: var(--live-top-offset, 64px);
    z-index: 20;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--live-bdr);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 16px 22px;
    margin-bottom: 24px;
}

.live-hub-tabs {
    display: flex;
    gap: 6px;
    background: #f0f2f6;
    border-radius: 13px;
    padding: 5px;
    max-width: none;
}

.live-hub-tab {
    flex: 0 1 auto;
    min-width: 100px;
    padding: 10px 32px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    text-align: center;
}

.live-hub-tab:hover {
    color: var(--live-brand);
}

.live-hub-tab.active {
    background: #fff;
    color: var(--live-brand);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* ========== 内容区 ========== */
#hubPanel {
    min-height: 200px;
}

.hub-skeleton {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.hub-skeleton-block {
    border-radius: 16px;
    background: linear-gradient(90deg, #e8eaef 25%, #f4f5f7 50%, #e8eaef 75%);
    background-size: 200% 100%;
    animation: hub-shimmer 1.2s ease-in-out infinite;
    aspect-ratio: 16/9;
}

@keyframes hub-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.hub-empty {
    text-align: center;
    padding: 72px 20px;
    color: var(--live-t3);
    font-size: 14px;
    background: var(--live-card);
    border-radius: 16px;
    border: 1px solid var(--live-bdr);
}

.hub-empty .layui-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 14px;
    color: #d1d5db;
}

.hub-empty p {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--live-t2);
}

.hub-empty small {
    font-size: 13px;
    color: var(--live-t3);
}

/* ========== 热门 Featured ========== */
.hub-hot-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hub-hot-main {
    min-width: 0;
}

.hub-hot-side-title {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--live-t1);
    margin: 0 0 14px;
    padding-left: 4px;
}

.hub-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #0a0a0f;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s, box-shadow 0.25s;
}

.hub-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hub-featured-cover {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.hub-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 35%, transparent 48%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 22px;
    pointer-events: none;
}

.hub-featured-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hub-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.hub-tag.live {
    background: rgba(232, 64, 37, 0.92);
}

.hub-tag.rec {
    background: rgba(255, 193, 7, 0.92);
    color: #1a1206;
}

.hub-featured-bottom {
    color: #fff;
}

.hub-featured-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hub-featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    flex-wrap: wrap;
}

.hub-featured-meta-text {
    flex: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hub-featured-enter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--live-brand), #ff3d6e);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(255, 61, 110, 0.4);
    flex-shrink: 0;
}

.hub-featured-enter .layui-icon {
    font-size: 14px;
}

.hub-featured-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    object-fit: cover;
}

/* ========== 卡片网格 ========== */
.hub-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.hub-card {
    background: var(--live-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--live-bdr);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}

.hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.hub-card.is-disabled {
    opacity: 0.6;
    cursor: default;
    pointer-events: none;
}

.hub-card-cover-wrap {
    position: relative;
}

.hub-card-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #e5e7eb;
    display: block;
}

.hub-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(232, 64, 37, 0.92);
    color: #fff;
    font-size: 11px;
    border-radius: 10px;
    padding: 3px 10px;
    font-weight: 600;
}

.hub-card-viewers {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    border-radius: 10px;
    padding: 3px 10px;
    font-weight: 500;
}

.hub-card-body {
    padding: 14px 14px 16px;
}

.hub-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--live-t1);
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-card-meta {
    font-size: 13px;
    color: var(--live-t3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hub-card-meta img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========== 列表行（正在直播 / 回放） ========== */
.hub-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hub-list-item {
    display: flex;
    gap: 18px;
    background: var(--live-card);
    border: 1px solid var(--live-bdr);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
    padding: 0;
}

.hub-list-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hub-list-item.is-disabled {
    opacity: 0.6;
    cursor: default;
}

.hub-list-cover-wrap {
    position: relative;
    flex-shrink: 0;
    width: 260px;
    aspect-ratio: 16/9;
    background: #111;
}

.hub-list-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hub-list-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: background 0.2s;
}

.hub-list-item:hover .hub-list-play {
    background: rgba(0, 0, 0, 0.35);
}

.hub-list-play .layui-icon {
    font-size: 44px;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.hub-duration-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 600;
}

.hub-list-body {
    flex: 1;
    min-width: 0;
    padding: 16px 20px 16px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hub-list-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--live-t1);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-list-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--live-t2);
}

.hub-list-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.hub-list-tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 8px;
    background: rgba(255, 114, 68, 0.1);
    color: var(--live-brand);
    font-size: 12px;
    font-weight: 600;
}

.hub-list-sub {
    color: var(--live-t3);
}

.hub-list-enter {
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 11px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--live-brand), #ff3d6e);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 61, 110, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hub-list-item:hover .hub-list-enter {
    transform: scale(1.03);
}

.hub-list-enter .layui-icon {
    font-size: 14px;
}

/* ========== 右侧栏 ========== */
.hub-aside-card {
    background: var(--live-card);
    border: 1px solid var(--live-bdr);
    border-radius: 18px;
    padding: 24px 22px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hub-aside-card:last-child {
    margin-bottom: 0;
}

.hub-aside-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--live-t1);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-aside-card h3 .layui-icon {
    color: var(--live-brand);
    font-size: 20px;
}

.hub-aside-card p {
    font-size: 13px;
    color: var(--live-t2);
    line-height: 1.7;
    margin: 0 0 16px;
}

.hub-aside-download {
    background: linear-gradient(160deg, var(--theme-color-light-5, #FFF1E9) 0%, #fff 55%);
    border-color: rgba(255, 114, 68, 0.18);
}

.hub-aside-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--live-brand);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hub-aside-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 114, 68, 0.3);
    color: #fff;
}

.hub-aside-btn.ghost {
    background: #f4f5f7;
    color: var(--live-t1);
    box-shadow: none;
}

.hub-aside-btn.ghost:hover {
    background: #eaecf0;
    box-shadow: none;
}

.hub-aside-tips ul {
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 13px;
    color: var(--live-t2);
    line-height: 1.85;
}

.hub-aside-tips li {
    margin-bottom: 6px;
}

/* ========== 预告卡片 ========== */
.hub-schedule-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.hub-schedule-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(232, 64, 37, 0.9);
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
    padding: 3px 10px;
    font-weight: 600;
}

.hub-schedule-time-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
    padding: 3px 10px;
    font-weight: 700;
}

.hub-schedule-remind-count {
    font-size: 12px;
    color: var(--live-t3);
    margin-top: 6px;
}

.hub-schedule-remind-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 0;
    border: 0;
    border-radius: 10px;
    background: var(--theme-color-light-5, #FFF0ED);
    color: var(--live-red);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}

.hub-schedule-remind-btn:hover {
    background: var(--theme-color-light-4, #FFE0D8);
}

.hub-schedule-remind-btn:disabled,
.hub-schedule-remind-btn.is-reminded {
    opacity: 0.6;
    cursor: default;
    background: #f4f5f7;
    color: #9ba3b5;
}

/* ========== 分页 ========== */
.hub-pagination {
    text-align: center;
    margin-top: 36px;
}

/* ========== 响应式 ========== */

/* 桌面宽屏 (>=1200px) */
@media (min-width: 1200px) {
    .live-hub-inner {
        padding: 28px 32px 56px;
    }

    .live-hub-hero {
        padding: 60px 72px;
        margin-bottom: 36px;
        border-radius: 24px;
    }

    .live-hub-hero-cta {
        display: none;
    }

    .live-hub-body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 28px;
        align-items: start;
    }

    .live-hub-aside {
        display: block;
        position: sticky;
        top: calc(var(--live-top-offset, 64px) + 16px);
    }

    .live-hub-toolbar {
        padding: 18px 24px;
        margin-bottom: 28px;
    }

    .live-hub-tab {
        min-width: 110px;
        padding: 11px 34px;
        font-size: 15px;
    }

    .hub-scroll-card {
        width: 220px;
        border-radius: 16px;
    }

    .hub-scroll-cover {
        width: 220px;
        height: 124px;
    }

    .live-hub-personal-title {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .live-hub-scroll {
        gap: 16px;
    }

    /* 热门：主推荐 + 侧栏网格 */
    .hub-hot-layout--split {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
        gap: 24px;
        align-items: start;
    }

    .hub-hot-side-title {
        display: block;
    }

    .hub-hot-side-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hub-featured {
        border-radius: 20px;
        min-height: 400px;
    }

    .hub-featured-title {
        font-size: clamp(24px, 2vw, 32px);
    }

    .hub-featured-meta img {
        width: 44px;
        height: 44px;
    }

    .hub-featured-enter {
        padding: 13px 30px;
        font-size: 15px;
    }

    .hub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .hub-card-title {
        font-size: 15px;
    }

    .hub-card-body {
        padding: 14px 16px 16px;
    }

    /* 正在直播 / 回放行 */
    .hub-list {
        gap: 16px;
    }

    .hub-list-item {
        border-radius: 18px;
        align-items: stretch;
    }

    .hub-list-cover-wrap {
        width: min(40%, 400px);
        max-width: 400px;
        aspect-ratio: 16/9;
    }

    .hub-list-play .layui-icon {
        font-size: 52px;
    }

    .hub-list-body {
        flex-direction: row;
        align-items: center;
        padding: 20px 24px 20px 8px;
        gap: 16px;
    }

    .hub-list-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hub-list-meta {
        font-size: 14px;
    }

    .hub-list-meta img {
        width: 34px;
        height: 34px;
    }

    .hub-list-enter {
        display: inline-flex;
    }

    .hub-schedule-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .hub-empty {
        padding: 80px 32px;
    }

    .hub-empty .layui-icon {
        font-size: 60px;
    }

    .hub-pagination {
        margin-top: 40px;
    }
}

/* 超大屏 (>=1440px) */
@media (min-width: 1400px) {
    .live-hub-body {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 36px;
    }

    .live-hub-hero {
        padding: 72px 88px;
    }

    .hub-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hub-hot-layout--split .hub-hot-side-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-schedule-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hub-list-cover-wrap {
        width: min(38%, 440px);
        max-width: 440px;
    }
}

/* 2K+ 宽屏 */
@media (min-width: 1400px) {
    .live-hub-inner {
        max-width: 1600px;
    }

    .live-hub-body {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 40px;
    }

    .hub-featured-cover {
        max-height: 500px;
    }

    .hub-grid {
        gap: 24px;
    }
}

/* 平板及以下 */
@media (max-width: 992px) {
    .live-hub-hero {
        padding: 32px 28px;
    }

    .live-hub-hero-stats {
        gap: 12px;
    }

    .live-hub-hero-stat {
        padding: 10px 16px;
    }

    .live-hub-hero-stat .stat-num {
        font-size: 20px;
    }

    .hub-list-cover-wrap {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .live-hub-inner {
        padding: 0 10px 20px;
    }

    .live-hub-hero {
        padding: 28px 18px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .live-hub-hero-text h1 {
        font-size: 24px;
    }

    .live-hub-hero-stats {
        width: 100%;
    }

    .live-hub-hero-stat {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
    }

    .live-hub-hero-cta {
        width: 100%;
    }

    .live-hub-cta-btn {
        flex: 1;
        justify-content: center;
    }

    .live-hub-tabs {
        max-width: none;
    }

    .live-hub-tab {
        font-size: 13px;
        padding: 9px 8px;
        min-width: auto;
    }

    .live-hub-toolbar {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .hub-list-item {
        flex-direction: column;
    }

    .hub-list-cover-wrap {
        width: 100%;
    }

    .hub-list-body {
        padding: 0 12px 14px;
    }

    .hub-grid,
    .hub-schedule-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hub-schedule-date-badge,
    .hub-schedule-time-badge {
        font-size: 10px;
        padding: 2px 7px;
    }
}

@media (max-width: 480px) {
    .hub-grid,
    .hub-schedule-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .hub-live-mobile-grid {
        display: none !important;
    }

    .live-hub-toolbar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .hub-live-list-desktop {
        display: none !important;
    }
}
