:root {
    --bk: #09090b;
    --bk2: #111113;
    --bk3: #1a1a1e;
    --bk4: #141416;
    --bkb: #252528;
    --g: #c9a84c;
    --gl: #e2c47a;
    --gb: #f0d080;
    --gd: #8a6f30;
    --gg: rgba(201, 168, 76, .12);
    --w: #fff;
    --wd: #c8c8cc;
    --wm: #7a7a82;
    --ok: #25d366;
    --fd: 'Cormorant Garamond', serif;
    --fb: 'Barlow', sans-serif;
    --fc: 'Barlow Condensed', sans-serif;
    --r: 6px;
    --rl: 12px;
    --tr: .26s cubic-bezier(.4, 0, .2, 1)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    background: var(--bk);
    color: var(--w);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bk2)
}

::-webkit-scrollbar-thumb {
    background: var(--gd);
    border-radius: 3px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.gold {
    color: var(--g)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: var(--r);
    font-weight: 600;
    font-size: .86rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: var(--tr);
    white-space: nowrap
}

.bg {
    background: linear-gradient(135deg, var(--g), var(--gl));
    color: var(--bk);
    border-color: var(--g)
}

.bg:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(201, 168, 76, .4)
}

.bo {
    background: transparent;
    color: var(--g);
    border-color: var(--g)
}

.bo:hover {
    background: var(--gg)
}

.bwa {
    background: var(--ok);
    color: #fff;
    border-color: var(--ok)
}

.bwa:hover {
    background: #1da851
}

.topbar {
    background: var(--g);
    padding: 7px 0;
    font-size: .74rem;
    font-weight: 600;
    color: var(--bk)
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.tbr {
    display: flex;
    gap: 14px;
    align-items: center
}

.tbr a {
    color: var(--bk);
    opacity: .75
}

.tbr a:hover {
    opacity: 1
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, .97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--bkb);
    height: 70px;
    transition: box-shadow .3s
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .9)
}

.navbar .container {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 22px
}

.nlogo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.nlogo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 4px
}

.nln {
    font-family: var(--fd);
    font-size: 1.22rem;
    color: var(--g);
    font-weight: 700;
    line-height: 1;
    display: block
}

.nls {
    font-size: .55rem;
    letter-spacing: .2em;
    color: var(--wm);
    text-transform: uppercase;
    display: block
}

.nlinks {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1
}

.nl {
    padding: 7px 12px;
    border-radius: var(--r);
    font-size: .81rem;
    font-weight: 500;
    color: var(--wd);
    transition: var(--tr);
    position: relative;
    white-space: nowrap
}

.nl:hover,
.nl.act {
    color: var(--g)
}

.nl::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--g);
    transform: scaleX(0);
    transition: var(--tr)
}

.nl:hover::after,
.nl.act::after {
    transform: scaleX(1)
}

.nacts {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto
}

.ham {
    display: none;
    background: none;
    border: 1px solid var(--bkb);
    color: var(--wd);
    padding: 7px 9px;
    border-radius: var(--r);
    font-size: .95rem;
    cursor: pointer
}

.mobn {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(9, 9, 11, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 68px 26px 40px;
    gap: 3px;
    overflow-y: auto
}

.mobn.open {
    display: flex
}

.mclose {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: 1px solid var(--bkb);
    color: var(--wd);
    padding: 6px 9px;
    border-radius: var(--r);
    font-size: .95rem;
    cursor: pointer
}

.mobn a {
    padding: 13px 0;
    border-bottom: 1px solid var(--bkb);
    color: var(--wd);
    font-size: 1rem;
    font-weight: 500;
    transition: color .2s;
    display: block
}

.mobn a:hover {
    color: var(--g)
}

/* Article layout */
.art-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    padding: 52px 0 80px;
    align-items: start
}

/* Article header */
.art-header {
    margin-bottom: 36px
}

.art-crumb {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    color: var(--wm);
    margin-bottom: 18px;
    flex-wrap: wrap
}

.art-crumb a {
    color: var(--g);
    transition: opacity .2s
}

.art-crumb a:hover {
    opacity: .7
}

.art-crumb i {
    font-size: .6rem
}

.art-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--g);
    color: var(--bk);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 14px
}

