@font-face {
    font-family: "Oswald";
    src: url("../fonts/oswald-latin-ext.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/oswald-latin.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #EFE6D4;
    --bg-soft: #E7DDC8;
    --accent: #B23A2F;
    --accent-dark: #8E2C23;
    --text: #2B211C;
    --text-soft: #6B5D53;
    --frame: #3B2B21;
    --line: #D8CDB8;

    /* másodlagos akcentek — a termek anyagvilágából, adagolva (blog, nem kaszinó) */
    --felt: #1F5D4C;        /* posztó-zöld — kockázat/adat kiemelés */
    --felt-dark: #16483A;
    --brass: #B8862F;       /* sárgaréz — finom számdíszítés */

    --font-display: "Oswald", "Arial Narrow", Impact, system-ui, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

    --wrap: 860px;
    --narrow: 860px;
    --radius: 8px;

    --sheet: #FBF6EC;
    --sheet-shadow:
        0 0 0 1px rgba(59, 43, 33, .06),
        0 2px 4px rgba(43, 33, 28, .05),
        0 14px 34px rgba(43, 33, 28, .12);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23a)' opacity='0.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23b)' opacity='0.55'/%3E%3C/svg%3E");
    background-size: 300px 300px, 600px 600px;
    mix-blend-mode: multiply;
    opacity: .22;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='320'%20height='320'%20fill='none'%20stroke='%233B2B21'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M28%2034h36l-21%2048'/%3E%3Ccircle%20cx='246'%20cy='56'%20r='11'/%3E%3Ccircle%20cx='270'%20cy='68'%20r='11'/%3E%3Cpath%20d='M246%2045c2-15%2013-24%2028-26M270%2057c0-13-7-21-17-25'/%3E%3Crect%20x='104'%20y='58'%20width='48'%20height='20'%20rx='4'/%3E%3Cpath%20d='M104%2068h48'/%3E%3Cpath%20d='M176%20128l8%2016%2017%202-12%2012%203%2017-16-9-15%209%203-17-13-12%2018-2z'/%3E%3Crect%20x='36'%20y='196'%20width='44'%20height='56'%20rx='5'/%3E%3Cpath%20d='M58%20196v56'/%3E%3Ccircle%20cx='258'%20cy='222'%20r='19'/%3E%3Ccircle%20cx='258'%20cy='222'%20r='11'/%3E%3Cpath%20d='M120%20240a20%2020%200%201%201%2040%200v22h-12v-22a8%208%200%200%200-16%200v22h-12z'/%3E%3C/svg%3E");
    background-size: 320px 320px;
    opacity: .05;
}

@media print {
    body::before,
    body::after { display: none; }
}

img { max-width: 100%; height: auto; }

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.15;
}

.ngn-wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
}

.ngn-narrow { max-width: var(--narrow); }

.ngn-main { display: block; }

.screen-reader-text,
.ngn-skip {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.ngn-skip:focus {
    position: fixed;
    top: 10px; left: 10px;
    z-index: 100;
    width: auto; height: auto;
    padding: 10px 16px;
    clip: auto;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
}

.ngn-paper {
    position: relative;
    isolation: isolate;
    max-width: var(--wrap);
    margin: 14px auto 40px;
    overflow: hidden;
    background: var(--sheet);
    border-radius: 14px;
    box-shadow: var(--sheet-shadow);
}

.ngn-hero-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 620px;
    z-index: -1;
    pointer-events: none;
    opacity: .6;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 860 620' fill='none' stroke-linecap='round' stroke-linejoin='round'><g stroke='%23B8862F' stroke-width='2' stroke-opacity='.2'><g transform='translate(786 500) rotate(-9)'><path d='M-20 -28H20L-3 34' stroke-width='2.8'/><path d='M-8 2H11' stroke-width='2.2'/></g><g transform='translate(704 138) rotate(13)'><rect x='-32' y='-32' width='64' height='64' rx='11'/></g><g transform='translate(778 215) rotate(-8)'><rect x='-22' y='-22' width='44' height='44' rx='8'/></g><g transform='translate(798 348)'><circle r='30'/><circle r='17'/><path d='M0 -30v8M0 30v-8M-30 0h8M30 0h-8M-21 -21l5.6 5.6M21 21l-5.6 -5.6M-21 21l5.6 -5.6M21 -21l-5.6 5.6'/></g><path transform='translate(432 118) scale(.85)' d='M0 -8C0.8 -2.7 2.7 -0.8 8 0C2.7 0.8 0.8 2.7 0 8C-0.8 2.7 -2.7 0.8 -8 0C-2.7 -0.8 -0.8 -2.7 0 -8Z'/><path transform='translate(645 425) scale(.7)' d='M0 -8C0.8 -2.7 2.7 -0.8 8 0C2.7 0.8 0.8 2.7 0 8C-0.8 2.7 -2.7 0.8 -8 0C-2.7 -0.8 -0.8 -2.7 0 -8Z'/><path transform='translate(205 565) scale(.8)' d='M0 -8C0.8 -2.7 2.7 -0.8 8 0C2.7 0.8 0.8 2.7 0 8C-0.8 2.7 -2.7 0.8 -8 0C-2.7 -0.8 -0.8 -2.7 0 -8Z'/><g transform='translate(42 175) rotate(-8)'><circle r='11'/><circle r='6'/><path d='M0 -11v4M0 11v-4M-11 0h4M11 0h-4'/></g><g transform='translate(338 245) rotate(14)'><rect x='-13' y='-13' width='26' height='26' rx='5'/></g><g transform='translate(108 492) rotate(-17)'><rect x='-11' y='-11' width='22' height='22' rx='4.5'/></g><g transform='translate(430 522) scale(1.2)'><circle cx='-11' cy='7' r='9.5'/><circle cx='11.5' cy='12' r='9.5'/><path d='M-11 -2C-10 -16 -4 -27 8 -34'/><path d='M11.5 3C11 -11 10 -23 8 -34'/><path d='M8 -34C16 -41 27 -41 33 -35C26 -30 16 -29 8 -34Z'/></g><path transform='translate(843 116) rotate(9)' d='M0 5.6C-1.4 3.4 -6.8 0.2 -6.8 -3.2C-6.8 -5.8 -4.8 -7.4 -2.9 -7.4C-1.5 -7.4 -0.5 -6.6 0 -5.4C0.5 -6.6 1.5 -7.4 2.9 -7.4C4.8 -7.4 6.8 -5.8 6.8 -3.2C6.8 0.2 1.4 3.4 0 5.6Z'/><path transform='translate(598 150) rotate(-7)' d='M0 -7L5.2 0L0 7L-5.2 0Z'/><path transform='translate(350 420) rotate(9) scale(.42)' stroke-width='4.5' d='M0 -16C7.5 -7 13.5 -2 13.5 5A8.2 8.2 0 0 1 1.6 12.3C2.6 16.4 4.3 19.6 6.6 22H-6.6C-4.3 19.6 -2.6 16.4 -1.6 12.3A8.2 8.2 0 0 1 -13.5 5C-13.5 -2 -7.5 -7 0 -16Z'/><path transform='translate(315 338) rotate(-14) scale(.8)' stroke-width='2.4' d='M0 5.6C-1.4 3.4 -6.8 0.2 -6.8 -3.2C-6.8 -5.8 -4.8 -7.4 -2.9 -7.4C-1.5 -7.4 -0.5 -6.6 0 -5.4C0.5 -6.6 1.5 -7.4 2.9 -7.4C4.8 -7.4 6.8 -5.8 6.8 -3.2C6.8 0.2 1.4 3.4 0 5.6Z'/><path transform='translate(300 505) rotate(12) scale(.9)' stroke-width='2.2' d='M0 -6.5L4.8 0L0 6.5L-4.8 0Z'/></g><g fill='%23B8862F' fill-opacity='.2'><g transform='translate(704 138) rotate(13)'><circle cx='-14' cy='-14' r='3.6'/><circle cx='14' cy='-14' r='3.6'/><circle r='3.6'/><circle cx='-14' cy='14' r='3.6'/><circle cx='14' cy='14' r='3.6'/></g><g transform='translate(778 215) rotate(-8)'><circle cx='-8' cy='-8' r='3'/><circle cx='8' cy='8' r='3'/></g><g transform='translate(338 245) rotate(14)'><circle cx='-6' cy='-6' r='1.9'/><circle r='1.9'/><circle cx='6' cy='6' r='1.9'/></g><g transform='translate(108 492) rotate(-17)'><circle cx='-5' cy='-5' r='1.8'/><circle cx='5' cy='5' r='1.8'/></g></g></svg>");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 860px auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 98%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 98%);
}

