/* ============================================================
   NewTheme v2 — wooplink.com
   Clean white base • #0008ff accents • lively motion
   Display: Space Grotesk | Body: Inter
   ============================================================ */

:root {
    --nt-blue: #0008ff;
    --nt-blue-deep: #0006c4;
    --nt-cyan: #00d4ff;
    --nt-violet: #7a5cff;
    --nt-ink: #0c0e2a;
    --nt-bg: #ffffff;
    --nt-surface: #f6f8ff;
    --nt-text: #14163a;
    --nt-muted: #5c6180;
    --nt-line: rgba(0, 8, 255, .10);
    --nt-grad: linear-gradient(92deg, var(--nt-blue) 0%, var(--nt-violet) 55%, var(--nt-cyan) 100%);
    --nt-radius: 18px;
    --nt-shadow: 0 20px 55px -22px rgba(0, 8, 255, .28);
    --nt-shadow-soft: 0 10px 34px -14px rgba(12, 14, 42, .14);
}

body.nt {
    font-family: 'Inter', 'Lato', sans-serif;
    color: var(--nt-text);
    background: var(--nt-bg);
}
body.nt h1, body.nt h2, body.nt h3, body.nt h4,
body.nt .navbar-brand { font-family: 'Space Grotesk', 'Lato', sans-serif; }
body.nt ::selection { background: var(--nt-blue); color: #fff; }

.nt-gradient-text {
    background: var(--nt-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.nt-gradient-text-light {
    background: linear-gradient(92deg, #9fd8ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nt-blue-text { color: var(--nt-blue); }

/* ---------- Floating pill nav ---------- */
.nt-nav-wrap {
    position: fixed;
    top: 12px;
    left: 0; right: 0;
    z-index: 1030;
    padding: 0 14px;
    pointer-events: none;
}
body.nt .nt-nav.navbar-default {
    pointer-events: auto;
    max-width: 1150px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .78);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(0, 8, 255, .10);
    border-radius: 999px;
    box-shadow: 0 12px 40px -16px rgba(12, 14, 42, .22);
    min-height: 0;
}
.nt-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 6px 3px 18px;
    min-height: 50px;
}
body.nt .nt-nav .navbar-brand {
    color: var(--nt-ink);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.01em;
    height: auto;
    padding: 4px 0;
    float: none;
    display: flex;
    align-items: center;
}
body.nt .nt-nav .navbar-brand img,
body.nt .nt-nav .navbar-brand.logo-image img {
    max-height: 30px !important;
    width: auto !important;
    display: block;
}
body.nt .nt-nav .navbar-header { float: none; display: flex; align-items: center; }
body.nt .nt-nav .navbar-collapse { border: none; box-shadow: none; }
body.nt .nt-nav .navbar-nav { margin: 0; display: flex; align-items: center; }
body.nt .nt-nav .navbar-nav > li { float: none; }
body.nt .nt-nav .navbar-nav > li > a {
    color: var(--nt-muted);
    font-weight: 500;
    font-size: 13.5px;
    padding: 8px 13px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color .2s ease, background .2s ease;
}
body.nt .nt-nav .navbar-nav > li > a:hover,
body.nt .nt-nav .navbar-nav > li > a:focus,
body.nt .nt-nav .navbar-nav > li.active > a {
    color: var(--nt-blue);
    background: rgba(0, 8, 255, .06);
}
body.nt .nt-nav .navbar-nav > li:last-child > a {
    background: var(--nt-grad);
    background-size: 160% 100%;
    color: #fff;
    padding: 8px 18px;
    margin-left: 6px;
    box-shadow: 0 10px 26px -12px rgba(0, 8, 255, .55);
    transition: background-position .35s ease, transform .15s ease;
}
body.nt .nt-nav .navbar-nav > li:last-child > a:hover {
    background-position: 100% 0;
    transform: translateY(-1px);
}
body.nt .nt-nav .navbar-toggle {
    border-color: var(--nt-line);
    border-radius: 12px;
    margin: 4px 4px 4px 0;
}
body.nt .nt-nav .navbar-toggle .icon-bar { background: var(--nt-blue); }
@media (max-width: 767px) {
    .nt-nav-wrap { top: 8px; padding: 0 10px; }
    .nt-nav-inner { display: block; padding: 2px 8px 2px 14px; min-height: 0; }
    body.nt .nt-nav .navbar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
    }
    body.nt .nt-nav.navbar-default { border-radius: 999px; }
    body.nt .nt-nav .navbar-brand { font-size: 17px; padding: 2px 0; }
    body.nt .nt-nav .navbar-brand img,
    body.nt .nt-nav .navbar-brand.logo-image img { max-height: 26px !important; }
    body.nt .nt-nav .navbar-toggle {
        margin: 0;
        padding: 8px 9px;
        border: none;
        background: rgba(0, 8, 255, .06);
        border-radius: 999px;
        float: none;
        order: 2;
    }
    body.nt .nt-nav .navbar-collapse.in ~ *, body.nt .nt-nav.navbar-default { border-radius: 26px; }
    body.nt .nt-nav .navbar-nav { display: block; padding: 4px 0 10px; }
    body.nt .nt-nav .navbar-nav > li > a { display: block; padding: 10px 14px; }
    body.nt .nt-nav .navbar-nav > li:last-child > a { margin: 6px 6px 0; text-align: center; }
}


/* ---------- HARD RESET: beat front.css #mainNav/.navbar rules ---------- */
body.nt #mainNav.nt-nav.navbar-default {
    padding: 0 !important;
    margin: 0 auto !important;
    min-height: 0 !important;
    background-image: none !important;
}
body.nt #mainNav.nt-nav .navbar-brand {
    height: auto !important;
    padding: 2px 0 !important;
    line-height: 1.2 !important;
}
body.nt #mainNav.nt-nav .navbar-brand img,
body.nt #mainNav.nt-nav .navbar-brand.logo-image img {
    max-height: 30px !important;
    height: 30px !important;
    width: auto !important;
}
body.nt #mainNav.nt-nav .navbar-collapse {
    padding: 0 !important;
    margin: 0 !important;
    max-height: none;
}
body.nt #mainNav.nt-nav .navbar-nav {
    margin: 0 !important;
    min-height: 0 !important;
}
body.nt #mainNav.nt-nav .navbar-nav > li > a {
    line-height: 1.3 !important;
}
body.nt #mainNav.nt-nav .navbar-header {
    min-height: 0 !important;
}
@media (max-width: 767px) {
    body.nt #mainNav.nt-nav .navbar-brand img,
    body.nt #mainNav.nt-nav .navbar-brand.logo-image img {
        max-height: 24px !important;
        height: 24px !important;
    }
}

