/* ===== RESET & VARS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Brand palette: Neon Royal Casino — deep navy nightclub + electric
     blue lightning glow + metallic gold, matching nolimit88-th.com ---- */
  --navy:     #0a1e30;
  --navy-2:   #123a58;
  --navy-hi:  #1c4d73;

  --blue:        #2f6bff;
  --blue-bright: #6fa8ff;
  --blue-deep:   #1a3fb0;
  --gold:        #f0c14b;
  --gold-bright: #ffe27a;
  --gold-deep:   #c9962e;

  /* muted text stays light/near-white for readability, per instruction —
     never a dim grey like other brands */
  --text:  #f2f6ff;
  --muted: #d7e0ff;
  --dim:   #9db0e8;

  --border:      rgba(111,168,255,0.32);
  --border-soft: rgba(111,168,255,0.16);
  --border-gold: rgba(240,193,75,0.34);

  --glass:      rgba(18,58,88,0.65);
  --glass-soft: rgba(18,58,88,0.42);

  --grad-gold: linear-gradient(120deg, #ffe27a 0%, #f0c14b 50%, #c9962e 100%);
  --grad-blue: linear-gradient(120deg, #8fc4ff 0%, #2f6bff 55%, #1a3fb0 100%);
  --grad-cta:  linear-gradient(135deg, #ffe27a 0%, #f0c14b 55%, #c9962e 100%);

  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow:    0 10px 28px rgba(2,4,12,0.6);
  --shadow-lg: 0 18px 46px rgba(2,4,12,0.65);
  --glow-blue: 0 0 0 1px rgba(111,168,255,0.3), 0 0 26px rgba(111,168,255,0.2), 0 14px 32px rgba(2,4,12,0.6);
  --glow-gold: 0 0 0 1px rgba(240,193,75,0.34), 0 0 24px rgba(240,193,75,0.2), 0 14px 32px rgba(2,4,12,0.6);

  --font-display: 'Prompt', sans-serif;
  --font-body:    'Prompt', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 92px; /* space for the bottom mobile nav */
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

/* Page background painted entirely in CSS (no source photo this time) —
   dark navy canvas with electric-blue "lightning glow" bursts, echoing
   the reference site's neon nightclub mood. Kept to a handful of radial
   gradients so it stays lightweight. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 15% 8%, rgba(28,77,115,0.4) 0%, rgba(28,77,115,0) 42%),
    radial-gradient(circle at 88% 18%, rgba(111,168,255,0.22) 0%, rgba(111,168,255,0) 38%),
    radial-gradient(circle at 50% 100%, rgba(18,58,88,0.55) 0%, rgba(18,58,88,0) 45%),
    linear-gradient(180deg, #000000 0%, #0a1e30 22%, #123a58 50%, #0a1e30 78%, #000000 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: repeating-linear-gradient(115deg, rgba(111,168,255,0.05) 0px, rgba(111,168,255,0.05) 1px, transparent 1px, transparent 68px);
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 1.25rem; position: relative; }
@media (max-width: 768px) { .section { padding: 3.25rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.75rem 0.875rem; } }

/* ===== HEADINGS ===== */
/* text-transform only affects cased Latin letters — "nolimit88" renders as
   NOLIMIT88 while the surrounding Thai text is untouched, matching the
   reference site's all-caps brand treatment without altering the DOM text. */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; text-wrap: balance; color: var(--text); text-transform: uppercase; }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-transform: uppercase;
}
.kw { color: var(--gold-bright); font-weight: 700; text-transform: uppercase; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 8px var(--blue-bright); }

.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.35; margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
@media (max-width: 479px) { .section-head { margin-bottom: 2rem; } .section-head p { font-size: 0.875rem; } }

/* compact title bar sitting directly above a provider-card grid, echoing
   the reference site's "🎰 ค่ายสล็อตมาแรง 🎰" strip */
.grid-title {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  margin-bottom: 1.5rem; text-align: center;
}
.grid-title .icon { font-size: 1.25rem; filter: drop-shadow(0 0 8px rgba(240,193,75,0.5)); }
.grid-title h2 { font-size: clamp(1.05rem, 2.8vw, 1.4rem); margin: 0; }

/* descriptive paragraph placed below a grid instead of above it */
.section-para { max-width: 760px; margin: 1.75rem auto 0; text-align: center; }
.section-para p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }
.section-para .btn { margin-top: 1.5rem; }