@media (max-width: 700px) {
    .ngn-hero-deco { display: none; }
}

.ngn-header {
    position: relative;
    z-index: 10;
    padding: 4px 20px;
    border-bottom: 1px solid var(--line);
}

.ngn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 54px;
}

.ngn-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
    text-decoration: none;
}

.ngn-logo-img {
    display: block;
    width: auto;
    height: 34px;
}

.ngn-logo-icon {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    border: 2px solid currentColor;
    border-radius: 6px;
    flex: 0 0 auto;
}

.ngn-logo-icon svg { width: 30px; height: 30px; }

.ngn-logo-text { display: flex; flex-direction: column; }

.ngn-logo-name {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.ngn-logo-tagline {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ngn-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ngn-menu li + li::before {
    content: "/";
    margin: 0 14px;
    color: var(--accent);
    font-weight: 700;
}

.ngn-menu a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
}

.ngn-menu a .ngn-icon {
    flex: 0 0 auto;
    color: var(--text-soft);
    transition: color .14s ease;
}

.ngn-menu a:hover,
.ngn-menu .current-menu-item a { color: var(--accent); }

.ngn-menu a:hover .ngn-icon,
.ngn-menu .current-menu-item a .ngn-icon { color: inherit; }

@media (prefers-reduced-motion: reduce) {
    .ngn-menu a .ngn-icon { transition: none; }
}

.ngn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 40px; height: 40px;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
}

.ngn-burger span {
    display: block;
    height: 2px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
}

.ngn-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ngn-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ngn-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.ngn-title {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: clamp(30px, 5vw, 52px);
    text-transform: uppercase;
    text-align: center;
}

.ngn-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 44px 0 20px;
    color: var(--accent);
    font-size: clamp(21px, 3vw, 28px);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.ngn-rule {
    flex: 1 1 auto;
    height: 0;
    border-top: 2px solid var(--accent);
    opacity: .35;
}

.ngn-hero { padding: 44px 0 12px; }

.ngn-hero-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
}

.ngn-hero-photo img {
    width: 100%;
    aspect-ratio: 1;
    border: 5px solid var(--accent);
    border-radius: 50%;
    object-fit: cover;
}

.ngn-hero-title {
    margin: 0 0 24px;
    color: var(--accent);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    text-transform: uppercase;
}

.ngn-hero-bio p { margin: 0 0 10px; }

.ngn-hero-link {
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
}

.ngn-feed { padding-bottom: 50px; }

.home .ngn-paper { background: #F5ECDB; }

.home .ngn-feed {
    background: var(--sheet);
    margin: 0 -48px -28px;
    padding: 0 48px 56px;
}

.home .ngn-feed::before {
    content: "";
    display: block;
    height: 56px;
    margin: 0 -48px 10px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 860 56' preserveAspectRatio='none'><path d='M0 0H860V24L806 44 748 16 676 40 604 12 528 42 452 18 378 46 302 14 232 40 158 20 88 46 32 24 0 36Z' fill='%23F5ECDB'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: drop-shadow(0 5px 6px rgba(59, 43, 33, .05));
}

.ngn-list { display: block; }

.ngn-item.is-extra { display: none; }

.ngn-more-wrap { display: flex; justify-content: center; margin-top: 30px; }

.ngn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 26px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #F6EEDF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.ngn-more:hover {
    border-color: #C7B48F;
    background: #FBF6EC;
}

.ngn-more:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 58, 47, .14);
}

.ngn-more-chev {
    flex: 0 0 auto;
    color: var(--text-soft);
    transition: transform .18s ease, color .15s ease;
}

.ngn-more:hover .ngn-more-chev {
    transform: translateY(2px);
    color: var(--accent);
}

.ngn-more[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
    .ngn-more,
    .ngn-more-chev { transition: none; }
}

.ngn-item {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: #FFFCF4;
    border: 1px solid rgba(216, 205, 184, .55);
    border-radius: 12px;
    box-shadow:
        0 1px 2px rgba(59, 43, 33, .04),
        0 14px 28px -22px rgba(59, 43, 33, .35);
    transition: box-shadow .18s ease, border-color .18s ease;
}

.ngn-list .ngn-item:last-child { margin-bottom: 0; }

.ngn-item:hover {
    border-color: rgba(184, 134, 47, .45);
    box-shadow:
        0 1px 2px rgba(59, 43, 33, .05),
        0 18px 34px -20px rgba(59, 43, 33, .42);
}

@media (prefers-reduced-motion: reduce) {
    .ngn-item { transition: none; }
}

.ngn-item-thumb { display: block; }

.ngn-item-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    object-fit: cover;
}

.ngn-item-noimg {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.ngn-item-title {
    margin: 0 0 6px;
    font-size: 23px;
    line-height: 1.25;
}

.ngn-item-title a {
    color: var(--accent);
    text-decoration: none;
}

.ngn-item-cover {
    position: relative;
    align-self: center;
}

.ngn-item-stamp {
    position: absolute;
    right: 11px;
    bottom: 11px;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(20, 16, 13, .46);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 11px;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .55);
    color: #fff;
    font-family: var(--font-display);
    line-height: 1;
}

/* fallback ha nincs backdrop-filter: sűrűbb háttér, hogy olvasható maradjon */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .ngn-item-stamp { background: rgba(20, 16, 13, .74); }
}

.ngn-item-stamp b {
    font-size: 22px;
    font-weight: 600;
}

.ngn-item-stamp i {
    font-size: 11px;
    font-style: normal;
    color: rgba(255, 255, 255, .62);
}

.ngn-item-body {
    display: flex;
    flex-direction: column;
}

