/* ═══════════════════════════════════════════════════════
   Neon Mobil Oyun İncelemeleri — "Pocket Neon" Tasarım
   Tamamen yerel, dış bağımlılık yok
   ═══════════════════════════════════════════════════════ */

/* ── Değişkenler ── */
:root {
    --bg-deep: #06070d;
    --bg-surface: #0c0e18;
    --bg-card: rgba(14, 17, 30, 0.85);
    --bg-glass: rgba(18, 22, 40, 0.65);
    --border-glow: rgba(0, 220, 255, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);

    --neon-cyan: #00dcff;
    --neon-magenta: #ff2eaa;
    --neon-green: #39ff14;
    --neon-yellow: #ffe53b;
    --neon-orange: #ff6b2b;

    --text-primary: #e8eaf0;
    --text-secondary: #9ba3b5;
    --text-muted: #5a6278;
    --text-link: #00dcff;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-glow-sm: 0 0 8px rgba(0, 220, 255, 0.15);
    --shadow-glow-md: 0 0 20px rgba(0, 220, 255, 0.12);
    --shadow-glow-lg: 0 4px 40px rgba(0, 220, 255, 0.10);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.4);

    --font-main: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    --header-h: 64px;
    --max-w: 1240px;
    --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--neon-magenta); }
a:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: 2px; border-radius: 2px; }

ul, ol { list-style: none; }

/* ── Skip Link ── */
.np-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--neon-cyan);
    color: var(--bg-deep);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 10000;
    transition: top 0.2s;
}
.np-skip-link:focus {
    top: 8px;
}

/* ── Grid arka plan ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0, 220, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 220, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ══════════════════════════════════════
   HEADER & NAV
   ══════════════════════════════════════ */
.np-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: rgba(6, 7, 13, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glow);
    transition: background var(--transition), box-shadow var(--transition);
    overflow: visible;
    width: 100%;
}
.np-header--scrolled {
    background: rgba(6, 7, 13, 0.96);
    box-shadow: var(--shadow-glow-md);
}

.np-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    min-width: 0;
}

.np-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.np-logo__icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    border-radius: 6px;
    display: inline-block;
    flex-shrink: 0;
}
.np-logo span {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav */
.np-nav { display: flex; gap: 2px; flex-wrap: nowrap; }
.np-nav-link {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
@media (min-width: 1200px) {
    .np-nav { gap: 4px; }
    .np-nav-link { padding: 6px 14px; font-size: 0.875rem; }
}
.np-nav-link:hover,
.np-nav-link:focus-visible {
    color: var(--neon-cyan);
    background: rgba(0, 220, 255, 0.06);
}
.np-nav-link--active {
    color: var(--neon-cyan);
    background: rgba(0, 220, 255, 0.08);
    box-shadow: inset 0 -2px 0 var(--neon-cyan);
}
@media (max-width: 1024px) {
    .np-nav-link--active {
        box-shadow: inset 3px 0 0 var(--neon-cyan);
    }
}

/* Hamburger */
.np-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
}
.np-hamburger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.np-hamburger__close { display: none; }
.np-hamburger[aria-expanded="true"] .np-hamburger__open { display: none; }
.np-hamburger[aria-expanded="true"] .np-hamburger__close { display: block; }

@media (max-width: 1024px) {
    .np-hamburger { display: block; }
    .np-nav {
        position: fixed;
        top: var(--header-h);
        right: 0;
        bottom: 0;
        width: min(280px, 80vw);
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
        flex-direction: column;
        background: rgba(6, 7, 13, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glow);
        padding: 24px 16px;
        gap: 4px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.35s ease, visibility 0s 0.35s;
        overflow-y: auto;
        z-index: 9999;
    }
    .np-nav--open {
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.35s ease, visibility 0s 0s;
    }
    .np-nav-link { padding: 12px 16px; font-size: 1rem; }
    html.menu-open,
    html.menu-open body {
        overflow: hidden;
        touch-action: none;
        overscroll-behavior: none;
    }
    .np-nav-overlay {
        position: fixed;
        inset: 0;
        top: var(--header-h);
        background: transparent;
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.35s ease;
    }
    .np-nav-overlay--visible {
        opacity: 1;
    }
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.np-hero {
    position: relative;
    padding: 80px 24px 80px;
    text-align: center;
    overflow: hidden;
}
.np-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.25;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.np-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-deep) 100%);
    z-index: -1;
}
.np-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.np-hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 32px;
}
.np-hero__cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-xl);
    transition: transform var(--transition), box-shadow var(--transition);
}
.np-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 220, 255, 0.3);
    color: var(--bg-deep);
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.np-section {
    position: relative;
    padding: 80px 24px;
    z-index: 1;
}
.np-section--alt {
    background: var(--bg-surface);
}
.np-container {
    max-width: var(--max-w);
    margin: 0 auto;
}
.np-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.np-section-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 720px;
}