/* ===== BUTTONS — text buttons this brand (no button images provided) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 2.1rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-gold { background: var(--grad-cta); color: var(--navy); box-shadow: var(--glow-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(1px); }
.btn-outline { background: var(--glass); color: var(--gold-bright); border: 1px solid var(--border-gold); backdrop-filter: blur(10px); }
.btn-outline:hover { transform: translateY(-2px); }
.hbtn { padding: 0.6rem 1.35rem; font-size: 0.85rem; }

/* =====================================================================
   TICKER BAR — scrolling announcement strip, sitting right under the
   hero banner (homepage) or right under the header (sub-pages). Made
   deliberately loud: bold gold gradient text, emoji, glowing gold edges.
   ===================================================================== */
.ticker-bar {
  position: relative; z-index: 5;
  overflow: hidden; white-space: nowrap;
  background: var(--navy-2);
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 0 18px rgba(240,193,75,0.18) inset;
  padding: 0.7rem 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 22s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 2.25rem; padding-right: 2.25rem;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  color: var(--gold-bright); text-shadow: 0 0 12px rgba(240,193,75,0.4); white-space: nowrap;
}
.ticker-item b { color: #fff; font-weight: 800; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
@media (max-width: 768px) { .ticker-item { font-size: 0.8rem; gap: 1.5rem; padding-right: 1.5rem; } }

/* =====================================================================
   HEADER — flush "Neon Glass Bar" (not floating): dark navy glass with a
   thin blue neon underglow line, gold nav text — a distinct silhouette
   vs. every earlier brand's header. Fixed flush at the very top now that
   the ticker no longer sits above it.
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--glass);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(2,4,12,0.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
  padding: 0.6rem 1.25rem;
}
.header-row1 { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo-link { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; max-width: 200px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; margin: 0 auto; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1.05rem; border-radius: 9999px;
  font-size: 0.87rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold-bright); background: var(--navy-hi); }

.ico-line {
  display: inline-flex; align-items: center; justify-content: center;
  background: #06C755; color: #fff; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.03em; border-radius: 4px; padding: 2px 4px; flex-shrink: 0; line-height: 1;
}

.header-btns { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; margin-left: auto; }

.header-row2 { display: none; }

@media (max-width: 768px) {
  .header-inner { padding: 0.5rem 0.85rem; }
  .header-row1 { gap: 0.5rem; }
  .nav-menu { display: none; }
  .logo-img { height: 40px; }
  .header-btns { gap: 0.4rem; }
  .hbtn { padding: 0.5rem 0.9rem; font-size: 0.76rem; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.3rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-top: 0.45rem; margin-top: 0.45rem;
    border-top: 1px solid var(--border-soft);
  }
  .header-row2::-webkit-scrollbar { display: none; }
}
.mob-nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  background: var(--navy-hi);
}
.mob-nav-link:active { color: var(--gold-bright); }

/* ===== HERO — long full-bleed banner image, exactly as provided ===== */
.hero { position: relative; padding-top: 88px; }
/* the fixed header is taller on mobile (logo/buttons row + row2 link
   strip below it), so the hero needs more clearance here than on desktop
   or the header covers the top of the banner image */
@media (max-width: 768px) { .hero { padding-top: 108px; } }
.hero-banner { display: block; line-height: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }

.hero-intro { max-width: 900px; margin: 0 auto; padding: 3rem 1.25rem 1rem; text-align: center; }
@media (max-width: 768px) { .hero-intro { padding: 2.25rem 1rem 0.5rem; } }
.hero-intro .eyebrow { margin-bottom: 1.2rem; }
.hero-intro h1 { font-size: clamp(1.7rem, 4.6vw, 2.6rem); line-height: 1.35; margin-bottom: 1.1rem; }
.hero-intro p { color: var(--muted); font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.9; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 1.5rem 1.25rem; }
.strip-frame { max-width: 700px; margin: 0 auto; }
.strip-frame img { width: 100%; filter: drop-shadow(0 10px 22px rgba(2,4,12,0.5)); }

/* ===== FULL-WIDTH FEATURE BANNER (Auto system true wallet) ===== */
.feature-banner-frame {
  max-width: 1080px; margin: 0 auto; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--glow-blue); line-height: 0;
}
.feature-banner-frame img { width: 100%; }