.ngn-item-facts {
    margin: 0 0 10px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 12.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ngn-item-facts .is-risk { color: var(--felt); font-weight: 600; }

.ngn-item-facts span:not(:last-child)::after {
    content: "·";
    margin: 0 7px;
    opacity: .5;
}

.ngn-item-excerpt {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.ngn-item-facts .is-date {
    white-space: nowrap;
}

.ngn-item-facts .is-date .ngn-icon {
    vertical-align: -2px;
    margin-right: 5px;
    opacity: .7;
}

.ngn-empty { padding: 40px 0; color: var(--text-soft); }

.ngn-review, .ngn-article, .ngn-page { padding: 26px 0 56px; }

.ngn-archive { padding: 26px 0 56px; }

.ngn-archive-head { margin-bottom: 26px; }

.ngn-archive-head .ngn-crumbs { margin: 10px 0 0; }

.ngn-page .ngn-crumbs { margin: 6px 0 22px; }

.ngn-archive-head .ngn-title { text-align: left; font-size: clamp(26px, 4vw, 38px); }

.ngn-archive-desc {
    max-width: 68ch;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.6;
}

.ngn-archive-desc p { margin: 0 0 10px; }
.ngn-archive-desc p:last-child { margin-bottom: 0; }

.ngn-crumbs {
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 13.5px;
}

.ngn-crumbs a { text-decoration: none; }
.ngn-crumbs span { margin: 0 6px; }

.ngn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 30px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.ngn-btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}

.ngn-btn--primary:hover { background: var(--accent-dark); color: #fff; }

.ngn-btn--ghost {
    background: transparent;
    color: var(--accent);
}

.ngn-btn--ghost:hover { background: var(--accent); color: #fff; }

.ngn-btn--wide { width: 100%; }

.ngn-specs table {
    width: 100%;
    border-collapse: collapse;
}

.ngn-specs tr { border-bottom: 1px solid var(--line); }
.ngn-specs tr:first-child { border-top: 1px solid var(--line); }

.ngn-specs th,
.ngn-specs td {
    padding: 13px 8px;
    text-align: left;
    vertical-align: middle;
}

.ngn-specs th {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.ngn-specs td {
    font-weight: 400;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-variant-numeric: tabular-nums;
}

.ngn-spec-icon { color: var(--accent); display: inline-flex; }

.ngn-content { margin: 34px 0; }

.ngn-content > * + * { margin-top: 1.1em; }

.ngn-content h2 {
    margin-top: 1.8em;
    color: var(--accent);
    font-size: 27px;
    text-transform: uppercase;
}

.ngn-content h3 { margin-top: 1.6em; font-size: 21px; }

.ngn-content img {
    border: 1px solid var(--frame);
    border-radius: 4px;
}

.ngn-content figcaption {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.ngn-content blockquote {
    margin: 1.6em 0;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--accent);
    color: var(--text-soft);
    font-style: italic;
}

.ngn-content figure { margin: 1.6em 0; }

.ngn-player {
    position: relative;
    overflow: hidden;
    background: #14100D;
    border: 1px solid var(--frame);
    border-radius: 4px;
    line-height: 0;
}

.ngn-content video {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.ngn-player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 0;
    background: radial-gradient(110% 80% at 50% 45%, rgba(20, 16, 13, .2), rgba(20, 16, 13, .6) 78%);
    border: 0;
    color: #F5EFE2;
    cursor: pointer;
}

.ngn-player.is-playing .ngn-player-start { display: none; }

.ngn-player-ring {
    display: grid;
    place-items: center;
    width: 74px; height: 74px;
    background: rgba(20, 16, 13, .45);
    border: 2px solid rgba(245, 239, 226, .9);
    border-radius: 50%;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
    transition: transform .18s ease, background .18s ease;
}

.ngn-player-ring svg { margin-left: 3px; }

.ngn-player-start:hover .ngn-player-ring {
    background: var(--accent);
    transform: scale(1.06);
}

.ngn-player-bar {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 26px 12px 10px;
    background: linear-gradient(180deg, transparent, rgba(20, 16, 13, .88));
    opacity: 0;
    transition: opacity .2s ease;
}

.ngn-player.is-paused .ngn-player-bar,
.ngn-player.is-active .ngn-player-bar,
.ngn-player:hover .ngn-player-bar { opacity: 1; }

.ngn-player-btn {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px; height: 32px;
    padding: 0;
    background: rgba(245, 239, 226, .14);
    border: 0;
    border-radius: 8px;
    color: #F5EFE2;
    cursor: pointer;
    transition: background .15s ease;
}

.ngn-player-btn:hover { background: var(--accent); }

.ngn-player-btn::before {
    content: "";
    width: 16px; height: 16px;
    background: currentColor;
    -webkit-mask: center / contain no-repeat var(--icon);
    mask: center / contain no-repeat var(--icon);
}

.ngn-player-btn[data-play] {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}

.ngn-player.is-playing .ngn-player-btn[data-play] {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='5' width='4' height='14' rx='1'/%3E%3Crect x='14' y='5' width='4' height='14' rx='1'/%3E%3C/svg%3E");
}

.ngn-player-btn[data-sound] {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9v6h4l5 4V5L8 9z'/%3E%3Cpath d='M16 8.5a5 5 0 0 1 0 7' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.ngn-player.is-muted .ngn-player-btn[data-sound] {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9v6h4l5 4V5L8 9z'/%3E%3Cpath d='M16 9l5 6M21 9l-5 6' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.ngn-player-btn[data-full] {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.ngn-player-track {
    flex: 1 1 auto;
    height: 5px;
    background: rgba(245, 239, 226, .25);
    border-radius: 3px;
    cursor: pointer;
}

.ngn-player-track i {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #E7BA63, #F8D98F);
    border-radius: 3px;
}

.ngn-player-time {
    flex: 0 0 auto;
    color: rgba(245, 239, 226, .82);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .04em;
    line-height: 1;
    white-space: nowrap;
}

.ngn-player:fullscreen {
    display: grid;
    place-items: center;
    background: #000;
    border: 0;
    border-radius: 0;
}

.ngn-player:fullscreen video {
    width: auto;
    max-width: 100%;
    max-height: 100vh;
}

@media (max-width: 780px) {
    .ngn-player-bar { opacity: 1; padding: 22px 10px 8px; }
    .ngn-player-btn { width: 36px; height: 36px; }
    .ngn-player-ring { width: 62px; height: 62px; }
}

.ngn-proscons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 36px 0;
}

.ngn-proscons h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 25px;
    text-transform: uppercase;
}

.ngn-proscons ul { margin: 0; padding: 0; list-style: none; }

.ngn-proscons li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dotted var(--line);
}

.ngn-proscons li:last-child { border-bottom: 0; }

.ngn-pros .ngn-icon { color: #2E7D32; flex: 0 0 auto; margin-top: 3px; }
.ngn-cons .ngn-icon { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }

.ngn-faq-item {
    border-bottom: 1px solid var(--line);
}

.ngn-faq-item:first-child { border-top: 1px solid var(--line); }

.ngn-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 4px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    list-style: none;
}

.ngn-faq-item summary::-webkit-details-marker { display: none; }

.ngn-faq-mark { color: var(--accent); flex: 0 0 auto; transition: transform .18s ease; }

.ngn-faq-item[open] .ngn-faq-mark { transform: rotate(45deg); }

.ngn-faq-answer {
    padding: 0 4px 18px;
    color: var(--text-soft);
}

.ngn-faq-answer p { margin: 0 0 10px; }

.ngn-related-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ngn-related-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 230px;
    min-width: 0;
    max-width: 320px;
    gap: 10px;
    padding: 12px;
    background: #FBF6EC;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    text-align: center;
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease;
}

.ngn-related-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    color: var(--text);
}

.ngn-related-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    object-fit: cover;
}

.ngn-related-title { font-weight: 700; font-size: 16px; }

.ngn-related-rtp { color: var(--text-soft); font-size: 12.5px; font-family: var(--font-body); font-variant-numeric: tabular-nums; }