/* ---------- Hero (white, lively blobs) ---------- */
.nt-hero {
    position: relative;
    padding: 150px 0 40px;
    background: var(--nt-bg);
    overflow: hidden;
}
.nt-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
    animation: nt-float 12s ease-in-out infinite;
}
.nt-blob-1 { width: 480px; height: 480px; left: -140px; top: -120px; background: rgba(0, 8, 255, .22); }
.nt-blob-2 { width: 420px; height: 420px; right: -120px; top: 40px; background: rgba(0, 212, 255, .20); animation-delay: -4s; }
.nt-blob-3 { width: 380px; height: 380px; left: 34%; bottom: -220px; background: rgba(122, 92, 255, .18); animation-delay: -8s; }
@keyframes nt-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-28px) scale(1.05); }
}
.nt-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 8, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 8, 255, .05) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 70%);
}
.nt-hero-inner { position: relative; z-index: 2; }

.nt-hero-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--nt-ink);
    margin: 22px 0 18px;
}
.nt-hero-sub {
    color: var(--nt-muted);
    font-size: 17px;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 30px;
}

.nt-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(0, 8, 255, .06);
    border: 1px solid rgba(0, 8, 255, .18);
    color: var(--nt-blue-deep);
    font-size: 14px;
    font-weight: 500;
}
.nt-bonus-pill strong { color: var(--nt-blue); font-weight: 700; }
.nt-bonus-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--nt-blue);
    animation: nt-pulse 2s infinite;
}
@keyframes nt-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 8, 255, .45); }
    70%  { box-shadow: 0 0 0 10px rgba(0, 8, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 8, 255, 0); }
}