/* ===== PROVIDER CARD GRID (game/ and slot/ folders) ===== */
.provider-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .provider-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479px) { .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }
.provider-card {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 8px 18px rgba(2,4,12,0.5));
}
.provider-card:hover { transform: translateY(-4px); }
.provider-card img { width: 100%; height: auto; }

/* HOT + live player-count badges overlaid on each provider card */
.provider-badges {
  position: absolute; top: 0.5rem; left: 0.5rem; right: 0.5rem; z-index: 2;
  display: flex; align-items: flex-start; justify-content: space-between;
  pointer-events: none;
}
.badge-count {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: rgba(6,20,32,0.82); color: var(--gold-bright);
  font-size: 0.66rem; font-weight: 700; padding: 0.2rem 0.5rem 0.2rem 0.4rem;
  border-radius: 9999px; border: 1px solid var(--border-gold);
}
/* a plain "👤" emoji renders as a fixed-color glyph on every platform and
   ignores CSS color — masking a monochrome SVG with the gold token is the
   only way to guarantee it actually renders gold. */
.badge-count::before {
  content: '';
  display: inline-block; width: 0.72em; height: 0.72em; flex-shrink: 0;
  background: var(--gold-bright);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2.5c-3.34 0-10 1.68-10 5v2.5h20v-2.5c0-3.32-6.66-5-10-5z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2.5c-3.34 0-10 1.68-10 5v2.5h20v-2.5c0-3.32-6.66-5-10-5z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.badge-hot {
  display: inline-flex; align-items: center; gap: 0.2rem;
  background: linear-gradient(120deg, #ff5c7a, #ff8a5c); color: #fff;
  font-size: 0.64rem; font-weight: 800; padding: 0.2rem 0.55rem 0.2rem 0.4rem;
  border-radius: 9999px; letter-spacing: 0.02em;
}
.badge-hot::before { content: '🔥'; font-size: 0.7rem; }
@media (max-width: 479px) {
  .badge-count, .badge-hot { font-size: 0.58rem; padding: 0.16rem 0.4rem; }
}

/* ===== INFO CARD (generic content block, no image) ===== */
.info-card {
  max-width: 860px; margin: 0 auto; background: var(--glass); border: 1px solid var(--border-gold);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--glow-gold);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 768px) { .info-card { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card h2, .info-card h3 { font-size: clamp(1.2rem, 3.3vw, 1.7rem); margin-bottom: 1.1rem; line-height: 1.35; }
.info-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--glass); border: 1px solid var(--border-soft); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--shadow); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; margin-bottom: 0.55rem; color: var(--text); }
.faq-q::before { content: 'Q  '; color: var(--gold-bright); }
.faq-a { color: var(--muted); font-size: 0.865rem; line-height: 1.85; }
.faq-a::before { content: 'A  '; color: var(--blue-bright); font-weight: 700; }
@media (max-width: 479px) { .faq-item { padding: 1.05rem 1.15rem; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 1.25rem; }
.cta-panel {
  max-width: 1000px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--border-gold); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--glow-gold);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.cta-panel h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 0.75rem; }
