/* ============================================
   Nhsuaf.com — Bright Fresh Design System
   Light background + red/orange/teal accents
   Fonts: Nunito (headings) + Inter (body)
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f5f6fa;
    color: #2d3436;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
    animation: nsFadeIn 0.4s ease-out;
}

@keyframes nsFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul, ol { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   HEADER — White bar, no sticky
   ============================================ */

.ns-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.ns-topbar {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}

.ns-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.ns-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.15);
}

.ns-brand-name {
    font-family: 'Nunito', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
}

/* Inline horizontal nav */
.ns-nav-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.ns-nav-inline::-webkit-scrollbar { display: none; }

.ns-nav-inline a {
    display: inline-block;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #636e72;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
}

.ns-nav-inline a:hover {
    background: #fff0f3;
    color: #e94560;
}

/* Header actions */
.ns-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ns-menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f0f0f5;
    border: 1px solid #e0e0e8;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.ns-menu-btn img { width: 20px; height: 20px; }

/* Mobile nav overlay */
.ns-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.ns-nav-overlay.ns-visible { display: block; }

.ns-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 80px 20px 24px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 2px solid #e94560;
}

.ns-mobile-nav.ns-open { right: 0; }

.ns-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: all 0.2s;
}

.ns-mobile-nav a:hover {
    background: #fff0f3;
    color: #e94560;
}

.ns-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0f0f5;
    border: 1px solid #e0e0e8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-mobile-close img { width: 18px; height: 18px; }

/* ============================================
   CONTAINER
   ============================================ */

.ns-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.ns-sec-title {
    font-family: 'Nunito', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d3436;
    margin: 44px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f5;
    position: relative;
}

.ns-sec-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #f5a623);
    border-radius: 3px;
}

.ns-sec-title span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ns-sec-title .ns-sec-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: #e94560;
    padding: 6px 16px;
    background: #fff0f3;
    border-radius: 8px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ns-sec-title .ns-sec-link:hover {
    background: #ffe0e6;
    color: #d63854;
}

/* ============================================
   GAME CARD
   ============================================ */

.ns-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.ns-card {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ns-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: #e94560;
    box-shadow: 0 10px 28px rgba(233, 69, 96, 0.12);
}

.ns-card a { display: block; }

.ns-card-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.ns-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ns-card:hover .ns-card-thumb img {
    transform: scale(1.08);
}

/* Card info area */
.ns-card-info {
    padding: 12px 14px;
}

.ns-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.ns-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ns-card-tag {
    font-size: 0.64rem;
    font-weight: 700;
    color: #e94560;
    background: #fff0f3;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ns-card-rating {
    font-size: 0.68rem;
    color: #fdcb6e;
    font-weight: 700;
}

/* ============================================
   HORIZONTAL GAME CARD
   ============================================ */

.ns-hcard {
    display: flex;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ns-hcard:hover {
    transform: translateY(-3px);
    border-color: #e94560;
    box-shadow: 0 10px 28px rgba(233, 69, 96, 0.1);
}

.ns-hcard-thumb {
    width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.ns-hcard-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-hcard-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.ns-hcard-body h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 6px;
}

.ns-hcard-body p {
    font-size: 0.78rem;
    color: #636e72;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ns-hcard-body .ns-hcard-meta {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.7rem;
    color: #b2bec3;
}

.ns-hcard-body .ns-hcard-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   GAME DETAIL PAGE
   ============================================ */

.ns-detail-banner {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eaf6 50%, #fce4ec 100%);
    padding: 44px 0 52px;
    margin-bottom: 36px;
    border-bottom: 2px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.ns-detail-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.ns-detail-top {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ns-detail-poster {
    flex-shrink: 0;
    width: 230px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.12);
    border: 2px solid #e8e8e8;
}

.ns-detail-poster img {
    width: 100%;
    border-radius: 16px;
}

.ns-detail-info { flex: 1; color: #2d3436; }

.ns-detail-info h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 14px;
    line-height: 1.2;
}

.ns-detail-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ns-detail-meta span {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 8px;
    background: #fff0f3;
    color: #e94560;
    border: 1px solid #ffd0d8;
}

.ns-detail-meta .ns-detail-type {
    background: #fff8e1;
    color: #f5a623;
    border-color: #ffe8a1;
}

.ns-desc {
    font-size: 0.88rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ns-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.25);
    position: relative;
    overflow: hidden;
}

.ns-play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5a623, #e94560);
    opacity: 0;
    transition: opacity 0.3s;
}

.ns-play-btn:hover::before { opacity: 1; }

.ns-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(233, 69, 96, 0.35);
}

.ns-play-btn span { position: relative; z-index: 1; }

/* Guide / tips section */
.ns-guide-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ns-guide-section h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ns-guide-section h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #e94560, #f5a623);
    border-radius: 2px;
}