.nt-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 46px;
}
.nt-btn-primary,
.nt-btn-ghost,
.nt-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-position .35s ease, transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.nt-btn-primary {
    background: var(--nt-grad);
    background-size: 160% 100%;
    color: #fff !important;
    box-shadow: var(--nt-shadow);
}
.nt-btn-primary:hover { background-position: 100% 0; transform: translateY(-2px); }
.nt-btn-ghost {
    background: #fff;
    color: var(--nt-blue) !important;
    border: 1px solid rgba(0, 8, 255, .22);
}
.nt-btn-ghost:hover {
    border-color: var(--nt-blue);
    box-shadow: var(--nt-shadow-soft);
    transform: translateY(-2px);
}
.nt-btn-white {
    background: #fff;
    color: var(--nt-blue) !important;
}
.nt-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(0,0,0,.35); }

/* Conic ring behind hero frame */
.nt-hero-ring {
    position: absolute;
    left: 50%; top: 50%;
    width: 130%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 70%, rgba(0, 8, 255, .35) 82%, rgba(0, 212, 255, .5) 88%, transparent 96%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    animation: nt-spin 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes nt-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.nt-hero-frame-bar, .nt-hero-frame img { position: relative; z-index: 1; }

/* Hero framed image (replaceable hero.jpg) */
.nt-hero-frame {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--nt-line);
    box-shadow: 0 40px 90px -34px rgba(0, 8, 255, .38);
    overflow: hidden;
}
.nt-hero-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 23px;
    padding: 1px;
    background: var(--nt-grad);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .35;
    pointer-events: none;
}
.nt-hero-frame-bar {
    display: flex;
    gap: 7px;
    padding: 12px 16px;
    background: var(--nt-surface);
    border-bottom: 1px solid var(--nt-line);
}
.nt-hero-frame-bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(0, 8, 255, .18);
}
.nt-hero-frame-bar span:first-child { background: var(--nt-blue); }
.nt-hero-frame img { display: block; width: 100%; height: auto; }

@media (max-width: 767px) {
    .nt-hero { padding: 120px 0 30px; }
    .nt-hero-title { font-size: 38px; }
    .nt-btn-primary, .nt-btn-ghost { width: 100%; justify-content: center; }
}

/* ---------- Section titles ---------- */
.nt-section-title { margin-bottom: 44px; }
.nt-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--nt-blue);
    padding: 6px 14px;
    border: 1px solid var(--nt-line);
    border-radius: 999px;
    background: rgba(0, 8, 255, .05);
    margin-bottom: 14px;
}
.nt-section-title h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--nt-ink);
    margin: 0;
}

/* ---------- Stats card ---------- */
body.nt .nt-stats.stats { background: var(--nt-bg); padding: 30px 0 10px; border: none; }
.nt-stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: var(--nt-radius);
    background: #fff;
    border: 1px solid var(--nt-line);
    box-shadow: var(--nt-shadow-soft);
    overflow: hidden;
}
.nt-stat {
    padding: 30px 12px;
    text-align: center;
    border-right: 1px solid var(--nt-line);
}
.nt-stat:last-child { border-right: none; }
.nt-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--nt-ink);
    line-height: 1.1;
}
.nt-stat-num span { color: var(--nt-blue); }
.nt-stat-label {
    color: var(--nt-muted);
    font-size: 12.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 6px;
}
@media (max-width: 900px) {
    .nt-stats-card { grid-template-columns: repeat(2, 1fr); }
    .nt-stat:nth-child(2) { border-right: none; }
    .nt-stat:nth-child(1), .nt-stat:nth-child(2) { border-bottom: 1px solid var(--nt-line); }
}