.cta-panel p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-btns .btn { padding: 1rem 2.4rem; font-size: 1.02rem; }
@media (max-width: 768px) { .cta-panel { padding: 2.5rem 1.5rem; } }
@media (max-width: 479px) { .cta-panel { padding: 2rem 1.1rem; border-radius: var(--r-lg); } }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid var(--border-soft); color: var(--muted); padding: 3rem 1.25rem 2rem; text-align: center; }
.footer-logo { height: 68px; width: auto; margin: 0 auto 1rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.footer-tagline { max-width: 640px; margin: 0 auto 2rem; font-size: 0.88rem; line-height: 1.75; }
.footer-tagline b { color: var(--gold-bright); text-transform: uppercase; }
.footer-partner { max-width: 1080px; margin: 0 auto 2rem; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.footer-partner img { width: 100%; }
.footer-copy { color: var(--dim); font-size: 0.76rem; }
.footer-copy b { color: var(--dim); }

/* =====================================================================
   BOTTOM MOBILE NAV — flush "Neon Dock" (not floating): dark glass with
   a blue neon top-edge glow, gold hex-cut badge for the logo — distinct
   from every earlier brand's dock shape.
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  align-items: center; justify-content: space-between;
  background: var(--glass);
  box-shadow: 0 -1px 0 var(--border), 0 -10px 26px rgba(2,4,12,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.5rem 0.6rem;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  padding: 0.55rem 0.15rem; border-radius: var(--r); color: var(--muted);
  font-size: 0.66rem; font-weight: 600; text-align: center; line-height: 1.1;
  -webkit-tap-highlight-color: transparent; transition: color 0.2s, background 0.2s;
}
.mnav-item .mnav-emoji { font-size: 1.1rem; line-height: 1; }
.mnav-item .ico-line { transform: scale(1.35); margin-bottom: 0.1rem; }
.mnav-item:active { color: var(--gold-bright); background: var(--navy-hi); }
.mnav-item.acc { color: var(--gold-bright); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  width: 66px; height: 62px; margin: 0 0.4rem; transform: translateY(-16px);
  background: var(--navy-hi);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--glow-gold);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
}
.mnav-center:active { transform: translateY(-16px) scale(0.94); }
.mnav-center img { height: 34px; width: auto; max-width: 46px; object-fit: contain; }
@media (max-width: 360px) {
  .mnav-item { font-size: 0.6rem; }
  .mnav-center { width: 58px; height: 54px; transform: translateY(-13px); }
  .mnav-center:active { transform: translateY(-13px) scale(0.94); }
  .mnav-center img { height: 28px; max-width: 38px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(10,20,64,0.4); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== SUB-PAGES ===== */
body.page-body { overflow: hidden; }
.page-main { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 88px 1.25rem 7rem; text-align: center; gap: 1.75rem; position: relative; }
@media (max-width: 768px) { .page-main { padding-top: 108px; } }
.page-h1 { font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.35; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 88px 1.25rem 5rem; }
@media (max-width: 768px) { .article-main { padding-top: 108px; } }
.article-main h1 { font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.95; margin-bottom: 1.25rem; }
.article-main h2 { font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; }

.article-cover { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--glow-blue); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--glass); border: 1px solid var(--border-gold); border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--gold-bright); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.9; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-img-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0 1.75rem; }
.article-img-row a { display: block; border-radius: var(--r); overflow: hidden; filter: drop-shadow(0 8px 18px rgba(2,4,12,0.5)); transition: transform 0.2s ease; }
.article-img-row a:hover { transform: translateY(-3px); }
.article-img-row img { width: 100%; }
@media (max-width: 479px) { .article-img-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }

.article-single-img { border-radius: var(--r-lg); overflow: hidden; margin: 1.5rem 0 1.75rem; max-width: 420px; filter: drop-shadow(0 10px 22px rgba(2,4,12,0.5)); }
.article-single-img img { width: 100%; }

.article-faq { margin-top: 2.5rem; }