.ngn-responsible {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 36px 0 0;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.ngn-responsible p { margin: 0; color: var(--text-soft); font-size: 15px; }

.ngn-responsible-age {
    display: grid;
    place-items: center;
    width: 54px; height: 54px;
    flex: 0 0 auto;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

.ngn-authorpage { padding: 26px 20px 56px; }

.ngn-authorcard-top {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 24px 24px 22px;
}

.ngn-authorcard-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border: 4px solid var(--accent);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(43, 33, 28, .22);
}

.ngn-authorcard-main { min-width: 0; }

.ngn-authorcard-kicker {
    margin: 0 0 6px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ngn-authorcard-title {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.06;
    text-transform: uppercase;
}

.ngn-authorcard-lead p { margin: 0 0 10px; }
.ngn-authorcard-lead p:last-child { margin-bottom: 0; }

.ngn-authorcard-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px 18px;
    margin: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.ngn-authorcard-facts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.ngn-authorcard-story,
.ngn-authorcard-method,
.ngn-authorcard-disclosure {
    padding: 20px 24px 22px;
    border-top: 1px solid var(--line);
}

.ngn-authorcard-story h2,
.ngn-authorcard-method h2,
.ngn-authorcard-disclosure h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 25px;
    text-transform: uppercase;
}

.ngn-authorcard-story h3 {
    margin: 22px 0 8px;
    font-size: 19px;
}

.ngn-authorcard-story h3:first-of-type { margin-top: 0; }

.ngn-authorcard-story p { margin: 0 0 12px; }
.ngn-authorcard-story p:last-child { margin-bottom: 0; }

.ngn-authorcard-shot {
    margin: 0;
    border-top: 1px solid var(--line);
}

.ngn-authorcard-shot img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center 32%;
}

.ngn-authorcard-shot figcaption {
    padding: 10px 24px 14px;
    color: var(--text-soft);
    font-size: 13.5px;
    font-style: italic;
    line-height: 1.5;
}

.ngn-authorcard-disclosure p {
    max-width: 68ch;
    margin: 0 0 10px;
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.6;
}

.ngn-authorcard-disclosure p:last-child { margin-bottom: 0; }

.ngn-method-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ngn-method-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
}

.ngn-method-num {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: .9;
}

.ngn-method-body { display: flex; flex-direction: column; gap: 4px; }

.ngn-method-body strong {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ngn-method-body span { color: var(--text-soft); font-size: 14.5px; }

@media (max-width: 780px) {
    .ngn-authorcard-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding: 18px 20px;
        text-align: center;
    }

    .ngn-authorcard-photo { max-width: 150px; margin: 0 auto; }
    .ngn-authorcard-lead { text-align: left; }

    .ngn-authorcard-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 16px 20px; }

    .ngn-authorcard-story,
    .ngn-authorcard-method,
    .ngn-authorcard-disclosure { padding: 18px 20px 20px; }

    .ngn-authorcard-shot img { max-height: 380px; }
    .ngn-authorcard-shot figcaption { padding: 10px 20px 14px; }

    .ngn-authorcard-story h2,
    .ngn-authorcard-method h2,
    .ngn-authorcard-disclosure h2 { font-size: 22px; }
}

@media (max-width: 420px) {
    .ngn-authorcard-facts { grid-template-columns: minmax(0, 1fr); }
}

.ngn-footer {
    margin-top: 40px;
    padding: 30px 0;
    background: var(--frame);
    color: #E8DCC8;
}

.home .ngn-footer { margin-top: 0; }

.ngn-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
}

.ngn-age {
    display: grid;
    place-items: center;
    width: 62px; height: 62px;
    flex: 0 0 auto;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
}

.ngn-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.ngn-footer-menu a {
    color: #E8DCC8;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
}

.ngn-footer-menu a:hover { color: #fff; }

.ngn-disclaimer {
    margin: 0 0 8px;
    max-width: 78ch;
    color: #C9B9A2;
    font-size: 13.5px;
    line-height: 1.55;
}

.ngn-copy { margin: 14px 0 0; color: #9C8B77; font-size: 13px; }

.ngn-footer-body {
    flex: 1 1 320px;
    min-width: 0;
}

.ngn-footer-logo {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 10px;
    align-self: center;
    line-height: 0;
    opacity: .92;
    transition: opacity .15s ease;
}

.ngn-footer-logo:hover { opacity: 1; }

.ngn-footer-logo img {
    display: block;
    width: auto;
    height: 118px;
}

@media (max-width: 900px) {
    .ngn-footer-body { order: 3; flex: 1 1 100%; }

    .ngn-footer-logo {
        order: 2;
        margin-left: auto;
        align-self: flex-start;
    }

    .ngn-footer-logo img { height: 80px; }
}

.ngn-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    padding: 0;
    background: #FBF6EC;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .8),
        0 4px 14px rgba(43, 33, 28, .18);
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, background .15s ease, box-shadow .15s ease;
}

.ngn-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ngn-top:hover {
    background: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 8px 20px rgba(43, 33, 28, .24);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .ngn-top { display: none; }
}

.pagination, .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.nav-links .page-numbers {
    display: grid;
    place-items: center;
    min-width: 44px; height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.ngn-404 { padding: 60px 0; text-align: center; }

@media (max-width: 900px) {
    .ngn-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        text-align: center;
    }

    .ngn-hero-photo { max-width: 190px; margin: 0 auto; }

    .ngn-hero-title { text-align: center; }

    .ngn-hero-bio { text-align: left; }
}

@media (max-width: 782px) {
    body { font-size: 16px; }

    .ngn-paper {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .ngn-header { padding: 0 20px; }

    .ngn-burger { display: flex; }

    .ngn-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        z-index: 20;
        padding: 14px 20px 20px;
        background: var(--bg);
        box-shadow: 0 10px 24px rgba(43, 33, 28, .16);
    }

    .ngn-nav.is-open { display: block; }

    .ngn-header-inner { position: relative; flex-wrap: wrap; min-height: 46px; }

    .ngn-menu { flex-direction: column; align-items: flex-start; gap: 4px; }

    .ngn-menu li + li::before { content: none; }

    .ngn-menu a { display: flex; align-items: center; gap: 11px; padding: 10px 0; font-size: 18px; }

    .ngn-menu a .ngn-icon { width: 19px; height: 19px; }

    .ngn-item { grid-template-columns: 1fr; gap: 12px; padding: 12px 12px 16px; }

    .ngn-item-thumb img { aspect-ratio: 16 / 9; }

    .ngn-item-stamp { padding: 7px 12px 8px; }

    .ngn-item-stamp b { font-size: 19px; }


    .ngn-section-title { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

.ngn-slider { margin: 40px 0; }

.ngn-slider-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(180deg, #4A3527, var(--frame));
    border-radius: 12px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08);
}

.ngn-slider-track {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #14100D;
    border-radius: 6px;
    overflow: hidden;
}

.ngn-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
}

.ngn-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.ngn-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ngn-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    background: rgba(20, 16, 13, .72);
    border: 2px solid rgba(245, 239, 226, .28);
    border-radius: 50%;
    color: #F5EFE2;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.ngn-slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.ngn-slider-arrow--prev { left: 22px; }
.ngn-slider-arrow--next { right: 22px; }

.ngn-slider-count {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 4px 12px;
    background: rgba(20, 16, 13, .72);
    border-radius: 20px;
    color: #F5EFE2;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .06em;
}

.ngn-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.ngn-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}

.ngn-slider-dot.is-active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 782px) {
    .ngn-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .ngn-slider-arrow--prev { left: 10px; }
    .ngn-slider-arrow--next { right: 10px; }
}