/* ---------- Steps ---------- */
body.nt .nt-steps.steps { background: var(--nt-bg); padding: 84px 0 50px; }
.nt-step {
    padding: 34px 22px;
    border-radius: var(--nt-radius);
    background: var(--nt-surface);
    border: 1px solid var(--nt-line);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    margin-bottom: 20px;
}
.nt-step:hover { transform: translateY(-6px); box-shadow: var(--nt-shadow); background: #fff; }
.nt-step-icon {
    width: 62px; height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--nt-grad);
    color: #fff;
    font-size: 23px;
    box-shadow: var(--nt-shadow);
}
.nt-step h4 { font-size: 18px; font-weight: 600; color: var(--nt-ink); margin: 0; }
.nt-step p { margin: 10px 0 0; font-size: 14px; color: var(--nt-muted); }

/* ---------- Features ---------- */
body.nt .nt-features.features { background: var(--nt-surface); padding: 84px 0; }
.nt-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.nt-feature {
    padding: 30px 26px;
    border-radius: var(--nt-radius);
    background: #fff;
    border: 1px solid var(--nt-line);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nt-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--nt-shadow);
    border-color: rgba(0, 8, 255, .28);
}
.nt-feature-icon {
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(0, 8, 255, .08);
    color: var(--nt-blue);
    font-size: 19px;
    margin-bottom: 16px;
}
.nt-feature h4 { font-size: 17px; font-weight: 600; margin: 0 0 8px; color: var(--nt-ink); }
.nt-feature p { font-size: 14px; line-height: 1.65; color: var(--nt-muted); margin: 0; }
@media (max-width: 991px) { .nt-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .nt-feature-grid { grid-template-columns: 1fr; } }

/* ---------- Withdraw methods marquee ---------- */
.nt-methods { background: var(--nt-bg); padding: 84px 0 70px; overflow: hidden; }
.nt-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nt-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: nt-marquee 32s linear infinite;
    padding: 6px 0;
}
.nt-marquee:hover .nt-marquee-track { animation-play-state: paused; }
@keyframes nt-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.nt-method-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--nt-line);
    box-shadow: var(--nt-shadow-soft);
    white-space: nowrap;
    transition: border-color .2s ease, transform .2s ease;
}
.nt-method-chip:hover { border-color: var(--nt-blue); transform: translateY(-2px); }
.nt-method-chip img { height: 26px; width: auto; }
.nt-method-meta { display: flex; flex-direction: column; line-height: 1.25; }
.nt-method-meta strong { font-size: 14px; color: var(--nt-ink); font-weight: 600; }
.nt-method-meta span { font-size: 12px; color: var(--nt-muted); }

/* ---------- Testimonials ---------- */
.nt-testimonials { background: var(--nt-surface); padding: 84px 0; }
.nt-testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.nt-testi {
    position: relative;
    padding: 28px 26px 24px;
    border-radius: var(--nt-radius);
    background: #fff;
    border: 1px solid var(--nt-line);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.nt-testi:hover { transform: translateY(-5px); box-shadow: var(--nt-shadow); }
.nt-testi-quote {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(0, 8, 255, .08);
    color: var(--nt-blue);
    font-size: 15px;
    margin-bottom: 14px;
}
.nt-testi-content {
    color: var(--nt-muted);
    font-size: 14.5px;
    line-height: 1.7;
    flex: 1;
}
.nt-testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--nt-line);
}
.nt-testi-person img,
.nt-testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.nt-testi-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nt-grad);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.nt-testi-person h4 { font-size: 15px; font-weight: 600; color: var(--nt-ink); margin: 0; }
.nt-testi-person span { font-size: 12.5px; color: var(--nt-muted); }

