/**
 * Nusabet88 — Black Gold Theme
 * Hero type 56: Monochrome + Single Accent (Gold)
 */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'PT Sans', sans-serif;
    background: #F4F4F4;
    color: #1A1A1A;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* Hide old header */
.header { display: none !important; }
/* Hide old spacer */
.page-wrapper > main + div[style*="height"] { display: none; }

/* ===== HEADER ===== */
.nb-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 300;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nb-header-strip {
    height: 3px;
    background: #F5C518;
}

.nb-header-bar {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nb-header.scrolled .nb-header-bar {
    background: #080808;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.nb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nb-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nb-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5C518;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Desktop Nav */
.nb-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nb-nav-item {
    position: relative;
}

.nb-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0.9rem;
    color: #E0E0E0;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nb-nav-link:hover,
.nb-nav-link.active {
    color: #F5C518;
}

.nb-chevron {
    width: 10px; height: 10px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
}

/* Dropdown */
.nb-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0F0F0F;
    border: 1px solid rgba(245,197,24,0.2);
    border-top: 2px solid #F5C518;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 200;
}

.nb-nav-item:hover .nb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nb-nav-item:hover .nb-chevron {
    transform: rotate(180deg);
}

.nb-dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.1rem;
    color: #B0B0B0;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.nb-dropdown-link:hover,
.nb-dropdown-link.active {
    color: #F5C518;
    background: rgba(245,197,24,0.05);
}

.nb-dropdown-link small {
    color: #555;
    font-size: 0.75rem;
}

.nb-dropdown-group {
    padding: 0.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nb-dropdown-group:first-child {
    border-top: none;
}

.nb-dropdown-group-title {
    display: block;
    padding: 0.4rem 1.1rem 0.2rem;
    color: #F5C518;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}

.nb-dropdown-indent {
    padding-left: 1.6rem;
}

/* Mobile Toggle */
.nb-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    width: 36px; height: 36px;
}

.nb-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #F5C518;
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Mobile Nav */
.nb-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 299;
}

.nb-mobile-overlay.active { display: block; }

.nb-mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #0A0A0A;
    border-left: 1px solid rgba(245,197,24,0.15);
    z-index: 350;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.nb-mobile-nav.active { right: 0; }

.nb-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(245,197,24,0.15);
}

.nb-mobile-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
}

.nb-mobile-links {
    padding: 0.5rem 0;
}

.nb-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.2rem;
    color: #C0C0C0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nb-mobile-link:hover,
.nb-mobile-link.active { color: #F5C518; }

.nb-mobile-sub {
    display: none;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nb-mobile-item.open .nb-mobile-sub { display: block; }

.nb-mobile-sublink {
    display: block;
    padding: 0.55rem 1.8rem;
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
}

.nb-mobile-sublink:hover,
.nb-mobile-sublink.active { color: #F5C518; }

/* ===== HERO — TYPE 56: MONOCHROME + SINGLE ACCENT ===== */
.nb-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080808;
    padding-top: 63px; /* header height */
}

.nb-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/ref/1.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.25);
    transform: scale(1.04);
}

.nb-hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,0.7) 100%);
}

.nb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.nb-hero-left {}

.nb-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,197,24,0.12);
    border: 1px solid rgba(245,197,24,0.3);
    color: #F5C518;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
}

.nb-hero-kicker::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #F5C518;
    border-radius: 50%;
}

.nb-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #F0F0F0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
}

.nb-hero-title .nb-gold {
    color: #F5C518;
    display: block;
}

.nb-hero-desc {
    font-size: 1.05rem;
    color: #909090;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.nb-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.nb-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F5C518;
    color: #080808;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.nb-btn-gold:hover {
    background: #FFD740;
    box-shadow: 0 0 20px rgba(245,197,24,0.4);
    transform: translateY(-1px);
}

.nb-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #E0E0E0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.25);
    transition: all 0.2s ease;
}

.nb-btn-outline:hover {
    border-color: #F5C518;
    color: #F5C518;
}

/* Hero trust strip */
.nb-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nb-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nb-hero-trust-item svg {
    width: 14px; height: 14px;
    fill: #F5C518;
    flex-shrink: 0;
}

/* Hero right — stats panel */
.nb-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nb-hero-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #F5C518;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: background 0.2s ease;
}

.nb-hero-stat-card:hover {
    background: rgba(245,197,24,0.06);
}

.nb-hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #F5C518;
    line-height: 1;
    min-width: 70px;
}