.art-h1 {
    font-family: var(--fd);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--w)
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid var(--bkb);
    border-bottom: 1px solid var(--bkb);
    margin-bottom: 28px
}

.am {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--wm)
}

.am i {
    color: var(--g);
    font-size: .72rem
}

.art-hero {
    background: var(--bk3);
    border: 1px solid var(--bkb);
    border-radius: var(--rl);
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--g);
    opacity: .6;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden
}

.art-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, .07), transparent)
}

.art-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1
}

/* Article body */
.art-body h2 {
    font-family: var(--fd);
    font-size: 1.7rem;
    font-weight: 700;
    margin: 32px 0 13px;
    color: var(--w);
    line-height: 1.2
}

.art-body h3 {
    font-family: var(--fd);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--gl);
    line-height: 1.25
}

.art-body p {
    color: var(--wd);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 16px
}

.art-body strong {
    color: var(--w)
}

.art-body ul,
.art-body ol {
    color: var(--wd);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 20px
}

.art-body ul li {
    list-style: disc;
    margin-bottom: 5px
}

.art-body ol li {
    list-style: decimal;
    margin-bottom: 5px
}

.art-body a {
    color: var(--g);
    text-decoration: underline;
    text-underline-offset: 3px
}

.art-body a.btn {
    text-decoration: none;
}

.art-body a[href*="wa.me"],
.art-body a[href*="whatsapp"],
.art-body a.pc-cta {
    color: #fff;
    text-decoration: none;
}

.art-body a[href*="wa.me"]:hover,
.art-body a[href*="whatsapp"]:hover,
.art-body a.pc-cta:hover {
    color: #fff;
    text-decoration: none;
}

/* Product inline card */
.prod-card {
    background: var(--bk4);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: var(--rl);
    padding: 22px;
    margin: 24px 0;
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.pci {
    width: 72px;
    height: 72px;
    border-radius: var(--r);
    background: var(--bk3);
    border: 1px solid var(--bkb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
    font-size: 2rem;
    flex-shrink: 0
}

.pci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block
}

.pc-body {
    flex: 1
}

.pc-cat {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 3px
}

.pc-name {
    font-family: var(--fd);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px
}

.pc-desc {
    font-size: .8rem;
    color: var(--wm);
    line-height: 1.55;
    margin-bottom: 11px
}

.pc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 11px
}

.ps {
    background: var(--gg);
    border: 1px solid rgba(201, 168, 76, .15);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: .65rem;
    color: var(--g)
}

.pc-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ok);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--r);
    font-size: .78rem;
    font-weight: 700;
    transition: background .2s
}

.pc-cta:hover {
    background: #1da851;
    text-decoration: none
}

/* Alert/tip box */
.tip {
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .22);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 20px 0
}

.tip i {
    color: var(--g);
    flex-shrink: 0;
    margin-top: 2px
}

.tip p {
    margin: 0;
    font-size: .86rem;
    color: var(--wd)
}

.warn {
    background: rgba(224, 82, 82, .07);
    border-color: rgba(224, 82, 82, .22)
}

.warn i {
    color: #e05252
}

/* Table */
.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    margin: 20px 0
}

.comp-table th {
    background: var(--bk3);
    color: var(--g);
    font-family: var(--fc);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 10px 13px;
    text-align: left;
    border-bottom: 2px solid var(--bkb)
}

.comp-table td {
    padding: 10px 13px;
    border-bottom: 1px solid var(--bkb);
    color: var(--wd);
    vertical-align: top
}

.comp-table tr:hover td {
    background: rgba(201, 168, 76, .03)
}

.best-pick {
    color: var(--g);
    font-weight: 700
}

/* Tags */
.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bkb)
}

.atag {
    background: var(--gg);
    border: 1px solid rgba(201, 168, 76, .16);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .7rem;
    color: var(--g);
    font-weight: 600
}

/* CTA band */
.art-cta {
    background: linear-gradient(135deg, rgba(37, 211, 102, .08), rgba(37, 211, 102, .03));
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: var(--rl);
    padding: 28px;
    text-align: center;
    margin: 32px 0
}

.art-cta h3 {
    font-family: var(--fd);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ok);
    margin-bottom: 7px
}

.art-cta p {
    font-size: .84rem;
    color: var(--wm);
    margin-bottom: 16px;
    line-height: 1.6
}

