:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --off: #f2f0eb;
  --g100: #e8e6e1;
  --g200: #c8c5be;
  --g400: #8a877f;
  --g600: #4a4843;
  --bl: 1px solid #1a1a1a;
  --bll: 1px solid #e0ddd7;
  --fd: 'Playfair Display', Georgia, serif;
  --fu: 'Syne', sans-serif;
  --fm: 'DM Mono', monospace;
  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: var(--fu); font-size: 15px; line-height: 1.6; background: var(--white); color: var(--black); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--black); color: var(--white); width: 100%; }
.hdr-top { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 44px; border-bottom: 1px solid #1e1e1e; }
.eco-links { display: flex; align-items: center; gap: 1.25rem; font-family: var(--fm); font-size: 11px; letter-spacing: 0.08em; color: var(--g400); }
.eco-links a { color: var(--g400); text-decoration: none; transition: color var(--ease); }
.eco-links a:hover { color: var(--white); }
.eco-sep { width: 1px; height: 11px; background: #2e2e2e; }
.eco-cur { color: var(--white) !important; font-weight: 500; }
.hdr-acts { display: flex; align-items: center; gap: 0.75rem; }
.btn-art { font-family: var(--fm); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid #3a3a3a; background: transparent; color: #888; cursor: pointer; transition: all var(--ease); }
.btn-art:hover { border-color: var(--white); color: var(--white); }
.btn-login { font-family: var(--fm); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--white); background: var(--white); color: var(--black); cursor: pointer; transition: all var(--ease); text-decoration: none; display: inline-block; }
.btn-login:hover { background: transparent; color: var(--white); }
.hdr-main { display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 58px; }
.wordmark { font-family: var(--fd); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); cursor: pointer; user-select: none; white-space: nowrap; text-decoration: none; display: inline-block; }
.wordmark em { font-style: italic; font-weight: 400; color: #444; font-size: 18px; margin-left: 4px; }
.hdr-right { display: flex; align-items: center; gap: 1rem; }
.hdr-search { display: flex; align-items: center; gap: 8px; background: #111; border: 1px solid #2a2a2a; padding: 8px 14px; width: 230px; }
.hdr-search input { background: none; border: none; color: var(--white); font-family: var(--fm); font-size: 12px; outline: none; width: 100%; }
.hdr-search input::placeholder { color: #3a3a3a; }
.srch-icon { color: #3a3a3a; font-size: 14px; }
.mob-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.mob-btn span { display: block; width: 22px; height: 1.5px; background: currentColor; }
.cat-nav { background: var(--black); border-bottom: 1px solid #1a1a1a; padding: 0 2rem; display: flex; align-items: center; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; width: 100%; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-item { font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); padding: 13px 18px; cursor: pointer; border-bottom: 2px solid transparent; transition: all var(--ease); white-space: nowrap; user-select: none; text-decoration: none; display: inline-block; }
.cat-item:hover { color: var(--white); }
.cat-item.active { color: var(--white); border-bottom-color: var(--white); }
.mob-nav { display: none; background: #0d0d0d; border-top: 1px solid #1a1a1a; padding: 0.5rem 2rem 1.5rem; flex-direction: column; }
.mob-nav.open { display: flex; }
.mob-nav-item { font-family: var(--fm); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); padding: 12px 0; border-bottom: 1px solid #1a1a1a; cursor: pointer; transition: color var(--ease); text-decoration: none; display: block; }
.mob-nav-item:hover, .mob-nav-item.active { color: var(--white); }

/* TICKER */
.ticker { background: var(--off); border-bottom: var(--bll); overflow: hidden; width: 100%; height: 34px; display: flex; align-items: center; }
.tick-track { display: flex; gap: 3rem; animation: tick 40s linear infinite; white-space: nowrap; }
.tick-item { font-family: var(--fm); font-size: 11px; letter-spacing: 0.06em; color: var(--g600); display: flex; align-items: center; gap: 8px; }
.tick-item::before { content: ''; width: 3px; height: 3px; background: var(--g400); border-radius: 50%; flex-shrink: 0; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SVG PLACEHOLDERS */
.iph { width: 100%; height: 100%; display: block; overflow: hidden; background: var(--black); }
.iph svg { width: 100%; height: 100%; display: block; }

/* HERO */
.hero { display: grid; grid-template-columns: 3fr 2fr; border-bottom: var(--bll); width: 100%; }
.hero-feat { border-right: var(--bll); cursor: pointer; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.hero-img { position: relative; height: 300px; overflow: hidden; }
.hero-img .iph { height: 100%; }
.hero-veil { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.14); transition: background 0.4s; }
.hero-feat:hover .hero-veil { background: rgba(10, 10, 10, 0.02); }
.hero-body { padding: 1.75rem 2.25rem 2.25rem; }
.hero-body::before { content: 'Featured'; font-family: var(--fm); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--g400); display: block; margin-bottom: 0.8rem; }
.hero-ttl { font-family: var(--fd); font-size: clamp(22px, 2.6vw, 36px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 0.8rem; }
.hero-ttl em { font-style: italic; font-weight: 400; color: var(--g600); display: block; font-size: 0.88em; }
.hero-exc { font-size: 13px; line-height: 1.75; color: var(--g600); margin-bottom: 1.2rem; }
.ameta { display: flex; align-items: center; gap: 0.6rem; font-family: var(--fm); font-size: 11px; color: var(--g400); letter-spacing: 0.04em; flex-wrap: wrap; }
.mdot { width: 3px; height: 3px; background: var(--g200); border-radius: 50%; flex-shrink: 0; }
.cat-tag { font-family: var(--fm); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); border: 1px solid var(--black); display: inline-block; padding: 3px 9px; }
.hero-side { display: flex; flex-direction: column; overflow: hidden; }
.side-item { display: grid; grid-template-columns: 96px 1fr; border-bottom: var(--bll); cursor: pointer; transition: background var(--ease); text-decoration: none; color: inherit; }
.side-item:last-child { border-bottom: none; }
.side-item:hover { background: var(--off); }
.side-img { width: 96px; overflow: hidden; flex-shrink: 0; }
.side-img .iph { min-height: 96px; }
.side-body { padding: 0.9rem 1rem; display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; overflow: hidden; }
.side-ttl { font-family: var(--fd); font-size: 13px; font-weight: 600; line-height: 1.3; }

/* AD UNITS */
.ad-label { font-family: var(--fm); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g400); padding: 1px 0; display: inline-block; margin-bottom: 0.4rem; }

/* LEADERBOARD */
.ad-leaderboard { background: var(--white); border-bottom: var(--bll); border-top: var(--bll); padding: 0; display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; width: 100%; }
.ad-leaderboard::-webkit-scrollbar { display: none; }
.ad-leaderboard-label { font-family: var(--fm); font-size: 9px; color: var(--g400); letter-spacing: 0.1em; text-transform: uppercase; padding: 0 1.25rem; display: flex; align-items: center; flex-shrink: 0; border-right: var(--bll); white-space: nowrap; }
.ad-unit { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.75rem; border-right: var(--bll); cursor: pointer; transition: background var(--ease); flex-shrink: 0; text-decoration: none; color: inherit; }
.ad-unit:last-child { border-right: none; }
.ad-unit:hover { background: var(--off); }
.ad-unit-visual { width: 52px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ad-unit-visual svg { width: 100%; height: 100%; display: block; }
.au-gold .ad-unit-visual { background: #0f0900; }
.au-shop .ad-unit-visual { background: #020f04; }
.au-forum .ad-unit-visual { background: #06030f; }
.au-fory .ad-unit-visual { background: #080808; }
.ad-unit-text {}
.ad-unit-eyebrow { font-family: var(--fm); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; }
.au-gold .ad-unit-eyebrow { color: #b8972a; }
.au-shop .ad-unit-eyebrow { color: #4a9e5a; }
.au-forum .ad-unit-eyebrow { color: #7755bb; }
.au-fory .ad-unit-eyebrow { color: #888; }
.ad-unit-headline { font-family: var(--fu); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 2px; }
.ad-unit-sub { font-family: var(--fm); font-size: 11px; color: var(--g600); line-height: 1.4; }
.ad-unit-url { font-family: var(--fm); font-size: 10px; letter-spacing: 0.02em; margin-top: 4px; display: block; }
.au-gold .ad-unit-url { color: #8a6a00; }
.au-shop .ad-unit-url { color: #1a6b3c; }
.au-forum .ad-unit-url { color: #5e35b1; }
.au-fory .ad-unit-url { color: #555; }

/* STICKY SIDEBAR WRAP */
.ad-sticky-wrap { position: sticky; top: 1.5rem; }

/* SIDEBAR DISPLAY ADS (300×250 style) */
.sbar-gad { background: var(--white); border: 1px solid var(--g100); margin-bottom: 0.85rem; cursor: pointer; transition: box-shadow var(--ease), border-color var(--ease); text-decoration: none; display: block; color: inherit; overflow: hidden; }
.sbar-gad:hover { border-color: var(--g200); box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.sbar-gad-visual { width: 100%; height: 128px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.sbar-gad-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.sbar-gad-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sbar-gad-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%); z-index: 1; pointer-events: none; }
.sg-gold .sbar-gad-visual { background: #0f0900; }
.sg-shop .sbar-gad-visual { background: #020f04; }
.sg-forum .sbar-gad-visual { background: #06030f; }
.sg-fory .sbar-gad-visual { background: #080808; }
.sbar-gad-brand { position: relative; z-index: 2; font-family: var(--fm); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.55rem 0.75rem; }
.sg-gold .sbar-gad-brand { color: #b8972a; }
.sg-shop .sbar-gad-brand { color: #4a9e5a; }
.sg-forum .sbar-gad-brand { color: #7755bb; }
.sg-fory .sbar-gad-brand { color: #888; }
.sbar-gad-body { padding: 0.8rem 0.85rem 0.9rem; }
.sbar-gad-headline { font-family: var(--fu); font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 0.35rem; }
.sbar-gad-desc { font-family: var(--fm); font-size: 11px; color: var(--g600); line-height: 1.5; margin-bottom: 0.7rem; }
.sbar-gad-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.sbar-gad-cta { font-family: var(--fm); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; flex-shrink: 0; }
.sg-gold .sbar-gad-cta { background: #b8972a; color: #fff; }
.sg-shop .sbar-gad-cta { background: #2a6a3a; color: #fff; }
.sg-forum .sbar-gad-cta { background: #5e35b1; color: #fff; }
.sg-fory .sbar-gad-cta { background: var(--black); color: #fff; }
.sbar-gad-url { font-family: var(--fm); font-size: 9px; letter-spacing: 0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sg-gold .sbar-gad-url { color: #8a6a00; }
.sg-shop .sbar-gad-url { color: #1a6b3c; }
.sg-forum .sbar-gad-url { color: #5e35b1; }
.sg-fory .sbar-gad-url { color: #555; }

.sbar-bb { background: #050508; border: 1px solid #0e0e14; padding: 0.85rem; margin-bottom: 0.75rem; }
.sbar-bb-lbl { font-family: var(--fm); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: #252528; margin-bottom: 0.35rem; }
.sbar-bb-ttl { font-family: var(--fd); font-size: 12px; font-weight: 600; color: #1e1e22; line-height: 1.3; margin-bottom: 0.3rem; }
.sbar-bb-sub { font-family: var(--fm); font-size: 10px; color: #151518; line-height: 1.5; font-style: italic; }

/* INLINE ARTICLE ADS (native content style) */
.iad-g { border: 1px solid var(--g100); background: var(--white); margin: 2.5rem 0; display: flex; align-items: stretch; overflow: hidden; transition: box-shadow var(--ease); }
.iad-g:hover { box-shadow: 0 3px 14px rgba(0,0,0,0.07); }
.iad-g-visual { width: 110px; flex-shrink: 0; position: relative; overflow: hidden; }
.iad-g-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.iad-g-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-gold .iad-g-visual { background: #0f0900; }
.ig-shop .iad-g-visual { background: #020f04; }
.ig-forum .iad-g-visual { background: #06030f; }
.ig-fory .iad-g-visual { background: #080808; }
.iad-g-body { flex: 1; min-width: 0; padding: 1rem 1.1rem; display: flex; flex-direction: column; justify-content: center; }
.iad-g-sponsor { font-family: var(--fm); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.3rem; display: block; }
.ig-gold .iad-g-sponsor { color: #b8972a; }
.ig-shop .iad-g-sponsor { color: #4a9e5a; }
.ig-forum .iad-g-sponsor { color: #7755bb; }
.ig-fory .iad-g-sponsor { color: #888; }
.iad-g-headline { font-family: var(--fu); font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; line-height: 1.25; }
.iad-g-desc { font-family: var(--fm); font-size: 11px; color: var(--g600); line-height: 1.5; margin-bottom: 0.65rem; }
.iad-g-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.iad-g-cta { font-family: var(--fm); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px; cursor: pointer; transition: opacity var(--ease); text-decoration: none; display: inline-block; flex-shrink: 0; }
.ig-gold .iad-g-cta { background: #b8972a; color: #fff; }
.ig-shop .iad-g-cta { background: #2a6a3a; color: #fff; }
.ig-forum .iad-g-cta { background: #5e35b1; color: #fff; }
.ig-fory .iad-g-cta { background: var(--black); color: #fff; }
.iad-g-cta:hover { opacity: 0.85; }
.iad-g-url { font-family: var(--fm); font-size: 10px; }
.ig-gold .iad-g-url { color: #8a6a00; }
.ig-shop .iad-g-url { color: #1a6b3c; }
.ig-forum .iad-g-url { color: #5e35b1; }
.ig-fory .iad-g-url { color: #555; }

/* SECTIONS */
.sec-hdr { display: flex; align-items: baseline; padding: 1.5rem 2rem 1rem; border-bottom: var(--bll); width: 100%; min-width: 0; }
.sec-ttl { font-family: var(--fd); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; }
.sec-line { flex: 1; height: 1px; background: var(--g100); margin: 0 1.25rem; min-width: 0; }
.sec-lnk { font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); cursor: pointer; transition: color var(--ease); white-space: nowrap; flex-shrink: 0; background: none; border: none; text-decoration: none; display: inline-block; }
.sec-lnk:hover { color: var(--black); }

/* ARTICLE GRID */
.agrid { display: grid; border-bottom: var(--bll); width: 100%; }
.agrid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.acard { border-right: var(--bll); cursor: pointer; transition: background var(--ease); overflow: hidden; min-width: 0; text-decoration: none; color: inherit; display: block; }
.acard:last-child { border-right: none; }
.acard:hover { background: var(--off); }
.cimg { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.cimg .iph { height: 100%; }
.cbody { padding: 1rem 1.1rem; }
.cttl { font-family: var(--fd); font-size: 15px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.cexc { font-size: 13px; line-height: 1.6; color: var(--g600); margin-bottom: 0.7rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* MAIN+SIDEBAR */
.mws { display: flex; align-items: stretch; border-bottom: var(--bll); width: 100%; }
.mcol { flex: 1; min-width: 0; overflow: hidden; border-right: var(--bll); }
.sbar {
  width: 276px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: width 0.38s cubic-bezier(0.4,0,0.2,1);
  border-left: none;
}
.sbar.sbar-closed { width: 28px; }
.sbar-pull {
  position: absolute;
  left: 0; top: 2rem;
  width: 28px; height: 64px;
  background: var(--white);
  border-top: var(--bll); border-bottom: var(--bll); border-left: var(--bll);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background var(--ease);
  padding: 0; outline: none;
}
.sbar-pull:hover { background: var(--off); }
/* ── TECHNICAL SIDEBAR TAB ANIMATIONS ─────────────────────────────────────── */
@keyframes dia-flicker {
  0%, 100% { opacity: 0.35; filter: drop-shadow(0 0 0px #b8972a); }
  40%       { opacity: 0.55; filter: drop-shadow(0 0 2px rgba(184,151,42,0.5)); }
  50%       { opacity: 1;    filter: drop-shadow(0 0 6px #c9a840) drop-shadow(0 0 14px rgba(184,151,42,0.45)); }
  60%       { opacity: 0.7;  filter: drop-shadow(0 0 3px rgba(184,151,42,0.6)); }
}
@keyframes corner-tick {
  0%, 100% { opacity: 0.18; }
  50%       { opacity: 0.85; }
}
@keyframes scan-sweep {
  0%   { top: -1px; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
@keyframes tab-border-tick {
  0%, 100% { border-color: var(--g100); box-shadow: none; }
  50%       { border-color: rgba(184,151,42,0.38); box-shadow: -3px 0 14px rgba(184,151,42,0.16); }
}

/* Desktop pull tab icons */
.sbar-pull-arrow { font-size: 15px; color: var(--g400); line-height: 1; display: block; user-select: none; }
.sbar.sbar-closed .sbar-pull-arrow { display: none; }
.sbar-pull-dia { display: none; }
.sbar.sbar-closed .sbar-pull-dia { display: flex; align-items: center; justify-content: center; }

/* Scan line — on the pull tab when closed (desktop) */
.sbar.sbar-closed .sbar-pull { overflow: hidden; animation: tab-border-tick 3s ease-in-out infinite; }
.sbar.sbar-closed .sbar-pull::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,151,42,0.8), transparent);
  animation: scan-sweep 2.4s linear infinite;
}

/* Diamond targeting element */
.sbar-dia {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  width: 16px; height: 16px;
}
.sbar-dia-gem {
  font-size: 11px; color: #b8972a; line-height: 1; user-select: none;
  animation: dia-flicker 3s ease-in-out infinite;
}
/* Corner brackets via pseudo */
.sbar-dia::before, .sbar-dia::after {
  content: ''; position: absolute;
  width: 5px; height: 5px;
  border-color: #b8972a; border-style: solid;
  animation: corner-tick 3s ease-in-out infinite;
}
.sbar-dia::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.sbar-dia::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.sbar-inner { padding: 1.5rem 1.4rem 1.5rem 40px; width: 276px; }

/* SIDEBAR MOBILE PULL TAB (fixed, right edge of viewport) */
.sbar-mob-pull {
  display: none;
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  width: 26px; height: 56px;
  background: var(--white);
  border: var(--bll); border-right: none;
  cursor: pointer; z-index: 401;
  align-items: center; justify-content: center;
  padding: 0; outline: none;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1), background var(--ease);
}
.sbar-mob-pull:hover { background: var(--off); }
.sbar-mob-pull { overflow: hidden; animation: tab-border-tick 3s ease-in-out infinite; }
.sbar-mob-pull::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,151,42,0.8), transparent);
  animation: scan-sweep 2.4s linear infinite;
}
.sbar-mob-pull.sbar-open { right: min(300px, 88vw); border-right: var(--bll); border-left: none; animation: none; box-shadow: none; border-color: var(--g100); }
.sbar-mob-pull.sbar-open .sbar-dia-gem { animation: none; opacity: 0.35; filter: none; }
.sbar-mob-pull.sbar-open .sbar-dia::before,
.sbar-mob-pull.sbar-open .sbar-dia::after { animation: none; opacity: 0.18; }

/* SIDEBAR SCRIM */
.sbar-scrim {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.42); z-index: 399;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
}
.sbar-scrim.active { opacity: 1; pointer-events: all; }
.sbar-sec { margin-bottom: 1.9rem; }
.sbar-lbl { font-family: var(--fm); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--g400); margin-bottom: 0.75rem; padding-bottom: 0.55rem; border-bottom: var(--bll); }
.sbar-ad { background: var(--black); color: var(--white); padding: 1rem; margin-bottom: 0.6rem; cursor: pointer; transition: opacity var(--ease); }
.sbar-ad:hover { opacity: 0.82; }
.trend-item { display: flex; gap: 0.75rem; padding: 0.6rem 0; border-bottom: var(--bll); cursor: pointer; transition: opacity var(--ease); align-items: flex-start; text-decoration: none; color: inherit; }
.trend-item:hover { opacity: 0.6; }
.trend-item:last-child { border-bottom: none; }
.trend-n { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--g100); line-height: 1; flex-shrink: 0; width: 22px; }
.trend-ttl { font-family: var(--fd); font-size: 13px; font-weight: 600; line-height: 1.3; }

/* CATEGORY PAGE */
.cat-hero { background: var(--black); color: var(--white); padding: 2.5rem 2rem 2rem; border-bottom: 1px solid #1a1a1a; display: flex; align-items: flex-end; justify-content: space-between; width: 100%; }
.ch-lbl { font-family: var(--fm); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #444; margin-bottom: 0.5rem; }
.ch-ttl { font-family: var(--fd); font-size: clamp(34px, 5vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 0.95; }
.ch-cnt { font-family: var(--fm); font-size: 11px; color: #444; letter-spacing: 0.08em; text-align: right; line-height: 1.8; }
.crow { display: grid; grid-template-columns: 155px 1fr 125px; border-bottom: var(--bll); cursor: pointer; transition: background var(--ease); width: 100%; text-decoration: none; color: inherit; }
.crow:hover { background: var(--off); }
.crow:last-child { border-bottom: none; }
.crow-img { overflow: hidden; }
.crow-img .iph { height: 105px; }
.crow-body { padding: 1.2rem 1.4rem; border-right: var(--bll); min-width: 0; overflow: hidden; }
.crow-ttl { font-family: var(--fd); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.4rem; }
.crow-exc { font-size: 13px; line-height: 1.65; color: var(--g600); }
.crow-meta { padding: 1.2rem 1rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 2px; }

/* ARTICLE PAGE */
.art-hdr { padding: 2.25rem 2rem 0; max-width: 800px; margin: 0 auto; }
.art-ttl { font-family: var(--fd); font-size: clamp(26px, 3.2vw, 46px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.art-sub { font-family: var(--fd); font-size: 18px; font-style: italic; font-weight: 400; line-height: 1.55; color: var(--g600); margin-bottom: 1.5rem; }
.art-byline { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-top: var(--bll); border-bottom: var(--bll); }
.byline-av { width: 34px; height: 34px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: 11px; color: var(--white); font-weight: 500; flex-shrink: 0; }
.byline-nm { font-weight: 600; font-size: 13px; }
.byline-inf { font-family: var(--fm); font-size: 11px; color: var(--g400); letter-spacing: 0.04em; margin-top: 1px; }

/* FEATURED IMAGE */
.feat-img { position: relative; cursor: pointer; background: var(--black); overflow: hidden; width: 100%; }
.feat-img-wrap { width: 100%; aspect-ratio: 21/8; position: relative; overflow: hidden; }
.feat-img-wrap .iph { height: 100%; }
.feat-veil { position: absolute; inset: 0; backdrop-filter: blur(3px); background: rgba(0, 0, 0, 0.32); transition: all 0.5s ease; z-index: 2; }
.feat-img:hover .feat-veil { backdrop-filter: blur(0px); background: rgba(0, 0, 0, 0.06); }
.nft-prompt { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.feat-img:hover .nft-prompt { opacity: 1; }
.nft-pill { background: rgba(10, 10, 10, 0.8); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--white); font-family: var(--fm); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 22px; display: flex; align-items: center; gap: 8px; }
.nft-dia { color: #b8972a; }
.feat-hint { position: absolute; bottom: 0.9rem; right: 1.5rem; z-index: 3; font-family: var(--fm); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.28); display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.feat-img:hover .feat-hint { color: rgba(255, 255, 255, 0.55); }
.feat-cap { background: var(--black); color: #3a3a3a; font-family: var(--fm); font-size: 11px; letter-spacing: 0.04em; padding: 8px 2rem; display: flex; justify-content: space-between; border-bottom: 1px solid #1a1a1a; }

/* ARTICLE BODY */
.art-body { max-width: 695px; margin: 2.5rem auto 0; padding: 0 2rem 3rem; }
.art-body p { font-family: var(--fd); font-size: 18px; line-height: 1.85; color: #161616; margin-bottom: 1.5rem; font-weight: 400; }
.art-body p:first-child::first-letter { font-size: 76px; font-weight: 700; float: left; line-height: 0.78; margin: 0.06em 0.07em 0 0; font-family: var(--fd); }
.art-body h2 { font-family: var(--fd); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; }
.art-body blockquote { border-left: 3px solid var(--black); padding: 0.2rem 0 0.2rem 1.5rem; margin: 2rem 0; }
.art-body blockquote p { font-style: italic; font-size: 20px; color: var(--black); margin: 0; line-height: 1.55; }
.art-body blockquote p::first-letter { font-size: 20px; float: none; margin: 0; line-height: inherit; }

/* PAYWALL */
.paywall-wrap { position: relative; overflow: hidden; }
.paywall-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 260px; background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.85) 50%, rgba(250, 250, 250, 1) 100%); z-index: 2; pointer-events: none; }
.paywall-gate { background: var(--white); border-top: var(--bll); padding: 2.75rem 2rem 3rem; text-align: center; }
.pw-lock { font-size: 22px; margin-bottom: 0.75rem; opacity: 0.25; }
.pw-eyebrow { font-family: var(--fm); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--g400); margin-bottom: 0.85rem; }
.pw-title { font-family: var(--fd); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.65rem; }
.pw-sub { font-size: 13px; line-height: 1.7; color: var(--g600); margin-bottom: 1.75rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.pw-actions { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.pw-main { background: var(--black); color: var(--white); border: none; padding: 13px 26px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background var(--ease); text-decoration: none; display: inline-block; }
.pw-main:hover { background: #222; }
.pw-sec { background: transparent; color: var(--black); border: 1px solid var(--black); padding: 13px 26px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all var(--ease); text-decoration: none; display: inline-block; }
.pw-sec:hover { background: var(--black); color: var(--white); }
.pw-note { font-family: var(--fm); font-size: 10px; color: var(--g400); letter-spacing: 0.04em; line-height: 1.6; }
.pw-note a { color: var(--g400); text-decoration: underline; }

/* BACK */
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g400); cursor: pointer; transition: color var(--ease); padding: 1rem 2rem; background: none; border: none; border-bottom: var(--bll); width: 100%; text-align: left; text-decoration: none; }
.back-btn:hover { color: var(--black); }

/* AUTH */
.auth-pg { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); padding: 2rem; }
.auth-box { max-width: 385px; width: 100%; }
.auth-logo { font-family: var(--fd); font-size: 25px; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.auth-logo em { font-style: italic; font-weight: 400; color: #3a3a3a; }
.auth-tag { font-family: var(--fm); font-size: 10px; letter-spacing: 0.14em; color: #444; text-transform: uppercase; margin-bottom: 2.5rem; }
.auth-msg { font-family: var(--fd); font-size: 21px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 0.55rem; }
.auth-sub { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 1.75rem; }
.btn-pcta { display: block; width: 100%; background: var(--white); color: var(--black); border: none; padding: 14px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; text-align: center; transition: background var(--ease); margin-bottom: 0.6rem; text-decoration: none; }
.btn-pcta:hover { background: var(--off); }
.btn-brw { display: block; width: 100%; background: transparent; color: #555; border: 1px solid #2a2a2a; padding: 14px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; text-align: center; transition: all var(--ease); text-decoration: none; }
.btn-brw:hover { border-color: #666; color: var(--white); }
.auth-fn { margin-top: 2.5rem; font-family: var(--fm); font-size: 10px; color: #333; letter-spacing: 0.04em; line-height: 1.7; }
.auth-fn a { color: #444; text-decoration: none; }

/* MODALS */
.overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.88); z-index: 1000; align-items: center; justify-content: center; padding: 1.5rem; }
.overlay.open { display: flex; }
.modal { background: var(--white); max-width: 490px; width: 100%; position: relative; max-height: 92vh; overflow-y: auto; }
.modal-img { width: 100%; aspect-ratio: 16/9; background: var(--black); overflow: hidden; }
.modal-img .iph { height: 100%; }
.m-close { position: absolute; top: 0.7rem; right: 0.7rem; width: 28px; height: 28px; background: rgba(0, 0, 0, 0.65); border: none; color: var(--white); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background var(--ease); }
.m-close:hover { background: rgba(0, 0, 0, 0.9); }
.m-body { padding: 1.5rem 1.75rem 1.75rem; }
.m-eye { font-family: var(--fm); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--g400); margin-bottom: 0.5rem; }
.m-ttl { font-family: var(--fd); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.55rem; }
.m-desc { font-size: 13px; line-height: 1.65; color: var(--g600); margin-bottom: 1rem; }
.m-price { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; border-top: var(--bll); border-bottom: var(--bll); margin-bottom: 1rem; }
.pl { font-family: var(--fm); font-size: 10px; letter-spacing: 0.08em; color: var(--g400); margin-bottom: 3px; }
.pa { font-family: var(--fd); font-size: 26px; font-weight: 700; }
.pc { font-family: var(--fm); font-size: 12px; color: var(--g400); }
.m-acts { display: flex; gap: 0.6rem; }
.btn-buy { flex: 1; background: var(--black); color: var(--white); border: none; padding: 12px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background var(--ease); }
.btn-buy:hover { background: #222; }
.btn-wl { background: transparent; color: var(--black); border: 1px solid var(--black); padding: 12px; font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all var(--ease); }
.btn-wl:hover { background: var(--black); color: var(--white); }
.m-note { font-family: var(--fm); font-size: 10px; color: var(--g400); margin-top: 0.75rem; letter-spacing: 0.04em; line-height: 1.55; }
.art-inner { background: var(--white); max-width: 350px; width: 100%; padding: 2rem; }
.art-inner input { width: 100%; padding: 10px 12px; border: 1px solid #ccc; font-family: var(--fm); font-size: 12px; outline: none; display: block; margin-bottom: 8px; }
.art-inner input:focus { border-color: var(--black); }

/* FOOTER */
.footer { background: var(--black); color: var(--white); padding: 2.5rem 2rem 1.75rem; border-top: 1px solid #1a1a1a; width: 100%; }
.ft { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; padding-bottom: 1.75rem; border-bottom: 1px solid #1a1a1a; margin-bottom: 1.5rem; }
.fc-ttl { font-family: var(--fm); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #3a3a3a; margin-bottom: 0.75rem; }
.fc a, .fc span { display: block; font-size: 13px; color: #555; text-decoration: none; margin-bottom: 0.4rem; cursor: pointer; transition: color var(--ease); }
.fc a:hover, .fc span:hover { color: var(--white); }
.fb { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.fw { font-family: var(--fd); font-size: 15px; color: #2a2a2a; font-weight: 700; }
.fl { display: flex; gap: 1.5rem; font-family: var(--fm); font-size: 10px; letter-spacing: 0.08em; }
.fl a { color: #3a3a3a; text-decoration: none; transition: color var(--ease); }
.fl a:hover { color: #777; }
.fcopy { font-family: var(--fm); font-size: 10px; color: #2a2a2a; letter-spacing: 0.05em; }

/* INLINE SECTION ADS */
.sec-ad-bar { border-top: var(--bll); border-bottom: var(--bll); padding: 0.75rem 2rem; background: var(--off); display: flex; align-items: center; gap: 1rem; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ft { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .mws { display: block; }
  .mcol { border-right: none; border-bottom: var(--bll); }
  .agrid.c3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crow { grid-template-columns: 120px 1fr; }
  .crow-meta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-feat { border-right: none; border-bottom: var(--bll); }

  /* Sidebar becomes fixed overlay */
  .sbar {
    position: fixed; top: 0; right: 0;
    height: 100dvh; width: min(300px, 88vw);
    overflow-y: auto; overflow-x: hidden;
    background: var(--white);
    border-left: var(--bll);
    box-shadow: -6px 0 32px rgba(0,0,0,0.1);
    z-index: 400;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    /* reset desktop width transition */
    width: min(300px, 88vw) !important;
  }
  .sbar.sbar-open { transform: translateX(0); }
  .sbar-pull { display: none; }
  .sbar-mob-pull { display: flex; }
  .sbar-scrim { display: block; }
  .sbar-inner { padding: 1.5rem 1.4rem; width: auto; }
  .ad-sticky-wrap { position: static; }
}
@media (max-width: 768px) {
  .hdr-top { display: none; }
  .hdr-main { padding: 0 1.25rem; }
  .hdr-search { display: none; }
  .mob-btn { display: flex; }
  .cat-nav { display: none; }
}
@media (max-width: 520px) {
  .agrid.c3 { grid-template-columns: 1fr; }
  .ft { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-ttl { font-size: 22px; }
  .ch-ttl { font-size: 32px; }
  .art-ttl { font-size: 24px; }
  .art-body p { font-size: 16px; }
  .fb { flex-direction: column; align-items: flex-start; }
  .crow { grid-template-columns: 1fr; }
  .crow-img .iph { height: 130px; }
}