.nb-hero-stat-label {
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== TRUST BAND ===== */
.nb-trust-band {
    background: #0F0F0F;
    border-top: 1px solid rgba(245,197,24,0.1);
    border-bottom: 1px solid rgba(245,197,24,0.1);
    padding: 1.5rem 0;
}

.nb-trust-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nb-trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #888;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.nb-trust-icon {
    width: 32px; height: 32px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nb-trust-icon svg {
    width: 16px; height: 16px;
    fill: #F5C518;
}

/* ===== SECTIONS ===== */
.nb-section {
    padding: 5rem 0;
}

.nb-section-alt {
    background: #080808;
}

.nb-section-light {
    background: #FAFAFA;
}

.nb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nb-section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #F5C518;
    margin-bottom: 0.6rem;
}

.nb-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #F0F0F0;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.nb-section-title.dark {
    color: #0A0A0A;
}

.nb-section-sub {
    color: #888;
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 540px;
}

.nb-section-sub.dark {
    color: #555;
}

/* ===== CATEGORIES — Numbered grid ===== */
.nb-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(245,197,24,0.08);
}

.nb-cat-card {
    display: block;
    background: #0C0C0C;
    padding: 2rem 1.8rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
    border: 1px solid rgba(255,255,255,0.04);
}

.nb-cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #F5C518;
    transition: width 0.3s ease;
}

.nb-cat-card:hover::before { width: 100%; }

.nb-cat-card:hover {
    background: #111;
}

.nb-cat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(245,197,24,0.12);
    line-height: 1;
    margin-bottom: 0.8rem;
    transition: color 0.25s ease;
}

.nb-cat-card:hover .nb-cat-num {
    color: rgba(245,197,24,0.25);
}

.nb-cat-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}

.nb-cat-card:hover .nb-cat-name { color: #F5C518; }

.nb-cat-count {
    color: #555;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== FEATURE CTA ===== */
.nb-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 460px;
}

.nb-feature-img {
    position: relative;
    overflow: hidden;
}

.nb-feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: filter 0.4s ease, transform 0.4s ease;
    display: block;
}

.nb-feature:hover .nb-feature-img img {
    filter: grayscale(20%);
    transform: scale(1.03);
}

.nb-feature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #0A0A0A 100%);
}

.nb-feature-body {
    background: #0A0A0A;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nb-feature-body.light {
    background: #F4F4F4;
}

.nb-checklist {
    list-style: none;
    padding: 0; margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nb-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.nb-checklist li::before {
    content: '✓';
    color: #F5C518;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== HOW IT WORKS ===== */
.nb-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.nb-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(33.33% / 2);
    right: calc(33.33% / 2);
    height: 1px;
    background: linear-gradient(to right, #F5C518 0%, rgba(245,197,24,0.2) 100%);
}

.nb-step {
    text-align: center;
    position: relative;
    padding-top: 1rem;
}

.nb-step-num {
    width: 56px; height: 56px;
    background: #F5C518;
    color: #080808;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
}

.nb-step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #F0F0F0;
    margin-bottom: 0.5rem;
}

.nb-step-desc {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== TAGS SECTION ===== */
.nb-tags-section {
    padding: 4rem 0;
    background: #F4F4F4;
}

.nb-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nb-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s ease;
}

.nb-tag:hover {
    background: #F5C518;
    border-color: #F5C518;
    color: #080808;
}

.nb-tag-count {
    background: #E8E8E8;
    color: #888;
    font-size: 0.72rem;
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.nb-tag:hover .nb-tag-count {
    background: rgba(8,8,8,0.15);
    color: #080808;
}

/* ===== SECOND FEATURE (light bg) ===== */
.nb-feature2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
    background: #FAFAFA;
}

.nb-feature2-img {
    position: relative;
    overflow: hidden;
    height: 360px;
}

.nb-feature2-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    display: block;
}

.nb-feature2-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(245,197,24,0.3);
    pointer-events: none;
}

/* ===== FAQ ===== */
.nb-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nb-faq-item {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-left: 3px solid #F5C518;
    padding: 1.5rem;
}

.nb-faq-q {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.nb-faq-a {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 2px solid #F5C518;
    color: #888;
}

.footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover { color: #F5C518; }

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F5C518;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: #444;
    font-size: 0.8rem;
}

/* ===== INTERNAL PAGES ===== */
/* Page hero */
.page-hero {
    background: #080808;
    padding: 4rem 0 3rem;
    border-bottom: 2px solid rgba(245,197,24,0.15);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #F5C518;
}

.page-hero-breadcrumb {
    font-size: 0.78rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.page-hero-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.page-hero-breadcrumb a:hover { color: #F5C518; }

.page-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #F0F0F0;
    margin-bottom: 0.5rem;
}

.page-hero-subtitle,
.page-hero-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Subcategory grid */
.wbc-content-section {
    padding: 3rem 0;
}

.wbc-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wbc-article-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-top: 3px solid #F5C518;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: block;
    overflow: hidden;
}

.wbc-article-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wbc-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: grayscale(30%);
    display: block;
}

