
.game-hub {
    width: 100%;
    min-height: calc(100vh - 200px);
    padding: 25px 0;
}

.bar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-bar, .honeycomb-bar, .columns-bar, .stack-bar, .featured-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bar-nav {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.nav-arrow:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: scale(1.1);
}

/* ==================== 主展示墙 - 瀑布流 ==================== */
.hub-spotlight {
    margin-bottom: 45px;
}

.spotlight-wall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    gap: 14px;
}

.wall-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.wall-block:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 18px 40px rgba(255, 107, 53, 0.2);
    z-index: 10;
}

.wall-block.block-sm {
    grid-column: span 1;
    grid-row: span 1;
}

.wall-block.block-md {
    grid-column: span 2;
    grid-row: span 2;
}

.wall-block .block-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.wall-block .block-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wall-block:hover .block-thumb {
    transform: scale(1.08);
}

.wall-block .block-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 12px 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wall-block.block-md .block-name {
    font-size: 16px;
    padding: 40px 14px 14px;
}

.wall-block .block-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
/* ==================== 横滑卡片区 - Today's Hot ==================== */
.hub-slider-box {
    margin-bottom: 45px;
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide-card {
    flex: 0 0 200px;
    background: var(--bg-cream);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.slide-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.18);
}

.slide-card .slide-poster {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.slide-card .slide-info {
    padding: 14px;
}

.slide-card .slide-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-card .slide-cat {
    font-size: 0.75rem;
    color: var(--accent-primary);
    margin-top: 4px;
    font-weight: 600;
}

.slide-card .slide-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* ==================== 蜂窝网格 - Casual Fun ==================== */
.hub-honeycomb {
    margin-bottom: 45px;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, #00B894 100%);
    border-radius: 28px;
    padding: 28px;
}

.hub-honeycomb .bar-title {
    color: #fff;
}

.honeycomb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.honey-cell {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
    padding: 10px;
}

.honey-cell:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.honey-cell .cell-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.honey-cell .cell-name {
    padding: 10px 4px 4px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 分栏布局 - Action Zone ==================== */
.hub-columns {
    margin-bottom: 45px;
    background: linear-gradient(135deg, #7B68EE 0%, #9B59B6 100%);
    border-radius: 28px;
    padding: 28px;
}

.hub-columns .bar-title {
    color: #fff;
}

.columns-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.col-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.col-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.col-card .col-visual {
    position: relative;
    overflow: hidden;
}

.col-card .col-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.col-card:hover .col-img {
    transform: scale(1.1);
}

.col-card .col-play {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.col-card:hover .col-play {
    opacity: 1;
    transform: scale(1);
}

.col-card .col-play::after {
    content: '';
    border-left: 12px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 3px;
}

.col-card .col-body {
    padding: 16px;
}

.col-card .col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== 堆叠卡片 - Girls Corner ==================== */
.hub-stack {
    margin-bottom: 45px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    border-radius: 28px;
    padding: 28px;
}

.hub-stack .bar-title {
    color: #fff;
}

.stack-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.stack-item {
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.stack-item:hover {
    transform: translateY(-8px);
    z-index: 5;
}

.stack-item .stack-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.stack-item:hover .stack-img {
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.stack-item .stack-label {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==================== 精选大卡片 - Top Picks ==================== */
.hub-featured {
    margin-bottom: 45px;
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.featured-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feat-card {
    display: flex;
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.feat-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.15);
}

.feat-card .feat-thumb {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.feat-card .feat-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feat-card:hover .feat-pic {
    transform: scale(1.1);
}

.feat-card .feat-content {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.feat-card .feat-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feat-card .feat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--accent-primary);
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
}

.feat-card:hover .feat-btn {
    background: #e55a2b;
}

/* ==================== 关于我们 - About ==================== */
.hub-about {
    margin-bottom: 20px;
}

.about-box {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.about-headline {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin: 0 0 16px 0;
}

.about-para {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-chip {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-cream);
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.tag-chip:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 1200px) {
    .spotlight-wall {
        grid-template-columns: repeat(5, 1fr);
    }
    .honeycomb-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .columns-layout {
        grid-template-columns: repeat(3, 1fr);
    }
    .stack-wrap {
        grid-template-columns: repeat(5, 1fr);
    }
    .featured-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .spotlight-wall {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 110px;
    }
    .honeycomb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .columns-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .stack-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
    .featured-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .spotlight-wall {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 90px;
        gap: 10px;
    }
    .wall-block .block-name {
        font-size: 11px;
        padding: 20px 8px 8px;
    }
    .wall-block.block-md .block-name {
        font-size: 13px;
    }
    .bar-title {
        font-size: 1.25rem;
    }
    .hub-slider-box,
    .hub-honeycomb,
    .hub-columns,
    .hub-stack,
    .hub-featured {
        padding: 20px;
        border-radius: 20px;
    }
    .slide-card {
        flex: 0 0 160px;
    }
    .honeycomb-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .columns-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .stack-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .stack-item .stack-label {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .feat-card .feat-thumb {
        width: 100px;
        height: 100px;
    }
    .feat-card .feat-content {
        padding: 14px;
    }
    .feat-card .feat-name {
        font-size: 0.95rem;
    }
    .about-box {
        padding: 25px;
    }
    .about-headline {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .spotlight-wall {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 8px;
    }
    .wall-block.block-md {
        grid-column: span 2;
        grid-row: span 2;
    }
    .wall-block .block-name {
        font-size: 10px;
        padding: 16px 6px 6px;
    }
    .bar-title {
        font-size: 1.1rem;
    }
    .hub-slider-box,
    .hub-honeycomb,
    .hub-columns,
    .hub-stack,
    .hub-featured {
        padding: 16px;
        border-radius: 18px;
        margin-bottom: 30px;
    }
    .slide-card {
        flex: 0 0 140px;
    }
    .slide-card .slide-info {
        padding: 10px;
    }
    .slide-card .slide-title {
        font-size: 0.85rem;
    }
    .honeycomb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .honey-cell {
        padding: 8px;
        border-radius: 16px;
    }
    .honey-cell .cell-name {
        font-size: 0.8rem;
    }
    .columns-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .col-card .col-body {
        padding: 12px;
    }
    .col-card .col-title {
        font-size: 0.9rem;
    }
    .stack-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .stack-item .stack-img {
        border-width: 3px;
    }
    .stack-item .stack-label {
        display: none;
    }
    .featured-row {
        gap: 14px;
    }
    .feat-card .feat-thumb {
        width: 90px;
        height: 90px;
    }
    .feat-card .feat-content {
        padding: 12px;
    }
    .feat-card .feat-name {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }
    .feat-card .feat-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    .about-box {
        padding: 20px;
        border-radius: 20px;
    }
    .about-headline {
        font-size: 1.2rem;
    }
    .about-para {
        font-size: 0.9rem;
    }
    .tag-chip {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}