/* ══════════════════════════════════════
   GLASS PANELS
   ══════════════════════════════════════ */
.np-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.np-glass:hover {
    border-color: rgba(0, 220, 255, 0.25);
    box-shadow: var(--shadow-glow-sm);
}

/* ══════════════════════════════════════
   FILTER BAR
   ══════════════════════════════════════ */
.np-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
    align-items: center;
}
.np-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.np-filter-group__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-right: 4px;
}
.np-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 7px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}
.np-filter-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}
.np-filter-btn--active {
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.15), rgba(255, 46, 170, 0.10));
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--shadow-glow-sm);
}
.np-filter-btn:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

.np-search-wrap {
    flex: 1 1 240px;
    max-width: 340px;
    position: relative;
}
.np-search-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 10px 16px 10px 40px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition);
}
.np-search-input::placeholder { color: var(--text-muted); }
.np-search-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-glow-sm);
}
.np-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

/* ══════════════════════════════════════
   REVIEW CARDS (Phone HUD Panel)
   ══════════════════════════════════════ */
.np-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.np-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.np-review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-lg);
    border-color: rgba(0, 220, 255, 0.3);
}

.np-review-card__header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.np-review-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}
.np-review-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.np-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}
.np-tag--br { color: var(--neon-orange); border-color: rgba(255, 107, 43, 0.3); background: rgba(255, 107, 43, 0.08); }
.np-tag--moba { color: var(--neon-magenta); border-color: rgba(255, 46, 170, 0.3); background: rgba(255, 46, 170, 0.08); }
.np-tag--arcade { color: var(--neon-green); border-color: rgba(57, 255, 20, 0.3); background: rgba(57, 255, 20, 0.08); }
.np-tag--strateji { color: var(--neon-yellow); border-color: rgba(255, 229, 59, 0.3); background: rgba(255, 229, 59, 0.08); }
.np-tag--spor { color: var(--neon-cyan); border-color: rgba(0, 220, 255, 0.3); background: rgba(0, 220, 255, 0.08); }
.np-tag--online { color: var(--neon-cyan); border-color: rgba(0, 220, 255, 0.2); background: rgba(0, 220, 255, 0.06); }
.np-tag--offline { color: var(--text-secondary); border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); }
.np-tag--session { color: var(--text-muted); border-color: rgba(255, 255, 255, 0.08); background: transparent; font-size: 0.7rem; }

/* Rating */
.np-review-card__score {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.np-score-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    font-family: var(--font-mono);
}
.np-score-badge--high { background: rgba(57, 255, 20, 0.12); color: var(--neon-green); border: 2px solid rgba(57, 255, 20, 0.3); }
.np-score-badge--mid { background: rgba(255, 229, 59, 0.12); color: var(--neon-yellow); border: 2px solid rgba(255, 229, 59, 0.3); }
.np-score-badge--low { background: rgba(255, 107, 43, 0.12); color: var(--neon-orange); border: 2px solid rgba(255, 107, 43, 0.3); }

