/* ============================================
   Myskie.com - Category / Channel Page Styles v2
   Banner + tabs layout
   ============================================ */

/* Game list container */
.ms-channel-main {
    min-width: 0;
}

/* Sort bar (legacy, simplified) */
.ms-channel-sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0;
    margin-bottom: 16px;
}

.ms-channel-sort span {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 600;
}

/* More games section spacing */
.ms-more-section {
    margin-top: 40px;
}

/* Category About section */
.ms-cat-about {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.06);
}

.ms-cat-about p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.9;
}

/* Editor's Top Picks */
.ms-cat-picks {
    margin-bottom: 32px;
}

.ms-cat-picks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ms-cat-pick {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.05);
    border-left: 4px solid #8b5cf6;
}

.ms-cat-pick:nth-child(1) { border-left-color: #6366f1; }
.ms-cat-pick:nth-child(2) { border-left-color: #f59e0b; }
.ms-cat-pick:nth-child(3) { border-left-color: #10b981; }
.ms-cat-pick:nth-child(4) { border-left-color: #ec4899; }
.ms-cat-pick:nth-child(5) { border-left-color: #06b6d4; }

.ms-cat-pick-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

.ms-cat-pick-body h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 4px;
}

.ms-cat-pick-body p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Category FAQ */
.ms-cat-faq {
    margin-bottom: 32px;
}

/* Category Links */
.ms-cat-links {
    margin-bottom: 32px;
}

.ms-cat-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ms-cat-link-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #ffffff;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.06);
    transition: all 0.2s ease;
}

.ms-cat-link-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
    .ms-cat-about { padding: 24px 18px; }
    .ms-cat-pick { padding: 16px 18px; gap: 12px; }
    .ms-cat-pick-num { width: 30px; height: 30px; font-size: 0.78rem; }
}
