/* ============================================
   TheZovio Game Portal - Channel/Category Page Styles
   Dark Gaming Theme
   ============================================ */

/* Channel page header banner */
.zv-channel-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--zv-purple) 0%, var(--zv-cyan) 100%);
    border-radius: var(--zv-radius-lg);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.zv-channel-banner::before {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.zv-channel-banner::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.zv-channel-icon-lg {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.zv-channel-icon-lg::before {
    content: "";
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 6px;
}

.zv-channel-info {
    z-index: 1;
    color: #ffffff;
}

.zv-channel-name {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.zv-channel-count {
    font-size: 0.88rem;
    opacity: 0.9;
}

/* Game count display */
.zv-game-count {
    color: var(--zv-text-muted);
    font-size: 0.85rem;
    margin-bottom: 18px;
    padding: 0 4px;
}

.zv-game-count strong {
    color: var(--zv-cyan);
    font-weight: 700;
}

/* Compact grid for "More Games" section */
.zv-section--compact .zv-game-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width: 1024px) {
    .zv-section--compact .zv-game-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .zv-section--compact .zv-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zv-channel-banner {
        padding: 20px 22px;
    }

    .zv-channel-name {
        font-size: 1.2rem;
    }

    .zv-channel-icon-lg {
        width: 48px;
        height: 48px;
    }
}