.np-review-card__body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.np-review-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 4px;
}

.np-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}
.np-pros li::before { content: '+'; color: var(--neon-green); font-weight: 700; margin-right: 6px; }
.np-cons li::before { content: '−'; color: var(--neon-orange); font-weight: 700; margin-right: 6px; }
.np-pros li, .np-cons li {
    font-size: 0.82rem;
    margin-bottom: 4px;
    color: var(--text-secondary);
}

/* ══════════════════════════════════════
   GENRE / MONETIZATION / PERFORMANCE GRIDS
   ══════════════════════════════════════ */
.np-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.np-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color var(--transition);
}
.np-info-card:hover {
    border-color: rgba(0, 220, 255, 0.25);
}
.np-info-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.np-info-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.np-info-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   METHODOLOGY
   ══════════════════════════════════════ */
.np-method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.np-method-step {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 24px;
    counter-increment: step;
    position: relative;
}
.np-method-step::before {
    content: counter(step);
    position: absolute;
    top: -12px;
    left: 20px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--bg-deep);
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.np-method-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 4px;
}
.np-method-step p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* ══════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════ */
.np-faq-list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.np-faq-item {
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}
.np-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: color var(--transition);
}
.np-faq-question:hover { color: var(--neon-cyan); }
.np-faq-question:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: -2px; }
.np-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--neon-cyan);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.np-faq-question[aria-expanded="true"]::after {
    content: '−';
}
.np-faq-answer {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.np-faq-answer > p {
    overflow: hidden;
    min-height: 0;
}
.np-faq-item--open .np-faq-answer {
    grid-template-rows: 1fr;
    padding: 0 24px 20px;
}

/* ══════════════════════════════════════
   ABOUT / POLICIES
   ══════════════════════════════════════ */
.np-policy-content {
    max-width: 800px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}
.np-policy-content h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 28px 0 10px;
}
.np-policy-content p {
    margin-bottom: 14px;
}
.np-policy-content ul {
    margin-bottom: 14px;
    padding-left: 24px;
}
.np-policy-content ul li {
    list-style: disc;
    margin-bottom: 6px;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.np-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .np-contact-grid { grid-template-columns: 1fr; }
}

.np-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.np-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.np-contact-item__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 220, 255, 0.08);
    border: 1px solid rgba(0, 220, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--neon-cyan);
    font-size: 1.1rem;
}
.np-contact-item__text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.np-contact-item__text p,
.np-contact-item__text a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ── Form ── */
.np-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.np-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.np-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.np-form-group label .np-required {
    color: var(--neon-magenta);
}
.np-form-input,
.np-form-textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.np-form-input:focus,
.np-form-textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-glow-sm);
}
.np-form-input::placeholder,
.np-form-textarea::placeholder { color: var(--text-muted); }

.np-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.np-input--error {
    border-color: var(--neon-magenta) !important;
    box-shadow: 0 0 8px rgba(255, 46, 170, 0.2) !important;
}
.np-field-error {
    font-size: 0.8rem;
    color: var(--neon-magenta);
    margin-top: 2px;
}

/* Checkbox */
.np-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.np-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--neon-cyan);
    flex-shrink: 0;
}
.np-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Submit */
.np-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    align-self: flex-start;
}
.np-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 220, 255, 0.3);
}
.np-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Feedback */
.np-form-feedback {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
}
.np-form-feedback--success {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    color: var(--neon-green);
}
.np-form-feedback--error {
    background: rgba(255, 46, 170, 0.08);
    border: 1px solid rgba(255, 46, 170, 0.2);
    color: var(--neon-magenta);
}

/* Honeypot */
.np-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.np-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 24px;
    background: rgba(6, 7, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}