.art-cta-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 84px
}

.scard {
    background: var(--bk4);
    border: 1px solid var(--bkb);
    border-radius: var(--rl);
    padding: 18px
}

.scard h3 {
    font-family: var(--fc);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 12px
}

.toc-item {
    display: flex;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--bkb);
    font-size: .8rem;
    color: var(--wd);
    transition: color .2s;
    cursor: pointer
}

.toc-item:last-child {
    border-bottom: none
}

.toc-item:hover {
    color: var(--g)
}

.toc-num {
    font-weight: 700;
    color: var(--g);
    min-width: 18px;
    font-size: .75rem
}

.s-wacard {
    background: linear-gradient(135deg, rgba(37, 211, 102, .1), rgba(37, 211, 102, .04));
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: var(--rl);
    padding: 18px;
    text-align: center
}

.s-wacard h3 {
    color: var(--ok);
    margin-bottom: 7px
}

.s-wacard p {
    font-size: .77rem;
    color: var(--wm);
    margin-bottom: 12px;
    line-height: 1.55
}

.s-wacard a {
    display: block;
    background: var(--ok);
    color: #fff;
    padding: 9px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .82rem;
    transition: background .2s
}

.s-wacard a:hover {
    background: #1da851;
    text-decoration: none
}

.slink {
    display: flex;
    gap: 9px;
    padding: 9px 0;
    border-bottom: 1px solid var(--bkb);
    color: var(--wd);
    font-size: .79rem;
    transition: color .2s;
    line-height: 1.4
}

.slink:last-child {
    border-bottom: none
}

.slink:hover {
    color: var(--g)
}

.slink-num {
    font-family: var(--fd);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--g);
    opacity: .35;
    min-width: 22px;
    line-height: 1
}

/* Progress bar */
.prog-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--g), var(--gb));
    z-index: 9999;
    transition: width .1s linear;
    width: 0
}

/* Floating */
.wafloat {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 8000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ok);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .5);
    animation: waf 2.2s ease infinite;
    transition: transform .2s;
    text-decoration: none
}

.wafloat:hover {
    transform: scale(1.08)
}

@keyframes waf {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(37, 211, 102, .5)
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .75)
    }
}

.btop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 8000;
    width: 40px;
    height: 40px;
    border-radius: var(--r);
    background: var(--g);
    color: var(--bk);
    border: none;
    font-size: .92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--tr)
}

.btop.show {
    opacity: 1;
    pointer-events: all
}

.btop:hover {
    background: var(--gl)
}

/* Footer */
.footer {
    background: var(--bk2);
    border-top: 1px solid var(--bkb);
    padding: 44px 0 0
}

.fgrd {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.fbrand p {
    font-size: .81rem;
    color: var(--wm);
    line-height: 1.7;
    margin: 13px 0 16px;
    max-width: 265px
}

.fsoc {
    display: flex;
    gap: 7px
}

.fsb {
    width: 32px;
    height: 32px;
    border-radius: var(--r);
    background: var(--bk3);
    border: 1px solid var(--bkb);
    color: var(--wm);
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.fsb:hover {
    background: var(--gg);
    border-color: var(--g);
    color: var(--g)
}

.fcol h4 {
    font-family: var(--fc);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 13px
}

.fcol ul li {
    margin-bottom: 8px
}

.fcol ul a {
    font-size: .81rem;
    color: var(--wm);
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px
}

.fcol ul a:hover {
    color: var(--g)
}

.fcol ul a i {
    color: var(--g);
    width: 13px;
    font-size: .78rem
}

.fbot {
    border-top: 1px solid var(--bkb);
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.fbot p {
    font-size: .73rem;
    color: var(--wm)
}

.fpay {
    display: flex;
    gap: 6px
}

.fp {
    background: var(--bk3);
    border: 1px solid var(--bkb);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: .64rem;
    font-weight: 700;
    color: var(--wm)
}

@media(max-width:960px) {
    .art-layout {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: static
    }
}

@media(max-width:860px) {
    .nlinks {
        display: none
    }

    .ham {
        display: flex
    }

    .fgrd {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .fgrd {
        grid-template-columns: 1fr
    }

    .prod-card {
        flex-direction: column
    }
}