.ngn-demo { margin: 0 0 30px; }

.ngn-cabinet {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(43, 33, 28, .18);
}

.ngn-cabinet-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 12px;
    background: linear-gradient(180deg, #4A3527, var(--frame));
    color: #F5EFE2;
}

.ngn-cabinet-name {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
}

.ngn-cabinet-name strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
}

.ngn-cabinet-by {
    color: rgba(245, 239, 226, .55);
    font-size: 11.5px;
}

.ngn-cabinet-tools { display: flex; gap: 5px; flex: 0 0 auto; }

.ngn-cabinet-tool {
    display: grid;
    place-items: center;
    width: 26px; height: 26px;
    background: rgba(245, 239, 226, .12);
    border: 0;
    border-radius: 6px;
    color: #F5EFE2;
    cursor: pointer;
    transition: background .15s ease;
}

.ngn-cabinet-tool:hover { background: var(--accent); }

.ngn-cabinet-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #14100D;
}

.ngn-cabinet-screen iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

.ngn-demo-poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.ngn-demo-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background:
        radial-gradient(115% 85% at 50% 44%, rgba(20, 16, 13, .18), rgba(20, 16, 13, .74) 78%);
    border: 0;
    color: #F5EFE2;
    font-family: var(--font-display);
    cursor: pointer;
}

.ngn-demo-play-ring {
    display: grid;
    place-items: center;
    width: 86px; height: 86px;
    background: rgba(20, 16, 13, .42);
    border: 2px solid rgba(245, 239, 226, .92);
    border-radius: 50%;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .48), inset 0 0 22px rgba(0, 0, 0, .35);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.ngn-demo-play-ring svg { margin-left: 3px; }

.ngn-demo-play:hover .ngn-demo-play-ring,
.ngn-demo-play:focus-visible .ngn-demo-play-ring {
    background: var(--accent);
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(178, 58, 47, .5), inset 0 0 0 1px rgba(255, 255, 255, .3);
}

.ngn-demo-play:active .ngn-demo-play-ring { transform: scale(1); }

.ngn-demo-play-label {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .75);
}

.ngn-demo-play-hint {
    margin-top: -6px;
    color: rgba(245, 239, 226, .72);
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: .01em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .75);
}

.ngn-cabinet-screen.is-playing .ngn-demo-play,
.ngn-cabinet-screen.is-playing .ngn-demo-poster { display: none; }

.ngn-demo-exit {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    background: rgba(20, 16, 13, .55);
    border: 0;
    border-radius: 50%;
    color: #F5EFE2;
    cursor: pointer;
    transition: background .15s ease;
}

.ngn-demo-exit:hover { background: var(--accent); }

.ngn-cabinet-screen.is-full .ngn-demo-exit { display: grid; }

.ngn-cabinet-screen:fullscreen {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.ngn-cabinet-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--frame);
    color: rgba(245, 239, 226, .75);
    font-size: 13px;
    line-height: 1.45;
}

.ngn-cabinet-age {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 32px; height: 32px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: #F5EFE2;
    font-family: var(--font-display);
    font-size: 12.5px;
}

.ngn-cabinet-warn { min-width: 0; font-size: 12.5px; }

.ngn-freespins {
    --ngn-ribbon: #F7E2AE;

    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding: 8px 18px 8px 12px;
    overflow: hidden;
    background: linear-gradient(168deg, #F8D98F 0%, #E7BA63 42%, #C8912F 100%);
    border-radius: 7px;
    color: #2A1B0C;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .7),
        inset 0 -2px 0 rgba(122, 76, 12, .35),
        0 3px 12px rgba(0, 0, 0, .35);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.ngn-freespins:hover,
.ngn-freespins:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .75),
        inset 0 -2px 0 rgba(122, 76, 12, .35),
        0 6px 20px rgba(231, 186, 99, .45);
}

.ngn-freespins:active { transform: translateY(0); }

.ngn-freespins::after {
    content: "";
    position: absolute;
    top: -60%; bottom: -60%;
    left: -25%;
    width: 26px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    animation: ngn-shine 6s ease-in-out infinite;
}

@keyframes ngn-shine {
    0%, 70%  { left: -25%; opacity: 0; }
    74%      { opacity: .9; }
    90%, 100% { left: 120%; opacity: 0; }
}

.ngn-freespins-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px; height: 28px;
    background: rgba(42, 27, 12, .12);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: transform .18s ease;
}

.ngn-freespins:hover .ngn-freespins-icon { transform: rotate(-6deg) scale(1.06); }

.ngn-gift-spark { animation: ngn-spark 2.6s ease-in-out infinite; }
.ngn-gift-spark--b { animation-delay: 1.3s; }

@keyframes ngn-spark {
    0%, 100% { opacity: .25; }
    50%      { opacity: .8; }
}

.ngn-cabinet-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 11px 0 8px;
    background: linear-gradient(168deg, #F8D98F 0%, #E7BA63 42%, #C8912F 100%);
    border-radius: 6px;
    color: #2A1B0C;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(122, 76, 12, .35),
        0 2px 8px rgba(0, 0, 0, .28);
    transition: transform .15s ease, filter .15s ease;
}

.ngn-cabinet-cta:hover,
.ngn-cabinet-cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.ngn-cabinet-cta:active { transform: translateY(0); }

.ngn-cabinet-cta-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 17px; height: 17px;
}

.ngn-cabinet-cta-icon svg { display: block; }

.ngn-demo-gift {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    text-decoration: none;
    transform-origin: 50% 62%;
    animation: ngn-gift-wiggle 2.4s ease-in-out infinite;
}

.ngn-demo-gift-glow {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 47, .55), rgba(184, 134, 47, 0) 68%);
    animation: ngn-gift-pulse 2.4s ease-in-out infinite;
}