/* ---------- FAQ ---------- */
.nt-faq { background: var(--nt-bg); padding: 84px 0; }
.nt-faq-list { max-width: 760px; margin: 0 auto; }
.nt-faq-item {
    border: 1px solid var(--nt-line);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.nt-faq-item[open] {
    border-color: rgba(0, 8, 255, .3);
    box-shadow: var(--nt-shadow-soft);
}
.nt-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--nt-ink);
}
.nt-faq-item summary::-webkit-details-marker { display: none; }
.nt-faq-item summary i {
    color: var(--nt-blue);
    font-size: 12px;
    transition: transform .25s ease;
}
.nt-faq-item[open] summary i { transform: rotate(180deg); }
.nt-faq-body {
    padding: 0 22px 20px;
    color: var(--nt-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ---------- CTA ---------- */
.nt-cta { background: var(--nt-bg); padding: 0 0 84px; }
.nt-cta-card {
    position: relative;
    border-radius: 26px;
    padding: 48px 44px;
    background: linear-gradient(115deg, var(--nt-blue-deep) 0%, var(--nt-blue) 45%, var(--nt-violet) 100%);
    overflow: hidden;
    box-shadow: 0 30px 70px -26px rgba(0, 8, 255, .5);
}
.nt-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(480px 260px at 92% 15%, rgba(0, 212, 255, .35), transparent 60%),
        radial-gradient(400px 260px at 4% 110%, rgba(255, 255, 255, .14), transparent 60%);
    pointer-events: none;
}
.nt-cta-card > .row { position: relative; z-index: 1; }
.nt-cta-card h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.nt-cta-card p { color: rgba(240, 244, 255, .82); font-size: 15px; line-height: 1.7; margin: 0; }
.nt-cta-action { display: flex; align-items: center; justify-content: flex-end; }
@media (max-width: 991px) {
    .nt-cta-action { justify-content: flex-start; margin-top: 24px; }
    .nt-cta-card { padding: 36px 26px; }
}

/* ---------- Payments strip & footer ---------- */
body.nt .nt-payments {
    background: #fff;
    padding: 28px 0;
    border-top: 1px solid var(--nt-line);
}
body.nt .nt-payments img {
    filter: grayscale(1);
    opacity: .5;
    transition: filter .2s ease, opacity .2s ease;
    margin: 6px 10px;
    max-height: 30px;
}
body.nt .nt-payments img:hover { filter: none; opacity: 1; }

body.nt .nt-footer-bottom {
    background: var(--nt-ink);
    color: rgba(235, 238, 255, .55);
    padding: 28px 0;
    font-size: 13.5px;
}
body.nt .nt-footer-bottom a { color: rgba(235, 238, 255, .78); }
body.nt .nt-footer-bottom a:hover { color: var(--nt-cyan); text-decoration: none; }
body.nt .nt-footer-bottom .social-links a {
    display: inline-flex;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    transition: background .2s ease;
}
body.nt .nt-footer-bottom .social-links a:hover { background: var(--nt-blue); color: #fff; }

/* ---------- Inner pages ---------- */
body.nt.inner-page { background: var(--nt-surface); padding-top: 90px; }
body.nt.inner-page .page-content,
body.nt.inner-page .content-container {
    background: #fff;
    border-radius: var(--nt-radius);
    border: 1px solid var(--nt-line);
}

/* ---------- Accessibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--nt-blue);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    body.nt * { animation: none !important; transition: none !important; }
    body.nt .wow { visibility: visible !important; }
    .nt-marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center; width: 100%; }
}


/* ---------- Top CPM bento ---------- */
.nt-cpm { background: var(--nt-surface); padding: 84px 0; }
.nt-bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.nt-bento-main {
    background: #fff;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    padding: 28px;
    box-shadow: var(--nt-shadow-soft);
    display: flex;
    flex-direction: column;
}
.nt-bento-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--nt-blue);
    margin-bottom: 18px;
}
.nt-rate-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.nt-rate {
    display: grid;
    grid-template-columns: 26px 24px minmax(90px, 150px) 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    background: var(--nt-surface);
    border: 1px solid transparent;
    transition: border-color .2s ease, transform .2s ease;
}
.nt-rate:hover { border-color: rgba(0, 8, 255, .25); transform: translateX(4px); }
.nt-rate-rank {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--nt-muted);
}
.nt-rate:first-child .nt-rate-rank { color: var(--nt-blue); }
.nt-rate .flag-icon { border-radius: 3px; font-size: 17px; line-height: 1; }
.nt-rate-country {
    font-size: 14px;
    font-weight: 600;
    color: var(--nt-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nt-rate-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 8, 255, .08);
    overflow: hidden;
}
.nt-rate-bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--nt-grad);
}
.nt-rate-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: var(--nt-blue);
    white-space: nowrap;
}
.nt-link-more {
    margin-top: 18px;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--nt-blue) !important;
    text-decoration: none !important;
}
.nt-link-more:hover { gap: 12px; }
.nt-link-more { transition: gap .2s ease; }