.ns-guide-section p {
    font-size: 0.88rem;
    color: #636e72;
    line-height: 1.85;
}

/* Iframe */
.ns-iframe-box {
    width: 100%;
    height: 72vh;
    min-height: 500px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8e8e8;
}

.ns-iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ns-more-section { margin-top: 40px; }

/* ============================================
   DETAIL — Breadcrumb
   ============================================ */

.ns-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 0;
    font-size: 0.76rem;
    font-weight: 500;
    color: #b2bec3;
    flex-wrap: wrap;
}

.ns-breadcrumb a {
    color: #e94560;
    transition: color 0.2s;
}

.ns-breadcrumb a:hover { color: #d63854; }

.ns-breadcrumb .ns-bc-sep {
    color: #dfe6e9;
    font-size: 0.65rem;
}

.ns-breadcrumb .ns-bc-current {
    color: #636e72;
    font-weight: 600;
}

/* ============================================
   DETAIL — Game Info Strip
   ============================================ */

.ns-game-info-strip {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.ns-gis-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    flex: 1;
    min-width: 140px;
    transition: all 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.ns-gis-item:hover {
    border-color: #d0d0e0;
    background: #f8f8fc;
}

.ns-gis-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.ns-gis-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #b2bec3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ns-gis-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2d3436;
    margin-left: auto;
}

/* ============================================
   DETAIL — Game Stats Panel
   ============================================ */

.ns-game-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    border-radius: 14px;
    border: 1px solid #ffd0d8;
}

.ns-gs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    flex: 1;
}

.ns-gs-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e94560;
    margin-bottom: 4px;
    text-align: center;
}

.ns-gs-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
}

/* ============================================
   DETAIL — Game Controls
   ============================================ */

.ns-game-controls {
    margin-bottom: 28px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
}

.ns-game-controls .ns-sec-title {
    margin-bottom: 12px;
}

.ns-controls-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ns-controls-list li {
    font-size: 0.82rem;
    color: #2d3436;
    padding: 8px 14px;
    background: #fff8f9;
    border-radius: 8px;
    border-left: 3px solid #e94560;
    line-height: 1.5;
}

/* ============================================
   DETAIL — Game Features
   ============================================ */

.ns-game-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.ns-gf-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    transition: all 0.25s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.ns-gf-card:hover {
    border-color: #d0d0e0;
    background: #f8f8fc;
}

.ns-gf-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f3;
    border-radius: 12px;
}

.ns-gf-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 4px;
}

.ns-gf-card p {
    font-size: 0.74rem;
    color: #636e72;
    line-height: 1.5;
}

/* ============================================
   DETAIL — FAQ Section
   ============================================ */

.ns-detail-faq {
    margin-bottom: 36px;
}

.ns-detail-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.ns-detail-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: #2d3436;
    transition: background 0.2s;
    gap: 12px;
}

.ns-detail-faq-q:hover {
    background: #f8f8fc;
}

.ns-detail-faq-q .ns-faq-toggle {
    font-size: 1.2rem;
    color: #e94560;
    transition: transform 0.3s;
    flex-shrink: 0;
    font-weight: 400;
}

.ns-detail-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.ns-detail-faq-item.ns-open .ns-detail-faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
}

.ns-detail-faq-item.ns-open .ns-faq-toggle {
    transform: rotate(45deg);
}

.ns-detail-faq-a p {
    font-size: 0.84rem;
    color: #636e72;
    line-height: 1.75;
}

/* ============================================
   DETAIL — Tags Section
   ============================================ */

.ns-game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.ns-game-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #fff0f3;
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #e94560;
    border: 1px solid #ffd0d8;
    transition: all 0.2s;
}

.ns-game-tag:hover {
    background: #ffe0e6;
    color: #d63854;
    border-color: #ffc0c8;
}

/* ============================================
   CONTENT / LEGAL PAGES
   ============================================ */

.ns-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.ns-page h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.ns-page .ns-page-date {
    color: #b2bec3;
    font-size: 0.86rem;
    margin-bottom: 32px;
}

.ns-page h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d3436;
    margin: 36px 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ns-page h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #e94560, #f5a623);
    border-radius: 2px;
    flex-shrink: 0;
}

.ns-page p {
    color: #636e72;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.ns-page ul {
    margin: 12px 0 20px 22px;
    list-style: disc;
}

.ns-page ul li {
    color: #636e72;
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.ns-page strong { color: #2d3436; }

.ns-page a {
    color: #e94560;
    text-decoration: underline;
}

.ns-faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.ns-faq-item h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px;
}

.ns-faq-item p {
    margin: 0;
    color: #636e72;
}

/* ============================================
   FOOTER
   ============================================ */

.ns-footer {
    background: #2d3436;
    padding: 52px 24px 24px;
    margin-top: 60px;
    border-top: 3px solid #e94560;
}

.ns-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ns-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ns-footer-brand p {
    font-size: 0.82rem;
    color: #b2bec3;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 300px;
}

.ns-footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.ns-footer-col a {
    display: block;
    color: #b2bec3;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.2s;
}

.ns-footer-col a:hover {
    color: #ffffff;
}

.ns-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.76rem;
    color: #636e72;
    font-weight: 500;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.ns-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.25);
}