.ngn-demo-gift-ic {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    background: linear-gradient(158deg, #F8D98F 0%, #E7BA63 46%, #C8912F 100%);
    border: 2px solid #F5EFE2;
    border-radius: 50%;
    color: #8A2018;
    box-shadow: 0 5px 16px rgba(20, 16, 13, .45), inset 0 1px 0 rgba(255, 255, 255, .6);
    transition: filter .15s ease;
}

.ngn-demo-gift:hover { animation-play-state: paused; }
.ngn-demo-gift:hover .ngn-demo-gift-ic { filter: brightness(1.06); }

@keyframes ngn-gift-wiggle {
    0%, 58%, 100% { transform: rotate(0); }
    64% { transform: rotate(-10deg); }
    72% { transform: rotate(9deg); }
    80% { transform: rotate(-6deg); }
    88% { transform: rotate(3deg); }
}

@keyframes ngn-gift-pulse {
    0%, 54%, 100% { opacity: .3; transform: scale(1); }
    76% { opacity: .7; transform: scale(1.14); }
}

.ngn-cabinet-screen.is-full .ngn-demo-gift { display: none; }

@media (prefers-reduced-motion: reduce) {
    .ngn-demo-gift,
    .ngn-demo-gift-glow { animation: none; }
}

@media (max-width: 560px) {
    .ngn-cabinet-cta-text { display: none; }
    .ngn-cabinet-cta { padding: 0 8px; }
    .ngn-demo-gift { top: 8px; right: 8px; width: 40px; height: 40px; }
    .ngn-demo-gift-ic { width: 40px; height: 40px; }
}

@media (max-width: 700px) {
    .ngn-cabinet-note { flex-wrap: wrap; gap: 10px; }
    .ngn-freespins { width: 100%; justify-content: center; padding: 10px 16px; }
    .ngn-cabinet-warn { flex: 1 1 0; }
    .ngn-demo-play-ring { width: 68px; height: 68px; }
    .ngn-demo-play-ring svg { width: 28px; height: 28px; }
    .ngn-demo-play-label { font-size: 15px; }
    .ngn-demo-play-hint { font-size: 11.5px; }
    .ngn-cabinet-name strong { font-size: 14px; }
    .ngn-cabinet-by { font-size: 11px; }
}

.ngn-sheet {
    position: relative;
    margin: 0;
}

.ngn-sheet--page { padding: 24px 28px 28px; }

.ngn-sheet--page .ngn-hero { padding: 4px 0 6px; }
.ngn-sheet--page .ngn-feed { padding-bottom: 0; }
.home .ngn-sheet--page .ngn-feed { padding-bottom: 56px; }
.ngn-sheet--page > .ngn-title:first-child { margin-top: 0; }

@keyframes ngn-wave {
    0%   { box-shadow: var(--sheet-shadow), 0 0 0 0 rgba(178, 58, 47, .13); }
    65%  { box-shadow: var(--sheet-shadow), 0 0 0 26px rgba(178, 58, 47, 0); }
    100% { box-shadow: var(--sheet-shadow), 0 0 0 0 rgba(178, 58, 47, 0); }
}

@media (min-width: 783px) {
    .ngn-paper { animation: ngn-wave 9s ease-out infinite; }

    .ngn-review,
    .ngn-page,
    .ngn-archive,
    .ngn-authorpage,
    .ngn-404 { padding-top: 22px; }
}

.ngn-slotcard {
    position: relative;
    margin: 0;
}

.ngn-ornament-mark {
    position: absolute;
    top: -22px;
    right: -18px;
    z-index: 0;
    color: var(--frame);
    opacity: .06;
    pointer-events: none;
}

.ngn-slotcard-top {
    --cover-h: 132px;

    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 148px;
    align-items: start;
    gap: 22px;
    padding: 22px 24px 20px;
}

.ngn-slotcard-cover img {
    display: block;
    width: 100%;
    height: var(--cover-h);
    object-fit: cover;
    border: 1px solid rgba(59, 43, 33, .3);
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(43, 33, 28, .2);
}

.ngn-slotcard-main { min-width: 0; }

.ngn-slotcard-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 6px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ngn-slotcard-kicker span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--accent);
}

.ngn-slotcard-title {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.06;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.ngn-slotcard-title-text { display: inline-block; }

.ngn-slotcard-title.is-scroll {
    -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
    mask-image: linear-gradient(to right, #000 82%, transparent 100%);
}

.ngn-slotcard-title.is-scroll .ngn-slotcard-title-text {
    animation: ngn-title-scroll 15s ease-in-out infinite alternate;
}

@keyframes ngn-title-scroll {
    0%, 14% { transform: translateX(0); }
    86%, 100% { transform: translateX(var(--ngn-title-shift, 0)); }
}

.ngn-slotcard-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ngn-slotcard-features li { margin: 0; }

.ngn-slotcard-feature-icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    color: var(--accent);
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.ngn-slotcard-feature-icon img {
    display: block;
    width: 34px; height: 34px;
    object-fit: contain;
}

.ngn-slotcard-features li:hover .ngn-slotcard-feature-icon {
    background: #FDF9F1;
    border-color: rgba(59, 43, 33, .35);
    transform: translateY(-1px);
}

.ngn-slotcard-lead {
    position: relative;
    z-index: 1;
    margin: 0 24px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 15.5px;
    line-height: 1.6;
}

.ngn-slotcard > .ngn-demo {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.ngn-slotcard .ngn-cabinet {
    border-radius: 0;
    box-shadow: none;
}

.ngn-slotcard > .ngn-specs {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px 24px 18px;
    border-top: 1px solid var(--line);
}

.ngn-slotcard > .ngn-specs tr:first-child { border-top: 0; }
.ngn-slotcard > .ngn-specs tr:last-child { border-bottom: 0; }

.ngn-slotcard-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: var(--cover-h);
    padding: 12px 12px 14px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    text-align: center;
}

.ngn-slotcard-score-label {
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .16em;
}

.ngn-slotcard-score-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.ngn-slotcard-score-value em {
    color: var(--text-soft);
    font-size: 14px;
    font-style: normal;
}

.ngn-slotcard-score-bar {
    display: block;
    width: 100%;
    height: 4px;
    background: rgba(59, 43, 33, .12);
    border-radius: 2px;
    overflow: hidden;
}

.ngn-slotcard-score-bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 2px;
}

.ngn-slotcard-jump {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .15s ease;
}

.ngn-slotcard-jump:hover,
.ngn-slotcard-jump:focus-visible { color: var(--accent); }

.ngn-slotcard-jump svg { flex: 0 0 auto; }

@media (max-width: 780px) {
    .ngn-slotcard-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .ngn-slotcard-cover img { height: auto; aspect-ratio: 16 / 10; }

    .ngn-slotcard-features {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-right: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, #000 calc(100% - 32px), transparent);
        -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 32px), transparent);
    }

    .ngn-slotcard-features::-webkit-scrollbar { display: none; }
    .ngn-slotcard-features li { flex: 0 0 auto; }

    .ngn-slotcard-score {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        height: auto;
        padding: 10px 14px;
    }

    .ngn-slotcard-jump {
        order: 4;
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .ngn-slotcard-score-label { order: 2; letter-spacing: .12em; }
    .ngn-slotcard-score-value { font-size: 34px; }

    .ngn-slotcard-score-bar {
        order: 3;
        flex: 1 1 auto;
        width: auto;
        min-width: 60px;
    }

    .ngn-slotcard-lead { font-size: 15px; }
    .ngn-ornament-mark { display: none; }
}

.ngn-testcard {
    margin: 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 18px;
}

.ngn-testcard-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 18px 16px;
}

.ngn-testcard-face {
    flex: 0 0 auto;
    line-height: 0;
}

.ngn-testcard-face img {
    width: 52px; height: 52px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    object-fit: cover;
}

.ngn-testcard-who { min-width: 0; }

.ngn-crumbs {
    margin: 0 0 2px;
    color: var(--text-soft);
    font-size: 12.5px;
    line-height: 1.3;
}

.ngn-crumbs a { text-decoration: none; }
.ngn-crumbs span { margin: 0 5px; }
.ngn-crumbs span:last-child { margin: 0; color: var(--text); }

.ngn-testcard-meta {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.ngn-testcard-meta a { font-weight: 700; text-decoration: none; }
.ngn-testcard-meta time { color: var(--text-soft); font-family: var(--font-body); font-size: 12.5px; }

.ngn-testcard-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px 18px;
    margin: 0;
    padding: 18px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.ngn-testcard-numbers li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.ngn-testcard-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px; height: 44px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    color: var(--accent);
}

.ngn-testcard-body { display: flex; flex-direction: column; min-width: 0; }

