/* ============================================
   奖品专区/选品页专用样式
   布局基线：
   - 内容容器：1200px
   - 两列：左 840px + 右 336px
   - 列间距：24px
   - 区块间距：16px
   - 卡片圆角：12px
   - 卡片阴影统一：0 10px 30px rgba(15, 23, 42, 0.06)
   ============================================ */

/* ============================================
   1. 进行中控制台条
   高度：56px | 左240/中auto/右280
   使用fixed定位，在导航栏下方
   ============================================ */
.console-bar {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    height: 56px;
    background: #FFFBFA;
    border-bottom: 1px solid rgba(227, 77, 89, 0.1);
    z-index: 99;
    display: none;
}

.console-bar.show {
    display: block;
}

/* 当控制台条显示时，给body增加padding */
body.has-console-bar {
    padding-top: 112px; /* 56px nav + 56px console bar */
}

.console-bar-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* 左：状态pill + 关键句 */
.console-left {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.console-title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    white-space: nowrap;
}

.console-divider {
    color: #D0D0D0;
}

.console-key-info {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

.console-key-info strong {
    font-weight: 600;
}

.text-red {
    color: #E34D59;
}

.text-green {
    color: #52C41A;
}

/* 中：进度条 */
.console-center {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.console-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.console-progress-bar {
    height: 8px;
    background: rgba(227, 77, 89, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.console-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E34D59, #F06B77);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.console-progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.console-progress-text {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.console-progress-text strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* 右：按钮组 */
.console-right {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.console-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 36px;
    padding: 0 20px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.console-btn-primary:hover {
    background: linear-gradient(135deg, #C73845, #B02D39);
    box-shadow: 0 4px 12px rgba(227, 77, 89, 0.35);
}

.console-btn-primary.pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(227, 77, 89, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(227, 77, 89, 0); }
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.2s;
}

.console-btn-primary:hover .btn-arrow {
    transform: translateX(2px);
}

.console-btn-ghost {
    height: 36px;
    padding: 0 16px;
    background: white;
    color: #666;
    border: 1px solid #E0E0E0;
    border-radius: 18px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.console-btn-ghost:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
}

/* 新手引导条 */
.console-bar-guide {
    background: #F0F7FF;
    border-bottom-color: rgba(30, 58, 95, 0.1);
}

.console-guide-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.console-guide-icon {
    font-size: 18px;
}

.console-guide-text {
    font-size: 13px;
    color: #4A4A4A;
}

.console-guide-text strong {
    color: #1E3A5F;
}

.console-guide-link {
    font-size: 13px;
    color: #1E3A5F;
    text-decoration: none;
    white-space: nowrap;
}

.console-guide-link:hover {
    text-decoration: underline;
}

/* 临门一脚条 */
.console-bar-final {
    background: linear-gradient(90deg, #FFF9F0 0%, #FFF5F5 100%);
    border-bottom-color: rgba(212, 168, 83, 0.2);
}

.console-final-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.console-final-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #D4A853, #F0C674);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.console-final-text {
    font-size: 14px;
    color: #4A4A4A;
}

.console-final-text strong {
    color: #1A1A1A;
}

.console-final-countdown {
    font-size: 13px;
    color: #E34D59;
}

.console-final-countdown strong {
    font-family: "DIN Alternate", -apple-system, sans-serif;
    font-weight: 600;
}

/* ============================================
   2. 主布局：左840 + 右336
   ============================================ */
.main-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.main-left {
    width: 840px;
    flex-shrink: 0;
}

.main-right {
    width: 336px;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 16px; /* 相对于滚动容器的顶部，body已经有了padding-top */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 当有控制台条时，sidebar sticky需要留出更多空间 */
body.has-console-bar .sidebar-sticky {
    top: 128px; /* 56px nav + 56px console + 16px gap */
}

body:not(.has-console-bar) .sidebar-sticky {
    top: 72px; /* 56px nav + 16px gap */
}

/* ============================================
   3. 选品导购卡
   ============================================ */
.guide-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.guide-card {
    flex: 1;
    height: 72px;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.guide-card:hover {
    border-color: #1E3A5F;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.guide-card.active {
    border-color: #E34D59;
    background: #FFFBFA;
}

.guide-card-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    gap: 12px;
}

.guide-card-icon {
    width: 40px;
    height: 40px;
    background: #F5F7FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.guide-card:hover .guide-card-icon {
    transform: scale(1.08);
}

.guide-card[data-guide="hot"]:hover .guide-card-icon,
.guide-card[data-guide="hot"].active .guide-card-icon {
    background: rgba(227, 77, 89, 0.1);
}

.guide-card[data-guide="new"]:hover .guide-card-icon,
.guide-card[data-guide="new"].active .guide-card-icon {
    background: rgba(212, 168, 83, 0.1);
}

.guide-card[data-guide="pro"]:hover .guide-card-icon,
.guide-card[data-guide="pro"].active .guide-card-icon {
    background: rgba(30, 58, 95, 0.1);
}

.guide-card-content {
    flex: 1;
    min-width: 0;
}

.guide-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.guide-card-desc {
    font-size: 12px;
    color: #8C8C8C;
}

.guide-card-arrow {
    font-size: 18px;
    color: #BFBFBF;
    transition: all 0.2s;
}

.guide-card:hover .guide-card-arrow {
    color: #1E3A5F;
    transform: translateX(2px);
}

.guide-card-badge {
    position: absolute;
    top: 0;
    right: 12px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 0 0 6px 6px;
    color: white;
}

.guide-card-badge.hot {
    background: #E34D59;
}

.guide-card-badge.new {
    background: #D4A853;
}

.guide-card-badge.pro {
    background: #1E3A5F;
}

/* ============================================
   4. 精选推荐区
   每张：320w × 360h 固定高度
   顶栏：浅底+左3px色条
   CTA区：固定底部72px
   ============================================ */
.featured-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.section-icon {
    font-size: 18px;
}

.section-subtitle {
    font-size: 12px;
    color: #8C8C8C;
}

.featured-cards {
    display: flex;
    gap: 16px;
}

.featured-card {
    width: 260px;
    height: 360px;
    flex-shrink: 0;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.featured-card:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* 轻顶栏：浅底+左色条 */
.featured-card-header {
    height: 44px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid transparent;
}

.featured-card[data-type="hot"] .featured-card-header {
    background: rgba(227, 77, 89, 0.05);
    border-left-color: #E34D59;
}

.featured-card[data-type="new"] .featured-card-header {
    background: rgba(212, 168, 83, 0.06);
    border-left-color: #D4A853;
}

.featured-card[data-type="pro"] .featured-card-header {
    background: rgba(30, 58, 95, 0.06);
    border-left-color: #1E3A5F;
}

.featured-card-tag {
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.featured-card[data-type="hot"] .featured-card-tag {
    background: #E34D59;
    color: white;
}

.featured-card[data-type="new"] .featured-card-tag {
    background: #D4A853;
    color: white;
}

.featured-card[data-type="pro"] .featured-card-tag {
    background: #1E3A5F;
    color: white;
}

.featured-card-benefit {
    font-size: 12px;
    color: #666;
}

/* 卡片主体 */
.featured-card-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.featured-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.featured-card-subtitle {
    font-size: 12px;
    color: #8C8C8C;
    margin-bottom: 12px;
}

/* 配置chips（单行） */
.featured-card-specs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    overflow: hidden;
}

.spec-chip {
    padding: 3px 8px;
    background: #F5F7FA;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* 三指标（统一样式） */
.featured-card-metrics {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: #FAFBFC;
    border-radius: 8px;
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-label {
    font-size: 10px;
    color: #8C8C8C;
    display: block;
    margin-bottom: 2px;
}

.metric-value {
    font-size: 13px;
    font-weight: 600;
    color: #1E3A5F;
}

.metric-value.highlight {
    color: #52C41A;
}

/* 价格区 */
.featured-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
}

.featured-card-price .price-label {
    font-size: 11px;
    color: #8C8C8C;
}

.featured-card-price .price-main {
    font-size: 28px;
    font-weight: 700;
    color: #E34D59;
    font-family: "DIN Alternate", -apple-system, sans-serif;
    line-height: 1;
}

.featured-card-price .price-original {
    font-size: 12px;
    color: #BFBFBF;
    text-decoration: line-through;
}

/* CTA区（固定底部72px） */
.featured-card-cta {
    height: 72px;
    padding: 12px 16px;
    border-top: 1px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.featured-btn {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.featured-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transition: left 0.5s;
}

.featured-btn:hover {
    box-shadow: 0 6px 16px rgba(227, 77, 89, 0.4);
    transform: translateY(-2px);
}

.featured-btn:hover::before {
    left: 100%;
}

.featured-cta-note {
    font-size: 10px;
    color: #BFBFBF;
}

/* ============================================
   5. 全部云服务器列表
   双列网格：408×164
   ============================================ */
.server-list-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.filter-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
}

.filter-count {
    font-size: 13px;
    color: #8C8C8C;
}

.filter-count strong {
    color: #E34D59;
}

.filter-selected {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #E8F4FD;
    border-radius: 100px;
    font-size: 12px;
    color: #1E3A5F;
}

.filter-close {
    width: 16px;
    height: 16px;
    background: rgba(30, 58, 95, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
}

.filter-close:hover {
    background: rgba(30, 58, 95, 0.3);
}

.filter-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 分类Tab */
.category-tabs {
    display: flex;
    gap: 4px;
}

.category-tab {
    padding: 6px 12px;
    font-size: 13px;
    color: #666;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.category-tab:hover {
    background: #F5F7FA;
    color: #1E3A5F;
}

.category-tab.active {
    background: #1E3A5F;
    color: white;
}

/* 排序下拉 */
.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F8F9FB;
    border: 1px solid #E9EDF3;
    border-radius: 6px;
    font-size: 13px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.15s;
}

.sort-btn:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
}

.sort-icon {
    font-size: 10px;
    transition: transform 0.2s;
}

.sort-dropdown.open .sort-icon {
    transform: rotate(180deg);
}

.sort-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    overflow: hidden;
}

.sort-dropdown.open .sort-menu {
    display: block;
    animation: dropdown-in 0.15s ease;
}

@keyframes dropdown-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.sort-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 13px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.1s;
}

.sort-item:hover {
    background: #F8F9FB;
}

.sort-item.active {
    color: #E34D59;
    background: #FFF5F5;
}

.sort-item .check {
    display: none;
    color: #E34D59;
    font-size: 12px;
}

.sort-item.active .check {
    display: inline;
}

/* 双列网格 */
.server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* 服务器卡片：408×164 */
.server-card {
    height: 164px;
    background: white;
    border: 1px solid #E9EDF3;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.server-card:hover {
    border-color: #1E3A5F;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

/* 卡片顶部：图标+标题+标签 */
.server-card-top {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.server-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.server-card-info {
    flex: 1;
    min-width: 0;
}

.server-card-row1 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.server-card-tag {
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    color: white;
    flex-shrink: 0;
}

.server-card-tag.hot { background: #E34D59; }
.server-card-tag.new { background: #D4A853; }
.server-card-tag.pro { background: #1E3A5F; }
.server-card-tag.ai { background: #52C41A; }

.server-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.server-card-usage {
    font-size: 12px;
    color: #8C8C8C;
}

/* 配置chips */
.server-card-specs {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.server-spec-chip {
    padding: 2px 6px;
    background: #F5F7FA;
    border-radius: 4px;
    font-size: 10px;
    color: #666;
}

/* 底部：三指标 + 价格 + 按钮 */
.server-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

/* 三指标行（统一样式，不贴边） */
.server-card-metrics {
    display: flex;
    gap: 16px;
}

.server-card-metric {
    font-size: 11px;
    color: #666;
}

.server-card-metric-label {
    color: #8C8C8C;
}

.server-card-metric-value {
    font-weight: 600;
    color: #1E3A5F;
}

.server-card-metric-value.rate {
    color: #52C41A;
}

/* 价格+按钮区 */
.server-card-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.server-card-price {
    text-align: right;
}

.server-card-price-main {
    font-size: 24px;
    font-weight: 700;
    color: #E34D59;
    font-family: "DIN Alternate", -apple-system, sans-serif;
    line-height: 1;
}

.server-card-price-original {
    font-size: 11px;
    color: #BFBFBF;
    text-decoration: line-through;
}

.server-card-btn {
    width: 88px;
    height: 32px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.server-card-btn:hover {
    box-shadow: 0 4px 12px rgba(227, 77, 89, 0.4);
}

.server-card-btn.secondary {
    background: white;
    color: #E34D59;
    border: 1px solid #E34D59;
}

.server-card-btn.secondary:hover {
    background: #FFF5F5;
    box-shadow: none;
}

.server-card-btn.continue {
    background: linear-gradient(135deg, #1E3A5F, #3B5998);
}

.server-card-btn.continue:hover {
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
}

/* ============================================
   6. 右侧栏模块
   战报220h / 任务180h / 入口160h / 保障140h
   ============================================ */
.sidebar-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #F0F0F0;
}

.sidebar-card-header.clickable {
    cursor: pointer;
    transition: background 0.15s;
}

.sidebar-card-header.clickable:hover {
    background: #FAFBFC;
}

.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.sidebar-card-meta {
    font-size: 11px;
    color: #BFBFBF;
}

.sidebar-arrow {
    font-size: 16px;
    color: #BFBFBF;
    transition: transform 0.2s;
}

.sidebar-arrow.expanded {
    transform: rotate(90deg);
}

/* 实时战报 */
#live-report-card {
    height: 220px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #52C41A;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-report-list {
    height: 162px;
    overflow: hidden;
}

.live-report-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    transition: background 0.15s;
    animation: live-item-in 0.3s ease;
}

@keyframes live-item-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.live-report-item:hover {
    background: #FAFBFC;
}

.live-avatar {
    width: 28px;
    height: 28px;
    background: #E8F4FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.live-content {
    flex: 1;
    font-size: 12px;
    color: #4A4A4A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-content .name {
    font-weight: 500;
}

.live-content .amount {
    color: #E34D59;
    font-weight: 600;
}

.live-content .success {
    color: #52C41A;
    font-weight: 600;
}

.live-time {
    font-size: 11px;
    color: #BFBFBF;
    flex-shrink: 0;
}

/* 任务加速 */
#task-boost-card {
    min-height: 180px;
}

.task-icon {
    font-size: 16px;
}

.task-badge {
    padding: 2px 6px;
    background: #E34D59;
    color: white;
    font-size: 10px;
    font-weight: 500;
    border-radius: 100px;
}

.task-list {
    padding: 8px;
}

.task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: all 0.15s;
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-item.highlight {
    background: #FFFBFA;
    border: 1px solid rgba(227, 77, 89, 0.08);
}

.task-item:not(.highlight) {
    background: #F8F9FB;
}

.task-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.task-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.task-item-icon {
    font-size: 18px;
}

.task-item-name {
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
}

.task-item-desc {
    font-size: 11px;
    color: #8C8C8C;
}

.task-item-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-reward {
    font-size: 13px;
    font-weight: 600;
    color: #E34D59;
}

.task-btn {
    height: 26px;
    padding: 0 12px;
    background: linear-gradient(135deg, #E34D59, #C73845);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.task-btn:hover {
    box-shadow: 0 2px 8px rgba(227, 77, 89, 0.4);
}

.task-btn.ghost {
    background: white;
    color: #666;
    border: 1px solid #E0E0E0;
}

.task-btn.ghost:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
    box-shadow: none;
}

.task-expand {
    padding: 0 8px 8px;
}

.task-footer {
    padding: 10px 16px;
    text-align: center;
    font-size: 12px;
    color: #8C8C8C;
    border-top: 1px dashed #E9EDF3;
    cursor: pointer;
    transition: all 0.15s;
}

.task-footer:hover {
    color: #1E3A5F;
    background: #FAFBFC;
}

/* 快捷入口 */
.quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: #F8F9FB;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s;
}

.quick-link:hover {
    background: #E8F4FD;
    transform: translateY(-2px);
}

.quick-link-icon {
    font-size: 18px;
}

.quick-link span:last-child {
    font-size: 12px;
    color: #666;
}

.quick-link:hover span:last-child {
    color: #1E3A5F;
}

/* 保障与规则 */
.sidebar-card-trust {
    height: 180px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    padding: 16px 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4A4A4A;
}

.trust-icon {
    font-size: 16px;
}

.trust-link {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    color: #1E3A5F;
    text-decoration: none;
    border-top: 1px dashed #E9EDF3;
    transition: all 0.15s;
}

.trust-link:hover {
    background: #F8F9FB;
}

/* ============================================
   7. 对比栏
   ============================================ */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: white;
    border-top: 1px solid #E9EDF3;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.compare-bar.show {
    display: flex;
    animation: slide-up 0.3s ease;
}

@keyframes slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.compare-bar-inner {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-items {
    display: flex;
    gap: 16px;
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #F8F9FB;
    border-radius: 8px;
}

.compare-item-icon {
    width: 36px;
    height: 36px;
    background: #E8F4FD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.compare-item-name {
    font-size: 13px;
    font-weight: 500;
    color: #1A1A1A;
}

.compare-item-remove {
    width: 18px;
    height: 18px;
    background: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8C8C8C;
    cursor: pointer;
    transition: all 0.15s;
}

.compare-item-remove:hover {
    background: #E34D59;
    color: white;
}

.compare-placeholder {
    width: 180px;
    height: 52px;
    border: 2px dashed #E0E0E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #BFBFBF;
}

.compare-actions {
    display: flex;
    gap: 12px;
}

.compare-btn-primary {
    height: 40px;
    padding: 0 24px;
    background: #1E3A5F;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.compare-btn-primary:hover {
    background: #162D4A;
}

.compare-btn-ghost {
    height: 40px;
    padding: 0 20px;
    background: white;
    color: #666;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s;
}

.compare-btn-ghost:hover {
    border-color: #1E3A5F;
    color: #1E3A5F;
}

/* ============================================
   8. 空状态
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-title {
    font-size: 15px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.empty-desc {
    font-size: 13px;
    color: #8C8C8C;
    margin-bottom: 20px;
}

/* ============================================
   9. 奖品专区布局修正
   ============================================ */
.console-bar-inner {
    gap: 18px;
}

.console-left {
    width: 410px;
    min-width: 0;
}

.console-title {
    overflow: hidden;
    text-overflow: ellipsis;
}

.console-center {
    min-width: 260px;
    max-width: 360px;
}

.console-progress-wrap {
    justify-content: center;
    gap: 5px;
    min-height: 34px;
}

.console-progress-text {
    line-height: 16px;
}

.console-right {
    width: 300px;
}

.featured-card {
    height: 348px;
}

.featured-card-benefit {
    white-space: nowrap;
}

.featured-card-specs {
    margin-bottom: 12px;
}

.featured-card-metrics {
    margin-bottom: 14px;
}

.featured-card-price {
    padding-bottom: 2px;
}

.featured-card-cta {
    height: 64px;
    padding: 10px 16px 14px;
}

.filter-bar {
    gap: 16px;
}

.filter-bar-right {
    min-width: 0;
}

.category-tabs {
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

.server-card {
    min-width: 0;
    height: 150px;
    box-sizing: border-box;
}

.server-card-top {
    min-width: 0;
    margin-bottom: 10px;
}

.server-card-row1 {
    min-width: 0;
}

.server-card-usage {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-card-bottom {
    justify-content: flex-end;
}

.server-card-btn {
    width: 92px;
}