.ns-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(233, 69, 96, 0.4);
}

.ns-scroll-top img {
    width: 18px;
    height: 18px;
}

/* ============================================
   CHANNEL / CATEGORY PAGE
   ============================================ */

.ns-channel-banner {
    background: linear-gradient(160deg, #f5f6fa 0%, #fce4ec 50%, #f5f6fa 100%);
    padding: 40px 24px;
    border-bottom: 2px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.ns-channel-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.ns-channel-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.ns-channel-banner h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
}

.ns-channel-banner p {
    font-size: 0.88rem;
    color: #636e72;
    max-width: 500px;
}

.ns-channel-count {
    font-size: 0.8rem;
    color: #e94560;
    margin-top: 10px;
    font-weight: 700;
}

.ns-channel-deco {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(245, 166, 35, 0.08));
    border: 1px solid #ffd0d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

/* Category tabs bar */
.ns-channel-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1280px;
    margin: 0 auto;
}

.ns-channel-tabs::-webkit-scrollbar { display: none; }

.ns-channel-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #636e72;
    background: #ffffff;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.25s;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.ns-channel-tab:hover {
    color: #e94560;
    background: #fff0f3;
    border-color: #d0d0e0;
}

.ns-channel-tab.ns-active {
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.25);
}

.ns-channel-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
}

.ns-channel-side { display: none; }

.ns-channel-main { min-width: 0; }

/* ============================================
   404 PAGE
   ============================================ */

.ns-404-wrap {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.ns-404-num {
    font-family: 'Nunito', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e94560, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.ns-404-msg {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
}

.ns-404-sub {
    font-size: 0.92rem;
    color: #636e72;
    margin-bottom: 32px;
    max-width: 420px;
}

.ns-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e94560, #f5a623);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.25);
}

.ns-404-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.35);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */

@media (max-width: 1024px) {
    .ns-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
    .ns-menu-btn { display: flex; }
    .ns-mobile-nav { display: block; }
    .ns-nav-inline { display: none; }

    .ns-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .ns-detail-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ns-detail-poster { width: 200px; }
    .ns-detail-meta { justify-content: center; }

    .ns-hcard-thumb { width: 140px; }

    .ns-game-features { grid-template-columns: 1fr; }
    .ns-channel-deco { display: none; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */

@media (max-width: 768px) {
    .ns-topbar { padding: 10px 16px; }
    .ns-brand-icon { width: 32px; height: 32px; }
    .ns-brand-name { font-size: 1.1rem; }

    .ns-container { padding: 0 16px; }

    .ns-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .ns-detail-banner { padding: 28px 0 36px; }
    .ns-detail-poster { width: 160px; }
    .ns-detail-info h1 { font-size: 1.4rem; }

    .ns-iframe-box { height: 52vh; min-height: 340px; }

    .ns-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ns-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ns-channel-banner { padding: 28px 16px; }
    .ns-channel-banner h1 { font-size: 1.3rem; }

    .ns-hcard { flex-direction: column; }
    .ns-hcard-thumb { width: 100%; min-height: 160px; }

    .ns-scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; border-radius: 10px; }

    .ns-game-info-strip { flex-wrap: wrap; }
    .ns-gis-item { flex: 0 0 48%; }
    .ns-game-features { grid-template-columns: 1fr; }
    .ns-breadcrumb { padding: 12px 0 0; font-size: 0.72rem; }

    .ns-404-num { font-size: 5rem; }
    .ns-404-msg { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .ns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ns-card-info { padding: 10px 10px; }
    .ns-card-name { font-size: 0.72rem; }
    .ns-gis-item { flex: 0 0 100%; }
}

/* Legal pages mobile */
@media (max-width: 768px) {
    .ns-page { padding: 28px 16px 48px; }
    .ns-page h1 { font-size: 1.6rem; }
    .ns-page h2 { font-size: 1.05rem; }
}

/* Editor's Note */
.ns-editor-note {
    background: #f0f7ff;
    border-left: 3px solid #e94560;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 16px 0 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
}
.ns-editor-note strong {
    color: #e94560;
    font-weight: 700;
}

/* Did You Know */
.ns-dyk-section {
    margin-top: 28px;
}
.ns-dyk-box {
    background: #fffbf0;
    border: 1px solid #ffe8a1;
    border-radius: 12px;
    padding: 18px 22px;
}
.ns-dyk-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.7;
}
.ns-dyk-section h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}