.ngn-testcard-label {
    color: var(--text-soft);
    font-family: var(--font-display);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ngn-testcard-value {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.3;
    font-variant-numeric: tabular-nums;
}

.ngn-testcard-value em {
    color: var(--text-soft);
    font-style: normal;
    font-weight: 400;
    font-size: 12.5px;
}

.ngn-testcard-text {
    margin: 0;
    padding: 20px 18px 22px;
    border-top: 1px solid var(--line);
}

.ngn-testcard-text > *:first-child { margin-top: 0; }
.ngn-testcard-text > *:last-child { margin-bottom: 0; }

.ngn-testcard > .ngn-proscons,
.ngn-testcard > .ngn-faq {
    margin: 0;
    padding: 20px 18px 22px;
    border-top: 1px solid var(--line);
}

.ngn-testcard > .ngn-slider {
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.ngn-testcard .ngn-slider-frame {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.ngn-testcard > .ngn-faq h2 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 25px;
    text-transform: uppercase;
}

.ngn-proscons h2,
.ngn-testcard-title,
.ngn-testcard > .ngn-faq h2 {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ngn-testcard-title {
    margin: 0;
    padding: 18px 18px 8px;
    color: var(--accent);
    font-size: 25px;
    text-transform: uppercase;
}

.ngn-h2-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px; height: 38px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
    color: var(--accent);
}

.ngn-pros .ngn-h2-icon { color: #2E7D32; }

.ngn-testcard-verdict {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--line);
}

.ngn-testcard-verdict h2 {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 22px;
    text-transform: uppercase;
}

.ngn-testcard-verdict p {
    max-width: 62ch;
    margin: 0;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .ngn-testcard-head { gap: 12px; }
    .ngn-testcard-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ngn-testcard-verdict h2 { font-size: 20px; }
    .ngn-testcard-verdict p { padding-left: 12px; font-size: 16px; }
}

@media (max-width: 420px) {
    .ngn-testcard-numbers { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 780px) {
    .ngn-sheet { margin: 0 -20px; }

    .ngn-sheet--page { padding: 20px; }

    .home .ngn-feed { margin: 0 -20px -20px; padding: 0 20px 44px; }

    .home .ngn-sheet--page .ngn-feed { padding-bottom: 44px; }

    .home .ngn-feed::before { height: 40px; margin: 0 -20px 8px; }

    .ngn-review,
    .ngn-authorpage { padding-top: 0; }

    .ngn-slotcard-main { display: contents; }

    .ngn-slotcard-kicker { order: 1; margin: 0; }
    .ngn-slotcard-title { order: 2; margin: 0; }
    .ngn-slotcard-cover { order: 3; }
    .ngn-slotcard-features { order: 4; margin: 0; }
    .ngn-slotcard-score { order: 5; }

    .ngn-slotcard-top { padding: 18px 20px 16px; gap: 14px; }
    .ngn-slotcard-lead { margin: 0; padding: 16px 20px; }
    .ngn-slotcard > .ngn-specs { padding: 4px 20px 14px; }

    .ngn-testcard-head { padding: 4px 20px 14px; }
    .ngn-testcard-verdict { padding: 16px 20px; }
    .ngn-testcard-numbers { padding: 16px 20px; }
    .ngn-testcard-text { padding: 18px 20px 20px; }

    .ngn-testcard-title { padding: 16px 20px 8px; font-size: 22px; }
    .ngn-testcard > .ngn-slider { padding: 16px 0; }

    .ngn-testcard > .ngn-proscons,
    .ngn-testcard > .ngn-faq { padding: 18px 20px 20px; }
}

.ngn-testcard > .ngn-comments {
    margin: 0;
    padding: 20px 18px 22px;
    border-top: 1px solid var(--line);
}

.ngn-comments-title {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 4px;
    color: var(--accent);
    font-size: 25px;
    text-transform: uppercase;
}

.ngn-comments-count {
    color: var(--text-soft);
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
}

.ngn-comment-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.ngn-comment-list ol.children {
    margin: 14px 0 0 26px;
    padding-left: 22px;
    border-left: 2px solid var(--line);
    list-style: none;
}

.ngn-comment {
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.ngn-comment-list > .ngn-comment:first-child { border-top: 0; }

.children .ngn-comment { padding: 16px 0; border-top: 0; }
.children .ngn-comment + .ngn-comment { border-top: 1px solid var(--line); }

.ngn-comment-body {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gwp-comment-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    color: #F7EFDF;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 2px 6px -2px rgba(142, 44, 35, .55);
    overflow: hidden;
}

.gwp-comment-avatar--photo { background: var(--bg-soft); }

.gwp-comment-avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ngn-comment-main { flex: 1 1 auto; min-width: 0; }

.ngn-comment.is-author > .ngn-comment-body .ngn-comment-main {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: -2px;
}

.ngn-comment-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.ngn-comment-name { font-weight: 700; font-size: 15.5px; }

.ngn-comment-badge {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #F7EFDF;
    background: var(--accent);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.ngn-comment-date { color: var(--text-soft); font-size: 12.5px; }

.ngn-comment-await {
    display: inline-block;
    margin: 0 0 8px;
    padding: 5px 11px;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--text-soft);
    font-size: 13px;
    font-style: italic;
}

.ngn-comment-text { color: var(--text); }
.ngn-comment-text > *:first-child { margin-top: 0; }
.ngn-comment-text > *:last-child { margin-bottom: 0; }
.ngn-comment-text p { margin: 0 0 10px; }

.ngn-comment-actions { margin-top: 8px; font-size: 13px; }

.ngn-comment-actions a {
    color: var(--text-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

.ngn-comment-actions a:hover { color: var(--accent); border-color: var(--accent); }

.ngn-comments-empty,
.ngn-comments-closed {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 15px;
}

.ngn-comments .comment-respond {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.ngn-comment-reply-title {
    margin: 0 0 16px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-size: 19px;
    color: var(--text);
}

.ngn-comment-reply-title small { margin-left: 10px; font-size: 13px; font-weight: 400; }
.ngn-comment-reply-title small a { color: var(--accent-dark); }

.ngn-comments .comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    margin: 0;
}

.ngn-comments .comment-form > * { flex: 1 1 100%; margin: 0 0 14px; }

.ngn-comments .comment-form-author,
.ngn-comments .comment-form-email { flex: 1 1 calc(50% - 8px); }

.ngn-comments label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
}

.ngn-comments input[type="text"],
.ngn-comments input[type="email"],
.ngn-comments textarea {
    width: 100%;
    font: inherit;
    color: var(--text);
    background: #FBF6EC;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 11px 13px;
    box-shadow: inset 0 1px 2px rgba(43, 33, 28, .08);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ngn-comments textarea { min-height: 120px; resize: vertical; line-height: 1.55; }

.ngn-comments input:focus,
.ngn-comments textarea:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 58, 47, .16);
}

.ngn-comments .comment-form-privacy {
    margin: -2px 0 16px;
    font-size: 12.5px;
    color: var(--text-soft);
}

.ngn-comments .comment-form-privacy a { color: var(--accent-dark); }

.ngn-comments .form-submit { margin: 0; }

.ngn-comment-submit {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 15px;
    color: #F7EFDF;
    background: var(--accent);
    border: 0;
    border-radius: 10px;
    padding: 12px 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px -4px rgba(142, 44, 35, .65);
    transition: background .15s ease;
}

.ngn-comment-submit:hover { background: var(--accent-dark); }

@media (max-width: 780px) {
    .ngn-testcard > .ngn-comments { padding: 18px 20px 20px; }
    .ngn-comments-title { font-size: 22px; }
    .ngn-comment-list ol.children { margin-left: 14px; padding-left: 16px; }
    .ngn-comments .comment-form-author,
    .ngn-comments .comment-form-email { flex: 1 1 100%; }
}

.ngn-filter { margin: 14px 0 22px; }

.ngn-filter-row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
}

.ngn-filter-field { position: relative; flex: 1 1 0; min-width: 0; }

.ngn-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 42px;
    padding: 5px 12px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    color: var(--text);
    cursor: pointer;
    font: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ngn-filter-btn:hover { border-color: #C7B48F; }

.ngn-filter-field.is-open .ngn-filter-btn {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 58, 47, .14);
    background: #FBF6EC;
}

.ngn-filter-btn-ico {
    flex: 0 0 auto;
    display: inline-flex;
    color: var(--accent);
}

.ngn-filter-btn-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.18;
    min-width: 0;
}

.ngn-filter-btn-key {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.ngn-filter-btn-val {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}

.ngn-filter-chev {
    margin-left: auto;
    color: var(--text-soft);
    flex: 0 0 auto;
    transition: transform .18s ease, color .15s ease;
}

.ngn-filter-field.is-open .ngn-filter-chev { transform: rotate(180deg); color: var(--accent); }

.ngn-filter-badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--frame);
    color: #F3E9D6;
    border-radius: 10px;
    font-family: "Oswald", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
}

.ngn-filter-badge[hidden] { display: none; }

.ngn-filter-pop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    min-width: 100%;
    padding: 6px;
    background: #FBF6EC;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 34px -18px rgba(43, 33, 28, .55), 0 2px 6px -3px rgba(43, 33, 28, .3);
    display: none;
}

