/* ============================================================
   Naga138 - naga138.games
   Casino portal theme: red / white / green / gold / blue / black
   Fully responsive, no external CSS frameworks.
   ============================================================ */

:root {
  --red: #c8102e;
  --red-d: #9d0b22;
  --red-l: #ffe9ec;
  --green: #0e9f6e;
  --green-d: #0a7a54;
  --green-l: #e6f7f0;
  --gold: #f5b301;
  --gold-l: #ffd54a;
  --gold-bg: #fff7e0;
  --blue: #2563eb;
  --blue-l: #e8effd;
  --ink: #0c0f16;
  --ink-2: #141926;
  --ink-3: #1d2436;
  --paper: #ffffff;
  --soft: #f6f7fb;
  --txt: #263042;
  --mut: #5d6879;
  --line: #e5e9f1;
  --rad: 16px;
  --rad-sm: 10px;
  --shadow: 0 12px 32px rgba(12, 15, 22, .09);
  --shadow-sm: 0 4px 14px rgba(12, 15, 22, .07);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--txt);
  background: var(--paper);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--red { background: linear-gradient(180deg, var(--red) 0%, var(--red-d) 100%); color: #fff; box-shadow: 0 8px 20px rgba(200, 16, 46, .35); }
.btn--red:hover { box-shadow: 0 12px 26px rgba(200, 16, 46, .45); }
.btn--gold { background: linear-gradient(180deg, var(--gold-l) 0%, var(--gold) 100%); color: var(--ink); box-shadow: 0 8px 20px rgba(245, 179, 1, .4); }
.btn--gold:hover { box-shadow: 0 12px 26px rgba(245, 179, 1, .55); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--txt); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }
.btn--ghost-light { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--ghost-light:hover { border-color: var(--gold-l); color: var(--gold-l); }
.btn--green { background: linear-gradient(180deg, #12b57d 0%, var(--green-d) 100%); color: #fff; box-shadow: 0 8px 20px rgba(14, 159, 110, .35); }
.btn--sm { padding: 10px 20px; font-size: 14px; }

/* ---------- 18+ badge ---------- */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 6px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
  vertical-align: middle;
}

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #c8d0dd; font-size: 12.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; }
.topbar__note { display: flex; align-items: center; gap: 8px; }
.topbar__date { color: #8f9aab; white-space: nowrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 20px; min-height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; }
.brand__coin { display: grid; place-items: center; filter: drop-shadow(0 3px 6px rgba(245, 179, 1, .45)); }
.brand__text { font-weight: 800; font-size: 24px; letter-spacing: .5px; color: var(--ink); }
.brand__hl { color: var(--red); }
.brand--footer .brand__text { color: #fff; }

.main-nav { margin-left: auto; }
.main-nav__list { display: flex; align-items: center; gap: 4px; }
.main-nav__list a {
  display: block;
  padding: 9px 13px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--txt);
  text-decoration: none !important;
  transition: background .15s ease, color .15s ease;
}
.main-nav__list a:hover { background: var(--soft); color: var(--red); }
.main-nav__list a.is-active { background: var(--red-l); color: var(--red); }
.main-nav__extra { display: flex; align-items: center; gap: 10px; margin-left: 10px; }

.header-tools { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search--mobile { display: none; }
.search { position: relative; }
.search__form {
  display: flex;
  align-items: center;
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px 4px 3px 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.search__form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 179, 1, .18); }
.search__input { border: 0; outline: 0; background: transparent; width: 190px; font-size: 13.5px; color: var(--txt); }
.search__input::placeholder { color: #97a1b1; }
.search__btn {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border: 0; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: var(--ink);
}
.search__drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 330px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 950;
  max-height: 340px;
  overflow: auto;
}
.search__drop a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--txt);
  text-decoration: none !important;
}
.search__drop a:hover, .search__drop a.is-sel { background: var(--soft); }
.search__drop .s-title { display: block; font-weight: 700; font-size: 14px; color: var(--ink); }
.search__drop .s-sub { display: block; font-size: 12px; color: var(--mut); }
.search__drop .s-empty { padding: 10px 12px; font-size: 13.5px; color: var(--mut); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--soft); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 11px 0; font-size: 13px; color: var(--mut); }
.crumbs li { display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "\203A"; color: #a5aebc; font-weight: 700; }
.crumbs a { color: var(--mut); text-decoration: none; }
.crumbs a:hover { color: var(--red); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- Section scaffolding ---------- */
.section { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: radial-gradient(1200px 500px at 80% -10%, rgba(245, 179, 1, .12), transparent 60%), linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%); color: #e8ecf4; }
.section--dark .sec-head__title { color: #fff; }
.section--dark .sec-head__lead { color: #aab4c4; }
.section--tight { padding: 46px 0; }

.sec-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.sec-head__title { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -.3px; }
.sec-head__lead { margin-top: 12px; color: var(--mut); font-size: 16px; }
.sec-head--left { text-align: left; margin: 0 0 26px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--red-l);
  color: var(--red);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section--dark .eyebrow { background: rgba(245, 179, 1, .15); color: var(--gold-l); }
.eyebrow--green { background: var(--green-l); color: var(--green-d); }
.eyebrow--blue { background: var(--blue-l); color: var(--blue); }
.eyebrow--gold { background: var(--gold-bg); color: #8a6400; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero.jpg") center 30% / cover no-repeat;
  opacity: .38;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 12% 105%, rgba(14, 159, 110, .28), transparent 65%),
    radial-gradient(800px 380px at 88% -10%, rgba(200, 16, 46, .5), transparent 62%),
    linear-gradient(180deg, rgba(12, 15, 22, .68) 0%, rgba(12, 15, 22, .9) 78%, var(--ink) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 84px;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 179, 1, .5);
  background: rgba(245, 179, 1, .12);
  color: var(--gold-l);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__title { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; line-height: 1.14; letter-spacing: -.5px; color: #fff; }
.hero__title em { font-style: normal; color: var(--gold-l); }
.hero__lead { margin-top: 16px; font-size: clamp(15px, 1.6vw, 17.5px); color: #c6cedb; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #dfe5ee;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 7px 13px;
  border-radius: 999px;
}
.hero-badge svg { color: var(--gold-l); flex: none; }

.hero__cards { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hcard {
  border-radius: 18px;
  padding: 18px 16px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}
.hcard__ico { font-size: 30px; line-height: 1; }
.hcard__name { font-weight: 800; font-size: 15.5px; color: #fff; }
.hcard__sub { font-size: 12px; color: #aeb8c8; }
.hcard--1 { transform: rotate(-2deg) translateY(6px); }
.hcard--2 { transform: rotate(1.6deg); background: linear-gradient(160deg, rgba(200, 16, 46, .5), rgba(200, 16, 46, .16)); }
.hcard--3 { transform: rotate(1.2deg) translateY(10px); background: linear-gradient(160deg, rgba(14, 159, 110, .42), rgba(14, 159, 110, .12)); }
.hcard--4 { transform: rotate(-1.8deg) translateY(2px); background: linear-gradient(160deg, rgba(37, 99, 235, .42), rgba(37, 99, 235, .12)); }

.tag-cloud { padding: 0 0 40px; }
.tag-cloud__label { font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; color: #93a0b4; text-transform: uppercase; margin-bottom: 12px; }
.tag-cloud__row { display: flex; flex-wrap: wrap; gap: 9px; position: relative; z-index: 2; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #dfe5ee;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.tag:hover { background: rgba(245, 179, 1, .2); border-color: var(--gold); color: var(--gold-l); transform: translateY(-1px); }
.tag--hot::after { content: "HOT"; font-size: 9px; font-weight: 800; letter-spacing: .5px; color: #fff; background: var(--red); border-radius: 5px; padding: 2px 5px; }

/* ---------- Steps (4 langkah) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(160deg, var(--red), var(--red-d));
  box-shadow: 0 8px 18px rgba(200, 16, 46, .3);
  margin-bottom: 16px;
}
.step:nth-child(2) .step__num { background: linear-gradient(160deg, var(--gold-l), var(--gold)); color: var(--ink); box-shadow: 0 8px 18px rgba(245, 179, 1, .35); }
.step:nth-child(3) .step__num { background: linear-gradient(160deg, #12b57d, var(--green-d)); box-shadow: 0 8px 18px rgba(14, 159, 110, .3); }
.step:nth-child(4) .step__num { background: linear-gradient(160deg, #4f83f3, var(--blue)); box-shadow: 0 8px 18px rgba(37, 99, 235, .3); }
.step__title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.step__text { font-size: 14.2px; color: var(--mut); }
.step__link { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 700; color: var(--red); text-decoration: none; }
.step__link:hover { text-decoration: underline; }

/* ---------- Advantage cards ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.adv {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.adv:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f0d9a1; }
.adv__ico {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  font-size: 22px;
  margin-bottom: 14px;
  background: var(--red-l);
}
.adv:nth-child(2) .adv__ico { background: var(--gold-bg); }
.adv:nth-child(3) .adv__ico { background: var(--green-l); }
.adv:nth-child(4) .adv__ico { background: var(--blue-l); }
.adv:nth-child(5) .adv__ico { background: var(--red-l); }
.adv:nth-child(6) .adv__ico { background: var(--gold-bg); }
.adv__title { font-size: 16.5px; font-weight: 800; color: var(--ink); margin-bottom: 7px; }
.adv__text { font-size: 14.2px; color: var(--mut); }

/* ---------- Split section (why / security / rg) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split__media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(12, 15, 22, 0) 40%, rgba(12, 15, 22, .45)); }
.split__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  background: rgba(12, 15, 22, .78);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
}

.check-list { display: grid; gap: 13px; margin-top: 20px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .tick {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  margin-top: 2px;
  background: var(--green-l);
  color: var(--green-d);
}
.check-list strong { color: var(--ink); }
.check-list p, .check-list li span { font-size: 14.8px; color: var(--mut); }

.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.stat-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-chip b { display: block; font-size: 19px; color: var(--red); font-weight: 800; }
.stat-chip span { font-size: 12px; color: var(--mut); font-weight: 600; }

/* ---------- Promo reading strip ---------- */
.read-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.read-card {
  position: relative;
  border-radius: var(--rad);
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.read-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.read-card:nth-child(2)::before { background: var(--red); }
.read-card:nth-child(3)::before { background: var(--green); }
.read-card h3 { font-size: 16.5px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.read-card p { font-size: 14.2px; color: var(--mut); }
.read-card a { display: inline-block; margin-top: 10px; font-size: 13.5px; font-weight: 700; }

/* ---------- Mobile section ---------- */
.mobile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.phone {
  position: relative;
  width: min(300px, 80%);
  margin: 0 auto;
  border-radius: 38px;
  border: 8px solid #2a3142;
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  overflow: hidden;
  aspect-ratio: 9 / 18.5;
}
.phone::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 20px;
  background: #2a3142;
  border-radius: 12px;
  z-index: 3;
}
.phone__screen { position: absolute; inset: 0; background: url("/assets/img/mobile.jpg") center / cover no-repeat; opacity: .85; }
.phone__shine { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255, 255, 255, .22) 0%, transparent 34%); z-index: 2; }
.phone__float {
  position: absolute;
  z-index: 4;
  background: rgba(12, 15, 22, .82);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 11px;
  backdrop-filter: blur(3px);
}
.phone__float--a { top: 52px; right: 10px; animation: floaty 4.5s ease-in-out infinite; }
.phone__float--b { bottom: 88px; left: 10px; animation: floaty 5.5s ease-in-out .8s infinite; }
.phone__float--c { bottom: 30px; right: 14px; animation: floaty 5s ease-in-out 1.6s infinite; background: rgba(245, 179, 1, .92); color: var(--ink); border-color: rgba(255, 255, 255, .5); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.mobile-points { display: grid; gap: 14px; margin-top: 22px; }
.mpoint { display: flex; gap: 14px; align-items: flex-start; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; padding: 16px 18px; }
.mpoint__ico { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(245, 179, 1, .16); color: var(--gold-l); }
.mpoint h3 { font-size: 15.5px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.mpoint p { font-size: 14px; color: #aab4c4; }

/* ---------- Testimonials ---------- */
.testi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testi__stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.testi__text { font-size: 14.2px; color: var(--txt); flex: 1; }
.testi__who { display: flex; align-items: center; gap: 11px; border-top: 1px dashed var(--line); padding-top: 13px; }
.testi__ava {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}
.testi__ava--a { background: linear-gradient(160deg, var(--red), var(--red-d)); }
.testi__ava--b { background: linear-gradient(160deg, var(--gold-l), var(--gold)); color: var(--ink); }
.testi__ava--c { background: linear-gradient(160deg, #12b57d, var(--green-d)); }
.testi__ava--d { background: linear-gradient(160deg, #4f83f3, var(--blue)); }
.testi__name { font-weight: 800; font-size: 14px; color: var(--ink); }
.testi__city { font-size: 12px; color: var(--mut); }
.testi__note { font-size: 11.5px; color: #9aa4b3; }

/* ---------- NagaCheck (interactive) ---------- */
.nagacheck {
  background: #fff;
  border: 2px dashed #f0d9a1;
  border-radius: 22px;
  padding: 34px 30px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.nagacheck__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; margin-top: 20px; }
.nc-item { display: flex; gap: 11px; align-items: flex-start; padding: 10px 8px; border-radius: 10px; cursor: pointer; transition: background .15s ease; }
.nc-item:hover { background: var(--gold-bg); }
.nc-item input { margin-top: 5px; accent-color: var(--green); width: 17px; height: 17px; flex: none; cursor: pointer; }
.nc-item span { font-size: 14.3px; color: var(--txt); }
.nc-meter { margin-top: 22px; background: var(--soft); border-radius: 12px; padding: 16px 18px; }
.nc-meter__bar { height: 12px; border-radius: 999px; background: var(--line); overflow: hidden; }
.nc-meter__fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--gold), var(--green)); transition: width .4s ease; }
.nc-meter__msg { margin-top: 10px; font-size: 14px; font-weight: 700; }
.nc-meter__msg--ok { color: var(--green-d); }
.nc-meter__msg--warn { color: #b25e00; }
.nc-meter__msg--stop { color: var(--red); }
.nc-note { margin-top: 12px; font-size: 12.3px; color: var(--mut); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: #f0d9a1; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--red-l);
  color: var(--red);
  font-weight: 800;
  font-size: 17px;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq-item__body { padding: 0 20px 18px; font-size: 14.6px; color: var(--mut); }
.faq-item__body a { font-weight: 700; }

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--ink) 0%, #23162b 55%, #3a0f1c 100%);
  color: #fff;
  padding: 42px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadow);
}
.cta-strip::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, .35), transparent 70%);
}
.cta-strip h2 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; letter-spacing: -.3px; }
.cta-strip p { color: #b9c2d2; font-size: 14.8px; margin-top: 6px; max-width: 520px; }
.cta-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ---------- Category cards (home) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.cat-card:hover { transform: translateY(-5px); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12, 15, 22, .05) 30%, rgba(12, 15, 22, .88) 100%); }
.cat-card__body { position: relative; z-index: 2; padding: 18px; }
.cat-card__name { font-size: 19px; font-weight: 800; }
.cat-card__sub { font-size: 12.5px; color: #ccd4e0; margin-top: 3px; }
.cat-card__go { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 800; letter-spacing: 1px; color: var(--gold-l); }

/* ---------- Archive / article pages ---------- */
.archive-head {
  background:
    radial-gradient(600px 260px at 90% 0%, rgba(245, 179, 1, .14), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff;
  padding: 52px 0 44px;
}
.archive-head__kicker { color: var(--gold-l); font-weight: 800; font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; }
.archive-head__title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin-top: 10px; letter-spacing: -.4px; }
.archive-head__lead { margin-top: 12px; color: #b9c2d2; max-width: 760px; font-size: 15.5px; }

.archive-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 36px; padding: 42px 20px 64px; align-items: start; }
.archive-main { min-width: 0; }

.article__head { background: var(--soft); border-bottom: 1px solid var(--line); padding: 44px 0 34px; }
.article__kicker { display: inline-block; background: var(--red-l); color: var(--red); font-weight: 800; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.article__kicker--green { background: var(--green-l); color: var(--green-d); }
.article__kicker--gold { background: var(--gold-bg); color: #8a6400; }
.article__kicker--blue { background: var(--blue-l); color: var(--blue); }
.article__title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; color: var(--ink); line-height: 1.22; letter-spacing: -.4px; margin-top: 14px; }
.article__meta { margin-top: 12px; font-size: 13.3px; color: var(--mut); }
.article__layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 36px; padding: 40px 20px 64px; align-items: start; }
.article__body { min-width: 0; }

.prose { font-size: 16px; color: var(--txt); }
.prose h2 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 800; color: var(--ink); margin: 38px 0 14px; letter-spacing: -.3px; scroll-margin-top: 90px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin: 26px 0 10px; scroll-margin-top: 90px; }
.prose p { margin: 0 0 15px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 8px; }
.prose ul li, .prose ol li { padding-left: 26px; position: relative; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--gold);
}
.prose ol { counter-reset: ol; }
.prose ol li { counter-increment: ol; }
.prose ol li::before {
  content: counter(ol);
  position: absolute;
  left: 0; top: 1px;
  min-width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}
.prose strong { color: var(--ink); }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.prose__img { margin: 26px 0; }
.prose__img img { width: 100%; border-radius: 16px; box-shadow: var(--shadow); }
.prose__img figcaption { margin-top: 10px; font-size: 12.8px; color: var(--mut); text-align: center; }

.info-box { border-radius: 14px; padding: 18px 20px; margin: 20px 0; font-size: 14.6px; display: flex; gap: 13px; align-items: flex-start; }
.info-box p { margin: 0; }
.info-box--warn { background: #fff5f6; border: 1px solid #f6c9cf; color: #8a1023; }
.info-box--ok { background: var(--green-l); border: 1px solid #bfe8d7; color: #0a5d40; }
.info-box--info { background: var(--blue-l); border: 1px solid #c9dbfb; color: #1c3d8f; }
.info-box--gold { background: var(--gold-bg); border: 1px solid #f0d9a1; color: #6e5200; }
.info-box__ico { font-size: 19px; line-height: 1.4; flex: none; }

.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: 14px; border: 1px solid var(--line); -webkit-overflow-scrolling: touch; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.2px; min-width: 520px; }
.prose th { background: var(--ink); color: #fff; text-align: left; padding: 12px 16px; font-weight: 700; white-space: nowrap; }
.prose td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.prose tbody tr:nth-child(even) { background: var(--soft); }

.article__side { position: sticky; top: 86px; display: grid; gap: 18px; }
.side-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.side-box h3 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 13px; display: flex; align-items: center; gap: 8px; }
.side-list { display: grid; gap: 4px; }
.side-list a {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--txt);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease;
}
.side-list a:hover { background: var(--soft); color: var(--red); }
.side-list .arrow { color: var(--gold); font-weight: 800; flex: none; }
.side-cta { background: linear-gradient(150deg, var(--ink), #2a1020); color: #fff; border: 0; }
.side-cta h3 { color: #fff; }
.side-cta p { font-size: 13.5px; color: #b9c2d2; margin-bottom: 14px; }
.side-cta .btn { width: 100%; }

/* ---------- Card grid (promo archive / panduan) ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(12, 15, 22, .82);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}
.post-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__title { font-size: 16.5px; font-weight: 800; color: var(--ink); line-height: 1.35; }
.post-card__title a { color: inherit; text-decoration: none !important; }
.post-card__title a:hover { color: var(--red); }
.post-card__text { font-size: 13.8px; color: var(--mut); flex: 1; }
.post-card__meta { font-size: 12px; color: #9aa4b3; font-weight: 600; }

/* ---------- Forms ---------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 380px; gap: 34px; align-items: start; padding: 48px 20px 70px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 32px 30px; }
.form-card h1 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.form-card .form-sub { color: var(--mut); font-size: 14.5px; margin: 8px 0 22px; }
.form-note { margin-top: 16px; font-size: 13px; color: var(--mut); background: var(--soft); border-radius: 10px; padding: 12px 14px; }
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.f-field input[type="text"], .f-field input[type="email"], .f-field input[type="password"], .f-field input[type="tel"] {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--txt);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.f-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245, 179, 1, .18); }
.f-field .f-err { display: none; font-size: 12.5px; color: var(--red); margin-top: 5px; font-weight: 600; }
.f-field.has-err input { border-color: var(--red); }
.f-field.has-err .f-err { display: block; }
.f-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.3px; color: var(--mut); margin: 6px 0 18px; }
.f-check input { margin-top: 3px; accent-color: var(--red); width: 16px; height: 16px; flex: none; }
.f-check a { font-weight: 700; }
.form-card .btn { width: 100%; padding: 16px; font-size: 16px; }
.f-alt { text-align: center; margin-top: 16px; font-size: 14px; color: var(--mut); }
.f-alt a { font-weight: 800; }
.pw-hint { font-size: 12px; color: #9aa4b3; margin-top: 5px; }

.auth-aside { display: grid; gap: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--ink) 0%, #090b10 100%); color: #b6bfcd; padding: 54px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.f-col--about p { font-size: 13.8px; color: #9aa4b3; margin-top: 14px; }
.f-tagline { display: flex; align-items: flex-start; gap: 9px; font-size: 12.8px !important; color: #c8d0dd !important; background: rgba(200, 16, 46, .14); border: 1px solid rgba(200, 16, 46, .45); border-radius: 12px; padding: 11px 13px !important; }
.f-title { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 15px; }
.f-list { display: grid; gap: 9px; }
.f-list a { color: #9aa4b3; text-decoration: none; font-size: 14px; }
.f-list a:hover { color: var(--gold-l); text-decoration: underline; }
.f-pay { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 22px; }
.f-pay__label { font-size: 12.5px; color: #8f9aab; margin-bottom: 10px; }
.f-pay__list { display: flex; flex-wrap: wrap; gap: 8px; }
.f-pay__list li {
  font-size: 12px;
  font-weight: 700;
  color: #dfe5ee;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 5px 12px;
}
.site-footer__legal { margin-top: 26px; font-size: 12.3px; color: #7d8797; display: grid; gap: 8px; }
.site-footer__bottom { margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, .09); padding: 18px 0 26px; text-align: center; font-size: 13px; color: #8f9aab; }

/* ---------- Floating CTA (slot style) ---------- */
.float-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 990;
  width: min(520px, calc(100vw - 20px));
  pointer-events: none;
}
.float-cta__inner {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #1a2130 0%, #0b0e15 100%);
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 9px 12px 9px 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .12);
  overflow: hidden;
}
.float-cta__reel { display: flex; gap: 5px; flex: none; }
.reel-sym {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  font-size: 17px;
  background: linear-gradient(180deg, #2c3547, #141a26);
  border: 1px solid #3a4459;
  border-radius: 8px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .4);
}
.spin1 { animation: reelspin 2.6s ease-in-out infinite; }
.spin2 { animation: reelspin 2.6s ease-in-out .35s infinite; }
.spin3 { animation: reelspin 2.6s ease-in-out .7s infinite; }
@keyframes reelspin {
  0%, 18% { transform: translateY(0); filter: none; }
  38% { transform: translateY(-6px) scale(1.08); filter: brightness(1.4) drop-shadow(0 0 6px rgba(245, 179, 1, .8)); }
  60%, 100% { transform: translateY(0); filter: none; }
}
.float-cta__btns { display: flex; gap: 8px; flex: 1; min-width: 0; }
.fbtn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15.5px;
  letter-spacing: 1.5px;
  text-decoration: none !important;
  border: 0;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.fbtn--gold { background: linear-gradient(180deg, #ffe27a 0%, var(--gold) 60%, #d99800 100%); color: #3a2a00; box-shadow: 0 5px 16px rgba(245, 179, 1, .5), inset 0 1px 0 rgba(255, 255, 255, .7); }
.fbtn--red { background: linear-gradient(180deg, #ef4d64 0%, var(--red) 55%, var(--red-d) 100%); color: #fff; box-shadow: 0 5px 16px rgba(200, 16, 46, .55), inset 0 1px 0 rgba(255, 255, 255, .35); }
.fbtn:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); }
.coin {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe98f, var(--gold) 55%, #b8860b);
  box-shadow: 0 0 8px rgba(255, 213, 74, .8);
  opacity: 0;
  pointer-events: none;
}
.c1 { left: 18%; animation: coinup 2.4s ease-in .2s infinite; }
.c2 { left: 42%; animation: coinup 2.4s ease-in .8s infinite; width: 10px; height: 10px; }
.c3 { left: 66%; animation: coinup 2.4s ease-in 1.4s infinite; }
.c4 { left: 84%; animation: coinup 2.4s ease-in 1.9s infinite; width: 9px; height: 9px; }
@keyframes coinup {
  0% { transform: translateY(8px) scale(.6); opacity: 0; }
  22% { opacity: 1; }
  100% { transform: translateY(-46px) scale(1.15); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .spin1, .spin2, .spin3, .coin, .phone__float, .hcard { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Page-specific ---------- */
.static-page { padding: 46px 0 70px; }
.static-page h1 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; color: var(--ink); letter-spacing: -.4px; }
.static-page .prose > *:first-child { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav__list a { padding: 9px 9px; font-size: 13.8px; }
  .search__input { width: 140px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-row { grid-template-columns: repeat(2, 1fr); }
  .article__layout, .archive-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 26px; }
}

@media (max-width: 900px) {
  .topbar__date { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: #fff;
    z-index: 980;
    margin: 0;
    padding: 76px 22px 30px;
    box-shadow: -18px 0 40px rgba(12, 15, 22, .18);
    transform: translateX(105%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav__list a { padding: 12px 14px; font-size: 15.5px; border-radius: 12px; }
  .main-nav__extra { flex-direction: column; align-items: stretch; margin: 16px 0 0; }
  .main-nav__extra .btn { width: 100%; padding: 13px; }
  .search--mobile { display: block; }
  .search--desk { display: none; }
  .search--mobile .search__form { padding: 8px 6px 8px 16px; background: var(--soft); }
  .search--mobile .search__input { width: 100%; flex: 1; }
  .header-tools__login { display: none; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(12, 15, 22, .5); z-index: 970; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }
  .hero__inner { grid-template-columns: 1fr; padding: 52px 0 36px; }
  .hero__cards { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .mobile-wrap { grid-template-columns: 1fr; gap: 36px; }
  .read-strip { grid-template-columns: 1fr; }
  .nagacheck__grid { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .article__layout, .archive-layout { grid-template-columns: 1fr; }
  .article__side { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .topbar__note { font-size: 11.3px; }
  .steps { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { aspect-ratio: 4 / 4.2; }
  .cat-card__name { font-size: 16px; }
  .testi-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hcard { min-height: 108px; padding: 14px 12px; }
  .hcard--1, .hcard--2, .hcard--3, .hcard--4 { transform: none; }
  .nagacheck { padding: 24px 18px; }
  .cta-strip { padding: 30px 22px; }
  .cta-strip__btns { width: 100%; }
  .cta-strip__btns .btn { flex: 1; }
  .post-grid { grid-template-columns: 1fr; }
  .article__side { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .float-cta { bottom: 8px; width: calc(100vw - 16px); }
  .float-cta__inner { gap: 9px; padding: 8px 10px 8px 9px; }
  .reel-sym { width: 30px; height: 30px; font-size: 15px; }
  .fbtn { font-size: 14.5px; min-height: 42px; letter-spacing: 1px; }
  .crumbs ol { font-size: 12px; }
  .prose { font-size: 15.2px; }
  .prose h2 { margin-top: 30px; }
}

@media (max-width: 380px) {
  .brand__text { font-size: 20px; }
  .fbtn { font-size: 13.5px; }
  .float-cta__reel .reel-sym:nth-child(3) { display: none; }
}

@media print {
  .float-cta, .site-header, .topbar, .nav-overlay { display: none !important; }
}