.np-cookie-banner__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.np-cookie-banner p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.np-cookie-banner a {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.np-cookie-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.np-cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid;
}
.np-cookie-btn--accept {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-deep);
}
.np-cookie-btn--accept:hover {
    box-shadow: 0 0 16px rgba(0, 220, 255, 0.4);
}
.np-cookie-btn--reject {
    background: transparent;
    border-color: var(--text-muted);
    color: var(--text-secondary);
}
.np-cookie-btn--reject:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.np-cookie-btn--settings {
    background: transparent;
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
}
.np-cookie-btn--settings:hover {
    background: rgba(255, 46, 170, 0.08);
}
.np-cookie-btn:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* Settings panel */
.np-cookie-settings {
    margin-top: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
}
.np-cookie-settings h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.np-cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.np-cookie-option:last-of-type { border-bottom: none; }

.np-cookie-option__info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}
.np-cookie-option__info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Toggle switch */
.np-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.np-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.np-toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--text-muted);
    border-radius: 24px;
    cursor: pointer;
    transition: background var(--transition);
}
.np-toggle__slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: transform var(--transition);
}
.np-toggle input:checked + .np-toggle__slider {
    background: var(--neon-cyan);
}
.np-toggle input:checked + .np-toggle__slider::before {
    transform: translateX(20px);
}
.np-toggle input:disabled + .np-toggle__slider {
    opacity: 0.5;
    cursor: not-allowed;
}
.np-toggle input:focus-visible + .np-toggle__slider {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

.np-cookie-settings .np-cookie-btn {
    margin-top: 14px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.np-footer {
    padding: 48px 24px 32px;
    border-top: 1px solid var(--border-glow);
    background: var(--bg-surface);
    text-align: center;
    position: relative;
    z-index: 1;
}
.np-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}
.np-footer a {
    color: var(--text-secondary);
}
.np-footer a:hover {
    color: var(--neon-cyan);
}
.np-footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ══════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════ */
.np-btt {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
    font-size: 1.2rem;
}
.np-btt--visible {
    opacity: 1;
    visibility: visible;
}
.np-btt:hover {
    background: rgba(0, 220, 255, 0.1);
    box-shadow: var(--shadow-glow-sm);
}
.np-btt:focus-visible {
    outline: 2px solid var(--neon-cyan);
    outline-offset: 2px;
}

/* ══════════════════════════════════════
   NO RESULTS
   ══════════════════════════════════════ */
.np-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
}

/* ══════════════════════════════════════
   DECORATIVE IMAGES
   ══════════════════════════════════════ */
.np-deco-img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glow);
    opacity: 0.5;
    max-height: 240px;
    object-fit: cover;
    width: 100%;
    margin: 24px 0;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.np-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.np-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .np-animate {
        opacity: 1;
        transform: none;
    }
    .np-review-card:hover {
        transform: none;
    }
    .np-hero__cta:hover {
        transform: none;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .np-header { padding: 0 16px; }
    .np-hero { padding: 72px 16px 56px; }
    .np-section { padding: 56px 16px; }
    .np-reviews-grid { grid-template-columns: 1fr; }
    .np-pros-cons { grid-template-columns: 1fr; }
    .np-filter-bar { gap: 8px; }
    .np-search-wrap { flex: 1 1 100%; max-width: 100%; }
    .np-info-grid { grid-template-columns: 1fr; }
    .np-method-steps { grid-template-columns: 1fr; }
    .np-cookie-banner { padding: 16px; }
    .np-glass { padding: 20px; }
}

@media (max-width: 480px) {
    .np-header { padding: 0 12px; }
    .np-logo { font-size: 1.05rem; gap: 6px; }
    .np-logo__icon { width: 24px; height: 24px; }
    .np-review-card__header { flex-direction: column; gap: 10px; }
    .np-cookie-btns { flex-direction: column; }
    .np-cookie-btn { width: 100%; text-align: center; }
}