.wbc-article-card-body {
    padding: 1.2rem;
}

.wbc-article-card h3,
.wbc-article-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.wbc-article-card p,
.wbc-article-card-excerpt {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Article layout */
.wbc-article-body,
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.article-content {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    padding: 2.5rem;
}

.article-content h1, .article-content h2, .article-content h3 {
    font-family: 'Oswald', sans-serif;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.article-content h2 { color: #0A0A0A; font-size: 1.4rem; }
.article-content h3 { color: #0A0A0A; font-size: 1.15rem; }

.article-sidebar,
.wbc-sidebar { }

.sidebar-widget,
.wbc-sidebar-widget {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-top: 3px solid #F5C518;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h3,
.wbc-sidebar-widget h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0A0A0A;
    margin-bottom: 1rem;
}

/* Listing grid */
.bb-listing-grid,
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Category card (internal pages) */
.category-card {
    background: #0C0C0C;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 3px solid #F5C518;
    padding: 1.8rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s ease;
}

.category-card:hover { background: #141414; }

.category-card-title,
.category-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.category-card:hover .category-card-title,
.category-card:hover h3 { color: #F5C518; }

.category-card-count,
.category-card p {
    color: #555;
    font-size: 0.82rem;
}

/* Pagination */
.nb-pagination,
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.nb-pagination a,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid #DDD;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.nb-pagination a:hover,
.pagination a:hover,
.nb-pagination a.active,
.pagination span.active,
.pagination .current {
    background: #F5C518;
    border-color: #F5C518;
    color: #080808;
}

/* Contact */
.nb-contact-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.contact-form-wrap,
.nb-contact-form {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    padding: 2.5rem;
}

.contact-form-wrap label,
.nb-contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    margin-bottom: 0.4rem;
}

.form-control,
.nb-form-control {
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #DDD;
    padding: 0.7rem 1rem;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    color: #1A1A1A;
    outline: none;
    transition: border-color 0.2s ease;
    margin-bottom: 1rem;
    border-radius: 0;
}

.form-control:focus,
.nb-form-control:focus {
    border-color: #F5C518;
    box-shadow: 0 0 0 2px rgba(245,197,24,0.1);
}

.btn-submit,
.nb-btn-submit {
    background: #F5C518;
    color: #080808;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-submit:hover,
.nb-btn-submit:hover {
    background: #FFD740;
    box-shadow: 0 0 16px rgba(245,197,24,0.3);
}

/* 404 */
.nb-404-section,
.not-found-section,
.not-found-wrap {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    background: #080808;
}

.nb-404-code,
.not-found-code {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: #F5C518;
    line-height: 1;
    margin-bottom: 1rem;
}

.not-found-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #E0E0E0;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.not-found-desc {
    color: #666;
    margin-bottom: 2rem;
}

/* Tags cloud */
.nb-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.nb-tags-cloud a {
    padding: 0.4rem 0.8rem;
    background: #F4F4F4;
    border: 1px solid #E0E0E0;
    color: #555;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.nb-tags-cloud a:hover {
    background: #F5C518;
    border-color: #F5C518;
    color: #080808;
}

/* ===== CASINO CARDS ===== */
.casino-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.casino-card-new {
    background: #0C0C0C;
    border: 1px solid rgba(245,197,24,0.15);
    border-top: 3px solid #F5C518;
    padding: 1.2rem;
    text-align: center;
}

/* ===== SCROLL REVEAL ===== */
.will-reveal {
    opacity: 1;
    transform: none;
}

.will-reveal.revealed {
    animation: nb-reveal 0.55s ease backwards;
}

@keyframes nb-reveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nb-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nb-nav { display: none; }
    .nb-mobile-toggle { display: flex; }

    .nb-hero-content {
        grid-template-columns: 1fr;
        padding: 3rem 1.2rem 2.5rem;
        gap: 2rem;
    }

    .nb-hero-right {
        flex-direction: row;
        overflow-x: auto;
    }

    .nb-hero-stat-card { min-width: 180px; }

    .nb-cats-grid {
        grid-template-columns: 1fr;
    }

    .nb-feature {
        grid-template-columns: 1fr;
    }

    .nb-feature-img { min-height: 260px; }
    .nb-feature-body { padding: 2rem; }

    .nb-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nb-steps::before { display: none; }

    .nb-faq-grid {
        grid-template-columns: 1fr;
    }

    .nb-feature2 {
        grid-template-columns: 1fr;
    }

    .wbc-article-body,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .nb-contact-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nb-trust-band-inner {
        gap: 1rem;
        justify-content: flex-start;
    }

    .nb-hero-trust {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nb-hero-actions {
        flex-direction: column;
    }

    .nb-btn-gold,
    .nb-btn-outline {
        text-align: center;
        justify-content: center;
    }
}