.nt-bento-side { display: flex; flex-direction: column; gap: 20px; }
.nt-bento-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    padding: 26px;
    box-shadow: var(--nt-shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}
.nt-bento-card:hover { transform: translateY(-4px); box-shadow: var(--nt-shadow); }
.nt-bento-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 8, 255, .08);
    color: var(--nt-blue);
    font-size: 18px;
    margin-bottom: 14px;
}
.nt-bento-card h4 { font-size: 15px; font-weight: 600; color: var(--nt-muted); margin: 0 0 6px; text-transform: uppercase; letter-spacing: .06em; }
.nt-bento-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--nt-ink);
    line-height: 1.1;
    margin-bottom: 8px;
}
.nt-bento-card p { font-size: 13.5px; color: var(--nt-muted); line-height: 1.6; margin: 0; }
.nt-bento-accent {
    background: linear-gradient(135deg, var(--nt-blue-deep), var(--nt-blue) 55%, var(--nt-violet));
    border: none;
}
.nt-bento-accent .nt-bento-icon { background: rgba(255,255,255,.16); color: #fff; }
.nt-bento-accent h4 { color: rgba(240,244,255,.8); }
.nt-bento-accent .nt-bento-big { color: #fff; }
.nt-bento-accent p { color: rgba(240,244,255,.75); }
.nt-bento-nomain { grid-template-columns: 1fr; }
.nt-bento-nomain .nt-bento-side {
    flex-direction: row;
    align-items: stretch;
}
.nt-bento-nomain .nt-bento-side .nt-bento-card { flex: 1; }
@media (max-width: 991px) {
    .nt-bento { grid-template-columns: 1fr; }
    .nt-bento-nomain .nt-bento-side { flex-direction: column; }
    .nt-rate { grid-template-columns: 22px 22px minmax(80px, 1fr) auto; }
    .nt-rate-bar { display: none; }
}

/* ---------- Feature bento & chips ---------- */
.nt-feature-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.nt-feature-bento .nt-feature { margin: 0; }
.nt-f-wide { grid-column: span 2; }
.nt-f-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.nt-f-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(0, 8, 255, .06);
    border: 1px solid rgba(0, 8, 255, .14);
    color: var(--nt-blue-deep);
    font-size: 12.5px;
    font-weight: 600;
}
.nt-f-chip .flag-icon { border-radius: 3px; }
.nt-f-chip i { color: var(--nt-blue); }
@media (max-width: 991px) {
    .nt-feature-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .nt-feature-bento { grid-template-columns: 1fr; }
    .nt-f-wide { grid-column: span 1; }
}
