/* =====================================================
   NeonPulse_Esports - Cyberpunk Neon Theme
   Color: Purple #8B5CF6, Cyan #06B6D4, Pink #F0ABFC
   Background: #0F0F23, Text: #E5E7EB
   Font: Orbitron (headings), Rajdhani (body)
   ===================================================== */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }
body.np-body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    background: #0F0F23;
    color: #E5E7EB;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    font-size: 15px;
}
a { color: #06B6D4; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #F0ABFC; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.d-none { display: none !important; }
.d-lg-flex { display: flex !important; }

/* === CRT Scanlines Overlay === */
.np-scanlines {
    position: fixed; top:0; left:0; right:0; bottom:0;
    pointer-events: none; z-index: 99999;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* === Header === */
.np-header {
    position: sticky; top: 0; z-index: 9999;
    background: rgba(15,15,35,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139,92,246,0.3);
}
.np-header-bar {
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4, #F0ABFC, #06B6D4, #8B5CF6);
    background-size: 200% 100%;
    animation: npBarSlide 4s linear infinite;
}
@keyframes npBarSlide { 0%{background-position:0 0} 100%{background-position:200% 0} }
.np-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.np-logo img { height: 36px; transition: filter 0.3s; }
.np-logo:hover img { filter: drop-shadow(0 0 8px #8B5CF6); }

/* Nav */
.np-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}
.np-nav-link {
    color: #9CA3AF;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}
.np-nav-link:hover, .np-nav-link.np-active {
    color: #FFF;
    border-bottom-color: #8B5CF6;
    text-shadow: 0 0 10px rgba(139,92,246,0.5);
}

/* Dropdown */
.np-dropdown { position: relative; }
.np-dropdown-btn {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #FFF; border: none; padding: 7px 16px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}
.np-dropdown-btn:hover { box-shadow: 0 0 16px rgba(139,92,246,0.5); }
.np-dropdown-panel {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: #1A1A2E; border: 1px solid rgba(139,92,246,0.4);
    min-width: 500px; padding: 20px; z-index: 10000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.np-dropdown.open .np-dropdown-panel { display: block; }
.np-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.np-dropdown-col { display: flex; flex-direction: column; }
.np-dropdown-heading {
    color: #F0ABFC; font-weight: 700; font-size: 13px;
    padding-bottom: 6px; margin-bottom: 6px;
    border-bottom: 1px solid rgba(240,171,252,0.2);
    text-transform: uppercase; letter-spacing: 1px;
}
.np-dropdown-item {
    color: #9CA3AF; font-size: 12px; padding: 4px 0;
    transition: all 0.2s;
}
.np-dropdown-item:hover { color: #06B6D4; padding-left: 6px; }

/* Header Actions */
.np-header-actions { display: flex; gap: 8px; align-items: center; }

/* === Buttons === */
.np-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 10px 24px; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer;
    border: 2px solid transparent; transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif; text-decoration: none;
}
.np-btn-neon {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    color: #FFF; border-color: transparent;
}
.np-btn-neon:hover {
    box-shadow: 0 0 20px rgba(139,92,246,0.6), 0 0 40px rgba(6,182,212,0.3);
    color: #FFF; transform: translateY(-1px);
}
.np-btn-outline {
    background: transparent; color: #8B5CF6; border-color: #8B5CF6;
}
.np-btn-outline:hover {
    background: #8B5CF6; color: #FFF;
    box-shadow: 0 0 16px rgba(139,92,246,0.4);
}
.np-btn-sm { padding: 6px 14px; font-size: 11px; }
.np-btn-block { display: flex; width: 100%; }
.np-btn-ghost {
    background: transparent; color: #06B6D4; border-color: rgba(6,182,212,0.4);
}
.np-btn-ghost:hover { border-color: #06B6D4; box-shadow: 0 0 12px rgba(6,182,212,0.3); }

/* === Mobile Toggle === */
.np-mobile-toggle {
    display: none; position: fixed; top: 12px; right: 12px; z-index: 10001;
    background: rgba(15,15,35,0.9); border: 1px solid #8B5CF6;
    width: 44px; height: 44px; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.np-toggle-bar { width: 22px; height: 2px; background: #8B5CF6; transition: all 0.3s; }

/* === Sidebar (Mobile) === */
.np-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10002; }
.np-overlay.active { display: block; }
.np-sidebar {
    position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
    background: #0F0F23; border-right: 2px solid #8B5CF6;
    z-index: 10003; transition: left 0.35s ease; overflow-y: auto;
}
.np-sidebar.open { left: 0; }
.np-sidebar-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px; border-bottom: 1px solid rgba(139,92,246,0.2);
}
.np-sidebar-logo { height: 36px; display: block; }
.np-sidebar-close { background: none; border: none; color: #F0ABFC; font-size: 26px; cursor: pointer; }
.np-sidebar-menu { padding: 12px 0; }
.np-sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; color: #9CA3AF; font-size: 14px; font-weight: 500;
    border-left: 3px solid transparent; transition: all 0.3s;
}
.np-sidebar-link:hover { background: rgba(139,92,246,0.08); border-left-color: #8B5CF6; color: #FFF; }
.np-sidebar-link i { width: 20px; text-align: center; color: #8B5CF6; }
.np-sidebar-cta { padding: 16px; }

/* === Main Content === */
.np-content { min-height: 60vh; }

/* === Hero Section === */
.np-hero {
    position: relative; padding: 100px 0 80px;
    background: linear-gradient(135deg, #0F0F23 0%, #1A0A2E 50%, #0F0F23 100%);
    overflow: hidden;
}
.np-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(139,92,246,0.15) 0%, transparent 60%);
    opacity: 0.8;
}
.np-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(transparent, #0F0F23);
}
.np-hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
}
.np-hero-inner { position: relative; z-index: 2; }
.np-hero-badge {
    display: inline-block; padding: 4px 16px; margin-bottom: 16px;
    background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.4);
    color: #F0ABFC; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}
.np-hero h1 {
    font-family: 'Orbitron', monospace; font-size: 48px; font-weight: 900;
    color: #FFF; margin: 0 0 16px; line-height: 1.1;
    text-shadow: 0 0 30px rgba(139,92,246,0.4);
}
.np-hero h1 span { color: #06B6D4; }
.np-hero-desc {
    font-size: 17px; color: #9CA3AF; max-width: 550px;
    margin-bottom: 32px; line-height: 1.8;
}
.np-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Hero Promo Banner - Diagonal cut style */
.np-hero-promo {
    display: flex; gap: 24px; align-items: stretch;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(139,92,246,0.2);
    padding: 24px; position: relative; overflow: hidden;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 20px 100%);
}
.np-hero-promo::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
}
.np-hero-promo-icon {
    width: 80px; height: 80px; flex-shrink: 0;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #FFF;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.np-hero-promo-text h3 {
    color: #FFF; font-size: 20px; font-weight: 700; margin: 0 0 4px;
    font-family: 'Orbitron', monospace;
}
.np-hero-promo-text p { color: #9CA3AF; font-size: 14px; margin: 0 0 12px; }

/* === Section Titles === */
.np-section { padding: 60px 0; position: relative; }
.np-section-header {
    margin-bottom: 40px; position: relative;
    padding-left: 16px;
    border-left: 3px solid #8B5CF6;
}
.np-section-header h2 {
    font-family: 'Orbitron', monospace; font-size: 24px; font-weight: 700;
    color: #FFF; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 1px;
}
.np-section-header p { color: #6B7280; font-size: 14px; margin: 0; }

/* === Game Categories - Neon Grid === */
.np-game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.np-game-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(139,92,246,0.15);
    padding: 24px 12px; text-align: center;
    transition: all 0.4s; cursor: pointer; position: relative;
    overflow: hidden;
}
.np-game-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: #8B5CF6;
    transition: width 0.4s;
}
.np-game-card:hover::before { width: 100%; }
.np-game-card:hover {
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139,92,246,0.15), inset 0 0 20px rgba(139,92,246,0.05);
    transform: translateY(-4px);
}
.np-game-card img {
    width: 60px; height: 60px; object-fit: contain;
    margin-bottom: 12px; filter: drop-shadow(0 0 4px rgba(139,92,246,0.3));
    transition: filter 0.3s;
}
.np-game-card:hover img { filter: drop-shadow(0 0 10px rgba(139,92,246,0.6)); }
.np-game-card h3 {
    color: #FFF; font-size: 14px; font-weight: 600; margin: 0 0 4px;
    font-family: 'Rajdhani', sans-serif;
}
.np-game-card p { color: #6B7280; font-size: 11px; margin: 0; }

/* === Sports Section - Horizontal Cards === */
.np-sport-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.np-sport-card {
    background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, transparent 100%);
    border: 1px solid rgba(139,92,246,0.12);
    padding: 28px 20px; text-align: center;
    transition: all 0.3s; position: relative;
}
.np-sport-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #06B6D4, transparent);
    opacity: 0; transition: opacity 0.3s;
}
.np-sport-card:hover::after { opacity: 1; }
.np-sport-card:hover { border-color: rgba(6,182,212,0.4); transform: translateY(-3px); }
.np-sport-icon {
    width: 52px; height: 52px; margin: 0 auto 14px;
    border: 2px solid #8B5CF6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #8B5CF6; transition: all 0.3s;
}
.np-sport-card:hover .np-sport-icon {
    background: #8B5CF6; color: #FFF;
    box-shadow: 0 0 16px rgba(139,92,246,0.5);
}
.np-sport-card h3 { color: #FFF; font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.np-sport-card p { color: #6B7280; font-size: 12px; margin: 0 0 14px; }

/* === Featured Games - Masonry-like === */
.np-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}
.np-featured-item {
    position: relative; overflow: hidden;
    border: 1px solid rgba(139,92,246,0.1);
    transition: all 0.3s;
}
.np-featured-item.np-feat-lg { grid-column: span 2; grid-row: span 2; }
.np-featured-item:hover { border-color: #8B5CF6; }
.np-featured-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s; filter: brightness(0.7);
}
.np-featured-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.np-featured-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px; background: linear-gradient(transparent, rgba(15,15,35,0.9));
}
.np-featured-caption h4 { color: #FFF; font-size: 13px; margin: 0 0 4px; font-weight: 600; }
.np-featured-caption .np-btn-sm { font-size: 10px; padding: 4px 10px; }

/* === Live Casino === */
.np-live-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.np-live-card {
    border: 1px solid rgba(139,92,246,0.12);
    overflow: hidden; transition: all 0.3s; background: #12122A;
}
.np-live-card:hover { border-color: #F0ABFC; transform: translateY(-3px); }
.np-live-card img { width: 100%; height: 150px; object-fit: cover; }
.np-live-info { padding: 12px; }
.np-live-info h4 { color: #FFF; font-size: 14px; margin: 0 0 2px; }
.np-live-info p { color: #6B7280; font-size: 11px; margin: 0; }
.np-live-badge {
    display: inline-block; background: #EF4444; color: #FFF;
    font-size: 9px; font-weight: 700; padding: 2px 6px;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}

/* === App Download Section === */
.np-appdownload {
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.08));
    border-top: 1px solid rgba(139,92,246,0.15);
    border-bottom: 1px solid rgba(139,92,246,0.15);
    padding: 60px 0;
}
.np-appdownload-inner {
    display: flex; align-items: center; gap: 40px;
}
.np-appdownload-text { flex: 1; }
.np-appdownload-text h2 {
    font-family: 'Orbitron', monospace; font-size: 24px;
    color: #FFF; margin: 0 0 12px;
}
.np-appdownload-text p { color: #9CA3AF; margin: 0 0 20px; line-height: 1.7; }
.np-appdownload-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.np-appdownload-img { flex-shrink: 0; }
.np-appdownload-img img {
    max-width: 240px; border: 1px solid rgba(139,92,246,0.3);
    filter: drop-shadow(0 0 20px rgba(139,92,246,0.2));
}

/* === Articles Section - Asymmetric layout === */
.np-article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.np-article-main {}
.np-article-category {
    margin-bottom: 28px;
    border: 1px solid rgba(139,92,246,0.12);
    background: rgba(255,255,255,0.02);
}
.np-article-cat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(90deg, rgba(139,92,246,0.15), transparent);
    border-bottom: 1px solid rgba(139,92,246,0.1);
}
.np-article-cat-header h3 {
    color: #FFF; font-size: 15px; font-weight: 700; margin: 0;
    font-family: 'Orbitron', monospace; text-transform: uppercase; letter-spacing: 1px;
}
.np-article-cat-header a { color: #06B6D4; font-size: 11px; }
.np-article-list { list-style: none; padding: 0; margin: 0; }
.np-article-list li {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
}
.np-article-list li:hover { background: rgba(139,92,246,0.04); }
.np-article-list li:last-child { border-bottom: none; }
.np-article-list li a {
    color: #D1D5DB; font-size: 14px; flex: 1;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.np-article-list li a:hover { color: #F0ABFC; }
.np-article-list li time { color: #4B5563; font-size: 11px; flex-shrink: 0; margin-left: 12px; }

/* Sidebar Widget */
.np-sidebar-widget {
    border: 1px solid rgba(139,92,246,0.12);
    background: rgba(255,255,255,0.02);
    margin-bottom: 20px;
}
.np-sidebar-widget-header {
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(139,92,246,0.12), transparent);
    border-bottom: 1px solid rgba(139,92,246,0.08);
}
.np-sidebar-widget-header h3 {
    color: #FFF; font-size: 13px; font-weight: 700; margin: 0;
    font-family: 'Orbitron', monospace; text-transform: uppercase; letter-spacing: 1px;
}
.np-sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.np-sidebar-widget li {
    padding: 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.np-sidebar-widget li:last-child { border-bottom: none; }
.np-sidebar-widget li a { color: #D1D5DB; font-size: 13px; }
.np-sidebar-widget li a:hover { color: #F0ABFC; }
.np-sidebar-widget li span { color: #4B5563; font-size: 11px; display: block; margin-top: 2px; }

/* Tags */
.np-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 16px; }
.np-tags a {
    display: inline-block; padding: 3px 10px;
    background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.2);
    color: #9CA3AF; font-size: 11px; transition: all 0.2s;
}
.np-tags a:hover { background: #8B5CF6; color: #FFF; border-color: #8B5CF6; }

/* === Breadcrumb === */
.np-breadcrumb {
    padding: 12px 0; margin-bottom: 20px;
    border-bottom: 1px solid rgba(139,92,246,0.1);
}
.np-breadcrumb .breadcrumb { background: transparent; padding: 0; margin: 0; }
.np-breadcrumb .breadcrumb-item a { color: #06B6D4; font-size: 13px; }
.np-breadcrumb .breadcrumb-item.active { color: #6B7280; font-size: 13px; }
.np-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #4B5563; }

/* === Article List Item (Block) === */
.np-article-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.np-article-item:last-child { border-bottom: none; }
.np-article-thumb {
    width: 140px; height: 95px; flex-shrink: 0; overflow: hidden;
    border: 1px solid rgba(139,92,246,0.15);
}
.np-article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.np-article-thumb:hover img { transform: scale(1.05); }
.np-article-meta-info h4 { margin: 0 0 6px; }
.np-article-meta-info h4 a { color: #E5E7EB; font-size: 16px; font-weight: 600; }
.np-article-meta-info h4 a:hover { color: #F0ABFC; }
.np-article-meta-info .np-desc {
    color: #6B7280; font-size: 13px; line-height: 1.6; margin: 0 0 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.np-article-meta-info .np-date { color: #4B5563; font-size: 11px; }

/* === Article Detail === */
.np-detail-header { margin-bottom: 24px; }
.np-detail-title {
    font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 700;
    color: #FFF; line-height: 1.3; margin: 0 0 12px;
}
.np-detail-meta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding-bottom: 16px; border-bottom: 1px solid rgba(139,92,246,0.1);
    font-size: 12px; color: #6B7280;
}
.np-detail-meta i { color: #8B5CF6; margin-right: 4px; }
.np-detail-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.np-detail-tags a {
    padding: 2px 8px; background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2); color: #9CA3AF; font-size: 11px;
}
.np-detail-tags a:hover { background: #8B5CF6; color: #FFF; }
.np-detail-body {
    color: #D1D5DB; font-size: 15px; line-height: 1.9;
}
.np-detail-body img { border: 1px solid rgba(139,92,246,0.15); margin: 12px 0; }
.np-detail-body h2, .np-detail-body h3 {
    color: #FFF; font-family: 'Orbitron', monospace; margin: 24px 0 12px;
}
.np-detail-body a { color: #06B6D4; border-bottom: 1px dotted #06B6D4; }
.np-detail-body blockquote {
    border-left: 3px solid #8B5CF6; padding: 12px 20px; margin: 20px 0;
    background: rgba(139,92,246,0.05); color: #9CA3AF;
}

/* Page navigation */
.np-page-nav {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 20px 0; margin-top: 24px;
    border-top: 1px solid rgba(139,92,246,0.1);
}
.np-page-nav-item {
    flex: 1; padding: 12px 16px;
    border: 1px solid rgba(139,92,246,0.12);
    background: rgba(255,255,255,0.02); transition: all 0.3s;
}
.np-page-nav-item:hover { border-color: #8B5CF6; }
.np-page-nav-item span { color: #6B7280; font-size: 11px; display: block; margin-bottom: 4px; }
.np-page-nav-item a { color: #E5E7EB; font-size: 14px; }

/* Pagination */
.np-pagination { display: flex; justify-content: center; padding: 24px 0; gap: 4px; }
.np-pagination .pagination { list-style: none; display: flex; gap: 4px; padding: 0; }
.np-pagination .page-item .page-link {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(139,92,246,0.2);
    color: #9CA3AF; padding: 6px 12px; font-size: 13px; transition: all 0.2s;
}
.np-pagination .page-item.active .page-link { background: #8B5CF6; color: #FFF; border-color: #8B5CF6; }
.np-pagination .page-item .page-link:hover { border-color: #8B5CF6; color: #FFF; }

/* === Search Page === */
.np-search-header {
    padding: 30px 0; margin-bottom: 24px;
    border-bottom: 1px solid rgba(139,92,246,0.15);
}
.np-search-header h1 {
    font-family: 'Orbitron', monospace; font-size: 22px;
    color: #FFF; margin: 0 0 4px;
}
.np-search-header p { color: #6B7280; font-size: 13px; margin: 0; }

/* === Tag Pages === */
.np-tag-cloud {
    display: flex; flex-wrap: wrap; gap: 8px; padding: 20px 0;
}
.np-tag-cloud a {
    padding: 6px 14px; background: rgba(139,92,246,0.06);
    border: 1px solid rgba(139,92,246,0.2); color: #9CA3AF;
    font-size: 13px; transition: all 0.2s;
}
.np-tag-cloud a:hover { background: #8B5CF6; color: #FFF; border-color: #8B5CF6; }
.np-tag-header {
    display: flex; gap: 20px; align-items: center;
    padding: 20px; margin-bottom: 20px;
    border: 1px solid rgba(139,92,246,0.15);
    background: rgba(139,92,246,0.04);
}
.np-tag-header-icon {
    width: 60px; height: 60px; flex-shrink: 0;
    border: 2px solid #8B5CF6; display: flex;
    align-items: center; justify-content: center;
    font-size: 24px; color: #8B5CF6;
}
.np-tag-header h2 { color: #FFF; font-size: 20px; margin: 0 0 4px; }
.np-tag-header p { color: #6B7280; font-size: 13px; margin: 0; }

/* === SO Search Page === */
.np-so-page { min-height: 100vh; }
.np-so-hero {
    text-align: center; padding: 80px 0 40px;
}
.np-so-hero h2 {
    font-family: 'Orbitron', monospace; font-size: 28px;
    color: #FFF; margin: 0 0 20px;
}
.np-so-form {
    display: flex; max-width: 560px; margin: 0 auto;
    border: 2px solid #8B5CF6;
}
.np-so-form input {
    flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.05);
    border: none; color: #FFF; font-size: 15px; outline: none;
}
.np-so-form input::placeholder { color: #6B7280; }
.np-so-form button {
    padding: 12px 24px; background: #8B5CF6; border: none;
    color: #FFF; font-weight: 700; cursor: pointer;
    font-family: 'Rajdhani', sans-serif; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px;
}
.np-so-form button:hover { background: #7C3AED; }
.np-so-hot { max-width: 560px; margin: 30px auto 0; }
.np-so-hot h4 { color: #F0ABFC; font-size: 13px; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 1px; }
.np-so-hot-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.np-so-hot-list a { color: #9CA3AF; font-size: 13px; padding: 4px 0; display: block; }
.np-so-hot-list a:hover { color: #06B6D4; }
.np-so-results { padding: 30px 0; }
.np-so-result-item {
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.np-so-result-item h3 a { color: #06B6D4; font-size: 17px; }
.np-so-result-item p { color: #6B7280; font-size: 13px; margin: 6px 0 0; }

/* === Footer === */
.np-footer {
    position: relative; background: #0A0A1A;
    border-top: 2px solid #8B5CF6;
    padding-top: 50px; margin-top: 40px;
}
.np-footer-glow {
    position: absolute; top: -2px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4, #F0ABFC, #06B6D4, #8B5CF6);
    background-size: 200% 100%;
    animation: npBarSlide 4s linear infinite;
}
.np-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.np-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px; padding-bottom: 30px;
    border-bottom: 1px solid rgba(139,92,246,0.1);
}
.np-footer-col h4 {
    color: #F0ABFC; font-size: 13px; font-weight: 700; margin: 0 0 14px;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}
.np-footer-col a {
    display: block; color: #6B7280; font-size: 13px; padding: 3px 0;
    transition: all 0.2s;
}
.np-footer-col a:hover { color: #06B6D4; padding-left: 4px; }
.np-footer-brand p { color: #4B5563; font-size: 13px; line-height: 1.7; margin: 10px 0 14px; }
.np-footer-logo { height: 32px; filter: drop-shadow(0 0 4px rgba(139,92,246,0.3)); }
.np-footer-social { display: flex; gap: 8px; }
.np-footer-social a {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(139,92,246,0.3); color: #9CA3AF;
    font-size: 14px; padding: 0; transition: all 0.3s;
}
.np-footer-social a:hover {
    background: #8B5CF6; color: #FFF; border-color: #8B5CF6;
    box-shadow: 0 0 12px rgba(139,92,246,0.4);
    padding-left: 0;
}
.np-footer-game-icons {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.np-footer-game-icons img {
    width: 100%; aspect-ratio: 1; object-fit: contain;
    border: 1px solid rgba(139,92,246,0.15); padding: 6px;
    transition: all 0.3s; background: rgba(255,255,255,0.02);
}
.np-footer-game-icons img:hover {
    border-color: #8B5CF6;
    box-shadow: 0 0 10px rgba(139,92,246,0.3);
}

/* Friend Links */
.np-footer-friends {
    padding: 20px 0;
    border-bottom: 1px solid rgba(139,92,246,0.1);
}
.np-footer-friends h4 {
    color: #F0ABFC; font-size: 12px; font-weight: 600; margin: 0 0 10px;
    font-family: 'Orbitron', monospace; text-transform: uppercase; letter-spacing: 1px;
}
.np-friend-list {
    display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.np-friend-list a {
    color: #4B5563; font-size: 12px; padding: 2px 0;
    border-bottom: 1px solid transparent; display: inline;
}
.np-friend-list a:hover { color: #06B6D4; border-bottom-color: #06B6D4; padding-left: 0; }
.np-footer-bottom {
    padding: 16px 0; text-align: center;
}
.np-footer-bottom p { color: #374151; font-size: 12px; margin: 0; }
.np-footer-bottom a { color: #8B5CF6; }


/* === Mobile Top Bar (always visible on mobile) === */
.np-mobile-bar {
    display: none; /* hidden on desktop */
    position: sticky; top: 0; z-index: 9998;
    background: rgba(15,15,35,0.95); backdrop-filter: blur(10px);
    height: 56px; align-items: center; justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(139,92,246,0.2);
}
.np-mobile-bar-logo img { height: 30px; }
.np-mobile-bar-toggle {
    background: none; border: 1px solid rgba(139,92,246,0.4);
    width: 40px; height: 40px; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border-radius: 6px;
}
.np-mobile-bar-toggle .np-toggle-bar {
    width: 20px; height: 2px; background: #8B5CF6;
}
/* Sidebar divider */
.np-sidebar-divider {
    height: 1px; background: rgba(139,92,246,0.15); margin: 8px 20px;
}
/* Sidebar auth buttons */
.np-sidebar-auth {
    padding: 16px 20px; display: flex; gap: 8px;
    border-top: 1px solid rgba(139,92,246,0.1);
}
.np-sidebar-auth .np-btn { flex: 1; font-size: 12px; padding: 8px 12px; }


/* === Banner Strip (img/ showcase) === */
.np-banner-strip { padding: 0; overflow: hidden; }
.np-banner-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.np-banner-item { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.np-banner-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.6); }
.np-banner-item:hover img { transform: scale(1.08); filter: brightness(0.8); }
.np-banner-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(15,15,35,0.9)); }
.np-banner-caption h3 { color: #FFF; font-size: 16px; margin: 0 0 2px; font-family: 'Orbitron', monospace; }
.np-banner-caption p { color: #9CA3AF; font-size: 12px; margin: 0; }

/* === Hot Games Grid (imgapp/ showcase) === */
.np-hotgrid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.np-hotcard { position: relative; overflow: hidden; border: 1px solid rgba(139,92,246,0.12); transition: all 0.3s; }
.np-hotcard-wide { grid-column: span 2; }
.np-hotcard:hover { border-color: #8B5CF6; }
.np-hotcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.7); }
.np-hotcard:hover img { transform: scale(1.05); filter: brightness(0.9); }
.np-hotcard-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(transparent, rgba(15,15,35,0.95)); }
.np-hotcard-overlay h3 { color: #FFF; font-size: 15px; margin: 0 0 4px; font-weight: 700; }
.np-hotcard-overlay p { color: #9CA3AF; font-size: 12px; margin: 0 0 8px; }
.np-hotcard-badge { display: inline-block; background: #EF4444; color: #FFF; font-size: 10px; font-weight: 800; padding: 2px 8px; margin-bottom: 6px; letter-spacing: 1px; }

/* === Promo Duo (imgpeo/ banners) === */
.np-promos-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.np-promo-half {
    position: relative; min-height: 260px; overflow: hidden;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
    border: 1px solid rgba(139,92,246,0.15);
}
.np-promo-half::before { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(15,15,35,0.9)); }
.np-promo-half-content { position: relative; z-index: 2; padding: 24px; }
.np-promo-half-content h3 { color: #FFF; font-size: 20px; font-weight: 700; margin: 0 0 6px; font-family: 'Orbitron', monospace; }
.np-promo-half-content p { color: #9CA3AF; font-size: 13px; margin: 0 0 12px; }

@media (max-width: 991px) {
    .np-banner-strip-inner { grid-template-columns: 1fr; }
    .np-hotgrid { grid-template-columns: repeat(2, 1fr); }
    .np-hotcard-wide { grid-column: span 2; }
    .np-promos-duo { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .np-hotgrid { grid-template-columns: 1fr; }
    .np-hotcard-wide { grid-column: span 1; }
}

/* === Responsive === */
@media (max-width: 991px) {
    .np-mobile-bar { display: flex; }
    .np-header-desktop { display: none !important; }
    .np-hero h1 { font-size: 30px; }
    .np-hero { padding: 60px 0 50px; }
    .np-game-grid { grid-template-columns: repeat(3, 1fr); }
    .np-sport-row { grid-template-columns: repeat(2, 1fr); }
    .np-featured-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .np-live-grid { grid-template-columns: repeat(2, 1fr); }
    .np-article-grid { grid-template-columns: 1fr; }
    .np-appdownload-inner { flex-direction: column; text-align: center; }
    .np-appdownload-btns { justify-content: center; }
    .np-appdownload-img img { max-width: 180px; }
    .np-footer-grid { grid-template-columns: 1fr 1fr; }
    .np-hero-promo { flex-direction: column; align-items: center; text-align: center; }
    .np-dropdown-panel { min-width: 280px; right: -60px; }
    .np-dropdown-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .np-hero h1 { font-size: 24px; }
    .np-hero-desc { font-size: 14px; }
    .np-hero-btns { flex-direction: column; }
    .np-btn { width: 100%; justify-content: center; }
    .np-game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .np-sport-row { grid-template-columns: 1fr; }
    .np-featured-grid { grid-template-columns: 1fr; grid-auto-rows: 160px; }
    .np-featured-item.np-feat-lg { grid-column: span 1; grid-row: span 1; }
    .np-live-grid { grid-template-columns: 1fr; }
    .np-section-header h2 { font-size: 18px; }
    .np-footer-grid { grid-template-columns: 1fr; }
    .np-article-item { flex-direction: column; }
    .np-article-thumb { width: 100%; height: 180px; }
    .np-detail-title { font-size: 20px; }
    .np-page-nav { flex-direction: column; }
    .np-so-form { flex-direction: column; }
    .np-so-form button { padding: 10px; }
}

/* === Animations === */
@keyframes npFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.np-hero-inner { animation: npFadeUp 0.8s ease; }
.np-game-card, .np-sport-card, .np-featured-item, .np-live-card {
    animation: npFadeUp 0.5s ease;
}


/* === Intro & FAQ === */
.np-intro-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.np-intro-text h2 { font-family: 'Orbitron', monospace; font-size: 24px; color: #FFF; margin: 0 0 14px; }
.np-intro-text p { color: #9CA3AF; line-height: 1.8; margin: 0 0 20px; }
.np-intro-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.np-intro-feat { color: #D1D5DB; font-size: 14px; padding: 6px 0; }
.np-intro-feat i { color: #06B6D4; margin-right: 8px; }
.np-intro-stat-box { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.np-intro-stat { background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.15); padding: 18px; text-align: center; }
.np-intro-stat-num { display: block; font-family: 'Orbitron', monospace; font-size: 24px; font-weight: 700; color: #8B5CF6; margin-bottom: 4px; }
.np-intro-stat span:last-child { color: #6B7280; font-size: 12px; }
.np-faq-list { max-width: 800px; margin: 0 auto; }
.np-faq-item { border: 1px solid rgba(139,92,246,0.12); margin-bottom: 8px; }
.np-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 14px 18px; background: rgba(139,92,246,0.04); border: none; color: #FFF; font-size: 15px; font-weight: 600; cursor: pointer; text-align: left; font-family: 'Rajdhani', sans-serif; }
.np-faq-q:hover { background: rgba(139,92,246,0.08); }
.np-faq-q i { color: #8B5CF6; font-size: 12px; transition: transform 0.3s; }
.np-faq-q.open i { transform: rotate(180deg); }
.np-faq-a { display: none; padding: 14px 18px; border-top: 1px solid rgba(139,92,246,0.08); }
.np-faq-a p { color: #9CA3AF; font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 991px) { .np-intro-grid { grid-template-columns: 1fr; } .np-intro-features { grid-template-columns: 1fr; } }

/* === NP Unique: Horizontal scroll games === */
.np-game-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 0 16px; scrollbar-width: thin; scrollbar-color: #8B5CF6 transparent; }
.np-game-scroll::-webkit-scrollbar { height: 4px; }
.np-game-scroll::-webkit-scrollbar-thumb { background: #8B5CF6; border-radius: 4px; }
.np-game-pill { display: flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.2); border-radius: 40px; white-space: nowrap; transition: all 0.3s; flex-shrink: 0; }
.np-game-pill:hover { background: rgba(139,92,246,0.15); border-color: #8B5CF6; }
.np-game-pill img { width: 28px; height: 28px; object-fit: contain; }
.np-game-pill span { color: #FFF; font-size: 14px; font-weight: 600; }
.np-game-pill-more i { color: #8B5CF6; font-size: 16px; }

/* === NP Unique: Esport cards === */
.np-esport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.np-esport-card { background: linear-gradient(180deg, rgba(139,92,246,0.08), transparent); border: 1px solid rgba(139,92,246,0.12); padding: 24px 18px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.np-esport-card::after { content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #06B6D4, transparent); opacity: 0; transition: opacity 0.3s; }
.np-esport-card:hover::after { opacity: 1; }
.np-esport-card:hover { border-color: #8B5CF6; transform: translateY(-3px); }
.np-esport-icon { width: 52px; height: 52px; margin: 0 auto 10px; border: 2px solid #8B5CF6; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #8B5CF6; transition: all 0.3s; }
.np-esport-card:hover .np-esport-icon { background: #8B5CF6; color: #FFF; }
.np-esport-card h3 { color: #FFF; font-size: 15px; margin: 0 0 6px; }
.np-esport-meta { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.np-esport-meta span { color: #06B6D4; font-size: 11px; font-weight: 600; }

/* === NP Unique: Stream layout live === */
.np-stream-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 12px; }
.np-stream-main { grid-column: span 2; grid-row: span 2; }
.np-stream-card { position: relative; overflow: hidden; border: 1px solid rgba(139,92,246,0.1); border-radius: 8px; transition: all 0.3s; }
.np-stream-card:hover { border-color: #8B5CF6; }
.np-stream-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: all 0.4s; }
.np-stream-card:hover img { filter: brightness(0.8); transform: scale(1.04); }
.np-stream-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(transparent, rgba(15,15,35,0.95)); }
.np-stream-overlay h4 { color: #FFF; font-size: 14px; margin: 0; }
.np-stream-info { margin-bottom: 8px; }
.np-stream-info p { color: #9CA3AF; font-size: 11px; margin: 2px 0 0; }
@media (max-width: 991px) { .np-esport-grid { grid-template-columns: repeat(2, 1fr); } .np-stream-grid { grid-template-columns: repeat(2, 1fr); } .np-stream-main { grid-column: span 2; } }
@media (max-width: 576px) { .np-esport-grid { grid-template-columns: 1fr 1fr; } .np-stream-grid { grid-template-columns: 1fr; } .np-stream-main { grid-column: span 1; grid-row: span 1; } }