.ngn-filter-field.is-open .ngn-filter-pop { display: block; }

.ngn-filter-scroll {
    max-height: min(330px, 60vh);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 6px;
}

.ngn-filter-scroll,
.ngn-filter-fnlist {
    scrollbar-width: thin;
    scrollbar-color: #C7B48F transparent;
}

.ngn-filter-scroll::-webkit-scrollbar,
.ngn-filter-fnlist::-webkit-scrollbar { width: 8px; }

.ngn-filter-scroll::-webkit-scrollbar-thumb,
.ngn-filter-fnlist::-webkit-scrollbar-thumb {
    background: #C7B48F;
    border-radius: 4px;
    border: 2px solid #FBF6EC;
}

.ngn-filter-scroll::-webkit-scrollbar-track,
.ngn-filter-fnlist::-webkit-scrollbar-track { background: transparent; }

.ngn-filter-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 9px 12px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    font-size: 14.5px;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    transition: background .12s ease, color .12s ease;
}

.ngn-filter-opt-count {
    margin-left: auto;
    color: var(--text-soft);
    opacity: .75;
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: .04em;
    font-variant-numeric: tabular-nums;
}

.ngn-filter-opt.is-active .ngn-filter-opt-count {
    color: var(--text-soft);
    font-weight: 400;
}

.ngn-filter-opt:hover { background: var(--bg-soft); }

.ngn-filter-opt.is-active {
    color: var(--accent-dark);
    font-weight: 600;
    background: rgba(184, 134, 47, .13);
}

.ngn-filter-opt.is-active:hover { background: rgba(184, 134, 47, .19); }

.ngn-filter-pop--fn {
    width: 420px;
    max-width: min(420px, calc(100vw - 40px));
    padding: 10px 0 10px 10px;
    left: auto;
    right: 0;
}

.ngn-filter-fnlist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
    max-height: 322px;
    overflow-y: auto;
    padding-right: 10px;
    overscroll-behavior: contain;
}

.ngn-fn-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .12s ease;
}

.ngn-fn-check:hover { background: var(--bg-soft); }

.ngn-fn-check input { position: absolute; opacity: 0; width: 0; height: 0; }

.ngn-fn-box {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    border: 1.5px solid #C7B48F;
    border-radius: 5px;
    background: #fff;
    position: relative;
    transition: background .12s ease, border-color .12s ease;
}

.ngn-fn-check input:checked + .ngn-fn-box {
    background: var(--accent);
    border-color: var(--accent);
}

.ngn-fn-box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2.5px;
    width: 5px;
    height: 9px;
    border: solid #F7EFDF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.ngn-fn-check input:checked + .ngn-fn-box::after { opacity: 1; }

.ngn-fn-check input:focus-visible + .ngn-fn-box {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.ngn-fn-ico { flex: 0 0 auto; color: var(--accent); display: inline-flex; }
.ngn-fn-ico img { width: 24px; height: 24px; }

.ngn-fn-name { font-size: 14px; color: var(--text); }
.ngn-fn-check input:checked ~ .ngn-fn-name { color: var(--accent-dark); font-weight: 600; }

.ngn-filter-fnfoot {
    display: flex;
    justify-content: flex-end;
    margin: 6px 10px 0 0;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.ngn-filter-fnclear {
    background: transparent;
    border: 0;
    color: var(--text-soft);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .12s ease;
}

.ngn-filter-fnclear:hover { color: var(--accent); }

.ngn-filter-search {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    min-height: 42px;
    margin-left: auto;
}

.ngn-search-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 46px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    overflow: hidden;
    transition: width .26s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ngn-filter-search:hover .ngn-search-panel { border-color: #C7B48F; }

.ngn-filter-search.is-open .ngn-search-panel {
    background: #FBF6EC;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 58, 47, .14), 0 14px 28px -18px rgba(59, 43, 33, .4);
}

.ngn-search-toggle {
    flex: 0 0 44px;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--accent);
    cursor: pointer;
}

.ngn-filter-search.is-open .ngn-search-toggle { cursor: default; }

.ngn-search-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.ngn-filter-search.is-open .ngn-search-input { opacity: 1; visibility: visible; }

.ngn-search-input:focus { outline: none; }

.ngn-search-input::placeholder { color: var(--text-soft); opacity: .5; font-weight: 400; }

.ngn-search-input::-webkit-search-cancel-button,
.ngn-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.ngn-search-close {
    flex: 0 0 38px;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .12s ease;
}

.ngn-search-close:hover { color: var(--accent); }

.ngn-search-close[hidden] { display: none; }

.ngn-filter-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    background: #F6EEDF;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.ngn-filter-result { color: var(--text); font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1; letter-spacing: .01em; white-space: nowrap; font-variant-numeric: tabular-nums; }

.ngn-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin: -2px -4px -2px 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .12s ease, background .12s ease;
}

.ngn-filter-reset:hover { color: var(--accent); background: rgba(178, 58, 47, .12); }

.ngn-filter-reset[hidden] { display: none; }

.ngn-item.is-filtered { display: none; }

.ngn-filter-empty {
    margin: 8px 0 0;
    padding: 34px 20px;
    text-align: center;
    color: var(--text-soft);
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    .ngn-filter-btn,
    .ngn-filter-chev,
    .ngn-filter-opt,
    .ngn-fn-check,
    .ngn-fn-box,
    .ngn-filter-fnclear,
    .ngn-filter-reset,
    .ngn-search-panel,
    .ngn-search-input,
    .ngn-search-close { transition: none; }
}

@media (max-width: 780px) {
    .ngn-filter-row { gap: 10px; }
    .ngn-filter-field { flex: 1 1 44%; }
    .ngn-filter-field--fn { flex: 1 1 auto; }
    .ngn-filter-meta { margin-left: 0; }
    .ngn-filter-pop--fn { width: 100%; max-width: calc(100vw - 40px); }
    .ngn-filter-fnlist { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ngn-filter-field { flex: 1 1 100%; }
    .ngn-filter-field--fn { flex: 1 1 auto; }
    .ngn-filter-pop { right: 0; }
}

