/* ============================================
   TGSFH Game Portal - Channel/Category Pages
   Clean Teal Theme
   ============================================ */

/* Channel banner */
.tgs-channel-banner {
    display: flex; align-items: center; gap: 18px;
    padding: 26px 30px; background: var(--tgs-primary);
    border-radius: var(--tgs-radius-lg); margin-bottom: 22px;
    color: #fff; box-shadow: var(--tgs-shadow-md);
    position: relative; overflow: hidden;
}
.tgs-channel-banner::before {
    content: ""; position: absolute; top: -40%; right: -10%;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.tgs-channel-icon-lg { width: 48px; height: 48px; flex-shrink: 0; }
.tgs-channel-info { display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.tgs-channel-name { color: #fff; font-size: 1.4rem; font-weight: 800; line-height: 1.2; }
.tgs-channel-desc { color: rgba(255,255,255,0.82); font-size: 0.88rem; }

/* Game count */
.tgs-game-count {
    color: var(--tgs-text-secondary); font-size: 0.86rem;
    margin-bottom: 18px; padding: 8px 0; font-weight: 600;
}
.tgs-game-count strong { color: var(--tgs-primary); font-weight: 800; }

/* Channel intro block */
.tgs-channel-intro {
    background: var(--tgs-card); border-radius: var(--tgs-radius-lg);
    padding: 22px 26px; margin-bottom: 26px; box-shadow: var(--tgs-shadow);
    border-left: 4px solid var(--tgs-primary);
}
.tgs-channel-intro p {
    color: var(--tgs-text-secondary); font-size: 0.9rem; line-height: 1.75;
}
.tgs-channel-count {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--tgs-accent-bg); color: var(--tgs-accent);
    padding: 5px 14px; border-radius: 8px; font-size: 0.8rem;
    font-weight: 600; margin-top: 10px;
    border: 1.5px solid rgba(212,160,60,0.15);
}

/* Category Content Sections */
.tgs-channel-intro,
.tgs-channel-guide,
.tgs-channel-faq {
    background: var(--tgs-card); border-radius: var(--tgs-radius-lg);
    padding: 24px 28px; box-shadow: var(--tgs-shadow-md);
    margin-top: 24px;
}
.tgs-channel-intro { border-left: 5px solid var(--tgs-primary); }
.tgs-channel-guide { border-left: 5px solid var(--tgs-accent); }
.tgs-channel-faq { border-left: 5px solid var(--tgs-primary-light); }

.tgs-channel-intro-title {
    font-size: 1.2rem; font-weight: 700; color: var(--tgs-dark);
    margin-bottom: 12px;
}
.tgs-channel-intro-text {
    font-size: 0.9rem; color: var(--tgs-text-secondary);
    line-height: 1.75;
}
.tgs-channel-guide-title,
.tgs-channel-faq-title {
    font-size: 1.1rem; font-weight: 700; color: var(--tgs-dark);
    margin-bottom: 14px;
}
.tgs-channel-guide-list {
    padding-left: 20px; list-style: decimal;
}
.tgs-channel-guide-list li {
    font-size: 0.88rem; color: var(--tgs-text-secondary);
    line-height: 1.7; margin-bottom: 10px;
}
.tgs-channel-guide-list li:last-child { margin-bottom: 0; }
.tgs-channel-faq-item {
    margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--tgs-border-light);
}
.tgs-channel-faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.tgs-channel-faq-item h3 {
    font-size: 0.92rem; font-weight: 600; color: var(--tgs-dark);
    margin-bottom: 6px;
}
.tgs-channel-faq-item p {
    font-size: 0.85rem; color: var(--tgs-text-secondary);
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 640px) {
    .tgs-channel-banner { padding: 18px 20px; gap: 14px; }
    .tgs-channel-icon-lg { width: 38px; height: 38px; }
    .tgs-channel-name { font-size: 1.15rem; }
    .tgs-channel-intro,
    .tgs-channel-guide,
    .tgs-channel-faq { padding: 16px 18px; }
}
