/* roulang page: index */
:root {
  --bg: #051f14;
  --bg-soft: #0b2e1e;
  --bg-deep: #03140d;
  --surface: rgba(11, 46, 30, 0.82);
  --surface-strong: #123c29;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --red: #dc2626;
  --cream: #fff8e7;
  --ink: #f8fafc;
  --mint: #d1fae5;
  --muted: #a8c7b5;
  --line: rgba(245, 158, 11, 0.27);
  --line-soft: rgba(209, 250, 229, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 14px 38px rgba(245, 158, 11, 0.22);
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 158, 11, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(220, 38, 38, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: #1a1200;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  color: #201400;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(3, 20, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 211, 77, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff3b0, var(--gold) 38%, #8a4a00 100%);
  color: #281600;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.32);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  content: "";
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #251700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
}

.btn-ghost {
  border-color: rgba(252, 211, 77, 0.56);
  background: rgba(5, 31, 20, 0.6);
  color: var(--gold-light);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(1px);
}

.btn-login {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
}

.btn-login:hover {
  background: rgba(245, 158, 11, 0.11);
}

.btn-signup {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.26);
  font-size: 0.84rem;
}

.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(3, 20, 13, 0.98);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--mint);
  font-weight: 750;
}

.mobile-nav a.active,
.mobile-nav a:hover {
  background: rgba(245, 158, 11, 0.09);
  color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 20, 13, 0.96) 0%, rgba(3, 20, 13, 0.83) 44%, rgba(3, 20, 13, 0.4) 76%, rgba(3, 20, 13, 0.7) 100%),
    linear-gradient(0deg, rgba(3, 20, 13, 0.92), rgba(3, 20, 13, 0.18) 52%, rgba(3, 20, 13, 0.62)),
    url('/assets/images/ba4686939f07c5a0.jpg') center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 211, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 211, 77, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(245, 158, 11, 0.025), 0 0 0 160px rgba(245, 158, 11, 0.018);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  gap: 48px;
  padding: 110px 0 86px;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(252, 211, 77, 0.46);
  border-radius: 999px;
  background: rgba(5, 31, 20, 0.7);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-brand {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.1vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-wrap: balance;
}

.hero-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: var(--mint);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(3, 20, 13, 0.52);
  color: #e8fff3;
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-play {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 54px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
}

.play-orb {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(252, 211, 77, 0.85);
  border-radius: 50%;
  background: rgba(3, 20, 13, 0.72);
  color: var(--gold-light);
  box-shadow: 0 0 0 10px rgba(245, 158, 11, 0.1), 0 16px 38px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.play-orb:hover {
  transform: scale(1.08);
  background: rgba(245, 158, 11, 0.18);
  box-shadow: 0 0 0 16px rgba(245, 158, 11, 0.12), 0 18px 44px rgba(0, 0, 0, 0.5);
}

.play-orb:active {
  transform: scale(0.96);
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(252, 211, 77, 0.2);
  background: rgba(3, 20, 13, 0.74);
  backdrop-filter: blur(14px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-right: 1px solid var(--line-soft);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat i {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.hero-stat strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.2;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.75rem;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-tight {
  padding: 68px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(3, 20, 13, 0.88), rgba(11, 46, 30, 0.6));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-gold {
  background:
    linear-gradient(120deg, rgba(245, 158, 11, 0.1), transparent 46%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 1rem;
  line-height: 1.72;
}

.section-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.28;
}

.countdown-band {
  padding: 28px 0;
  background: linear-gradient(90deg, #3a1b05, #7c3908 48%, #3a1b05);
  border-bottom: 1px solid rgba(252, 211, 77, 0.45);
}

.countdown-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.countdown-copy h2 {
  margin: 0;
  color: #fff7dc;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 950;
  line-height: 1.2;
}

.countdown-copy p {
  max-width: 690px;
  margin: 8px 0 0;
  color: #ffe8aa;
  font-size: 0.92rem;
}

.countdown-clock {
  display: grid;
  grid-template-columns: repeat(3, 86px);
  gap: 10px;
}

.time-unit {
  padding: 10px 8px;
  border: 1px solid rgba(255, 247, 220, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(23, 8, 0, 0.32);
  text-align: center;
}

.time-unit strong {
  display: block;
  color: #ffffff;
  font-size: 1.65rem;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  line-height: 1;
}

.time-unit span {
  display: block;
  margin-top: 6px;
  color: #ffe8aa;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.split-media {
  position: relative;
  min-height: 470px;
}

.media-frame {
  position: relative;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 20, 13, 0.86), transparent 55%);
  content: "";
}

.media-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(252, 211, 77, 0.42);
  color: #ffffff;
}

.media-caption strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.content-list {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.content-list-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.content-list-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
}

.content-list-item h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.content-list-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-item {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 31, 20, 0.48);
  transition: background 0.22s ease, transform 0.22s ease;
}

.benefit-item:hover {
  position: relative;
  z-index: 2;
  background: rgba(245, 158, 11, 0.09);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(252, 211, 77, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.15rem;
}

.benefit-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.3;
}

.benefit-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.performance-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metric-box {
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: rgba(3, 20, 13, 0.62);
}

.metric-box strong {
  display: block;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 950;
}

.metric-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.payout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: start;
}

.payout-steps {
  display: grid;
  gap: 14px;
}

.payout-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(3, 20, 13, 0.56);
}

.payout-step > span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  font-weight: 950;
}

.payout-step strong {
  color: #ffffff;
}

.payout-step small {
  color: var(--muted);
}

.payout-step .pay-time {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
}

.payment-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.payment-wall div {
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.09), rgba(5, 31, 20, 0.8));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: play-step;
}

.step {
  position: relative;
  padding-top: 74px;
  border-top: 1px solid var(--line);
  counter-increment: play-step;
}

.step::before {
  position: absolute;
  top: -25px;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--gold-light);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.16);
  content: counter(play-step, decimal-leading-zero);
  font-weight: 950;
}

.step h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.slot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 46, 30, 0.92), rgba(3, 20, 13, 0.96));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.slot-card:hover {
  border-color: rgba(252, 211, 77, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34), 0 0 30px rgba(245, 158, 11, 0.09);
  transform: translateY(-5px);
}

.slot-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--bg-deep);
}

.slot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slot-card:hover .slot-media img {
  transform: scale(1.04);
}

.slot-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slot-body {
  padding: 22px;
}

.slot-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
}

.slot-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.slot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line-soft);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
}

.slot-meta strong {
  color: var(--gold-light);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-large {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metric-large:last-child {
  border-right: 0;
}

.metric-large strong {
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 950;
  line-height: 1;
}

.metric-large span {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 900;
}

.metric-large small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(5, 31, 20, 0.64);
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.news-card:hover {
  border-color: var(--line);
  background: rgba(11, 46, 30, 0.88);
  transform: translateY(-4px);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
}

.news-card p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
}

.empty-news {
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 26px;
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(11, 46, 30, 0.72), rgba(5, 31, 20, 0.52));
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.testimonial-person img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.76rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.category-panel {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(245, 158, 11, 0.12), transparent 43%),
    rgba(5, 31, 20, 0.74);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.category-panel:hover {
  border-color: var(--gold-light);
  background:
    linear-gradient(160deg, rgba(245, 158, 11, 0.2), transparent 52%),
    rgba(11, 46, 30, 0.9);
  transform: translateY(-5px);
}

.category-panel::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 50%;
  content: "";
}

.category-index {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.category-panel h3 {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.2;
}

.category-panel p {
  position: relative;
  z-index: 2;
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-panel .category-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
}

.final-cta {
  overflow: hidden;
  border: 1px solid rgba(252, 211, 77, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(245, 158, 11, 0.18), rgba(220, 38, 38, 0.08) 42%, rgba(5, 31, 20, 0.92)),
    #071d13;
  box-shadow: var(--shadow);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: clamp(34px, 6vw, 68px);
}

.final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.final-cta p {
  margin: 18px 0 0;
  color: var(--mint);
  font-size: 1rem;
}

.final-benefits {
  display: grid;
  gap: 12px;
}

.final-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(3, 20, 13, 0.52);
  color: #ffffff;
  font-weight: 800;
}

.final-benefit i {
  color: var(--gold-light);
}

.site-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 20, 13, 0.4), rgba(2, 12, 8, 0.96)),
    var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: var(--mint);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-payments span {
  padding: 6px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: #86a996;
  font-size: 0.78rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-weight: 900;
}

.age-badge b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.fab-support {
  position: fixed;
  z-index: 50;
  left: 1rem;
  bottom: 6rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff1a8, var(--gold) 32%, #9a4e00 70%, #301700 100%);
  color: #2a1600;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.38);
  opacity: 0.86;
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
  animation: fabFloat 2.8s ease-in-out infinite;
}

.fab-support::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.72);
  content: "";
}

.fab-support:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.52);
  animation-play-state: paused;
}

.fab-support:hover i {
  transform: rotate(360deg);
}

.fab-support:active {
  transform: translateY(3px) scale(0.95);
}

.fab-support i {
  font-size: 1.22rem;
  transition: transform 0.55s ease;
}

@keyframes fabFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 150px;
  }

  .hero-play {
    right: 30px;
    bottom: 118px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 54px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-panel:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 76px;
    padding-bottom: 190px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.7rem);
  }

  .hero-play {
    right: 20px;
    bottom: 148px;
  }

  .play-orb {
    width: 64px;
    height: 64px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat {
    min-height: 76px;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-stat:nth-child(2) {
    border-right: 0;
  }

  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) {
    border-bottom: 0;
  }

  .countdown-inner,
  .split,
  .payout-layout,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .countdown-clock {
    justify-content: start;
  }

  .split-media,
  .media-frame,
  .media-frame img {
    min-height: 390px;
  }

  .reward-grid,
  .news-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-large:nth-child(2) {
    border-right: 0;
  }

  .metric-large:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-shell {
    gap: 8px;
  }

  .nav-actions {
    gap: 2px;
  }

  .btn-login {
    padding: 8px 5px;
    font-size: 0.75rem;
  }

  .btn-signup {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 0.76rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 850px;
    background-position: 62% center;
  }

  .hero-inner {
    padding-top: 58px;
    padding-bottom: 226px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: var(--radius-sm);
    font-size: 0.67rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-play {
    right: 18px;
    bottom: 178px;
  }

  .countdown-clock {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .time-unit strong {
    font-size: 1.35rem;
  }

  .benefit-grid,
  .reward-grid,
  .news-grid,
  .testimonial-grid,
  .category-grid,
  .metric-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-panel:first-child {
    grid-column: auto;
  }

  .metric-large {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-large:last-child {
    border-bottom: 0;
  }

  .payment-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .payout-step {
    grid-template-columns: 38px 1fr;
  }

  .payout-step .pay-time {
    grid-column: 2;
  }

  .split-media,
  .media-frame,
  .media-frame img {
    min-height: 310px;
  }

  .media-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .fab-support {
    left: 14px;
    bottom: 92px;
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* roulang page: article */
:root {
  --bg: #051f14;
  --bg-soft: #0b2e1e;
  --bg-deep: #03140d;
  --surface: rgba(11, 46, 30, 0.82);
  --surface-strong: #123c29;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --red: #dc2626;
  --cream: #fff8e7;
  --ink: #f8fafc;
  --mint: #d1fae5;
  --muted: #a8c7b5;
  --line: rgba(245, 158, 11, 0.27);
  --line-soft: rgba(209, 250, 229, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 14px 38px rgba(245, 158, 11, 0.22);
  --container: 1180px;
  --header-height: 68px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 158, 11, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(220, 38, 38, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0; right: 0; left: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(3, 20, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 211, 77, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff3b0, var(--gold) 38%, #8a4a00 100%);
  color: #281600;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.32);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
}
.desktop-nav a.active::after {
  position: absolute;
  right: 12px; bottom: 4px; left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  content: "";
}
.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #251700;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35);
}
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-ghost {
  border-color: rgba(252, 211, 77, 0.56);
  background: rgba(5, 31, 20, 0.6);
  color: var(--gold-light);
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(1px); }
.btn-login {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
}
.btn-login:hover { background: rgba(245, 158, 11, 0.11); }
.btn-signup {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.26);
  font-size: 0.84rem;
}
.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36);
}
.menu-toggle {
  width: 42px; height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(3, 20, 13, 0.98);
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--mint);
  font-weight: 750;
}
.mobile-nav a.active,
.mobile-nav a:hover {
  background: rgba(245, 158, 11, 0.09);
  color: var(--gold-light);
}
/* ===== article styles ===== */
.page-main { padding-top: calc(var(--header-height) + 28px); padding-bottom: 60px; }
.article-hero {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 20, 13, 0.94), rgba(3, 20, 13, 0.72)),
    url('/assets/images/53e484819580a866.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
}
.article-hero-inner {
  padding: 42px 40px 38px;
  max-width: 860px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}
.crumbs a { color: var(--gold-light); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span.sep { opacity: 0.5; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.09);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag-pill.red {
  border-color: rgba(220, 38, 38, 0.5);
  background: rgba(220, 38, 38, 0.14);
  color: #fca5a5;
}
.article-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--cream);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 700;
}
.article-meta i { color: var(--gold); margin-right: 6px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  margin-top: 34px;
  align-items: start;
}
.article-body {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.article-body h2 {
  margin: 34px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  font-size: 1.42rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.35;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  margin: 26px 0 10px;
  font-size: 1.12rem;
  font-weight: 850;
  color: var(--cream);
}
.article-body p {
  margin: 0 0 16px;
  color: #dcefe3;
  line-height: 1.75;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #dcefe3;
}
.article-body li { margin-bottom: 9px; line-height: 1.7; }
.article-body li::marker { color: var(--gold); font-weight: 900; }
.article-body strong { color: var(--gold-light); }
.article-body a { color: var(--gold-light); text-decoration: underline; }
.article-body img {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.article-body blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(220, 38, 38, 0.09);
  color: var(--cream);
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 0.92rem;
}
.article-body th,
.article-body td {
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  text-align: left;
}
.article-body th {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  font-weight: 850;
}
.article-body td { color: #dcefe3; }
.not-found {
  text-align: center;
  padding: 48px 24px;
}
.not-found i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }
.not-found h2 { border: 0; padding: 0; margin: 0 0 12px; }
.sidebar { display: grid; gap: 22px; position: sticky; top: calc(var(--header-height) + 20px); }
.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.side-card h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.side-card p { margin: 0 0 14px; color: var(--muted); font-size: 0.9rem; }
.side-list { display: grid; gap: 12px; }
.side-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.side-list a:hover {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  transform: translateX(4px);
}
.side-list i { color: var(--gold); width: 18px; text-align: center; }
.side-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.side-stat {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(3, 20, 13, 0.5);
  padding: 14px 12px;
  text-align: center;
}
.side-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
}
.side-stat span { font-size: 0.72rem; color: var(--muted); font-weight: 700; }
.side-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(245, 158, 11, 0.16), rgba(220, 38, 38, 0.1));
  padding: 24px 22px;
  text-align: center;
}
.side-cta h3 { color: var(--cream); margin-bottom: 10px; }
.side-cta p { color: var(--mint); }
.side-cta .btn { width: 100%; margin-top: 6px; }
.related-section { margin-top: 46px; }
.related-section > h2 {
  margin: 0 0 22px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
}
.related-section > h2 span { color: var(--gold-light); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.related-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.related-card img { width: 100%; height: 170px; object-fit: cover; }
.related-card-body { padding: 18px 18px 20px; }
.related-card-body h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 850;
  color: var(--cream);
  line-height: 1.4;
}
.related-card-body p { margin: 0 0 14px; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.related-card-body .tag-pill { font-size: 0.66rem; padding: 4px 10px; }
.article-cta {
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(3, 20, 13, 0.95), rgba(3, 20, 13, 0.7)),
    url('/assets/images/530772902fd80c9f.jpg') center / cover no-repeat;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.article-cta h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
}
.article-cta p { margin: 0 0 22px; color: var(--mint); max-width: 640px; line-height: 1.7; }
.article-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 54px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand p {
  margin: 16px 0 0;
  max-width: 380px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-column h3 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-payments span {
  padding: 6px 11px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.07);
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.8rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 0.8rem;
}
.age-badge b {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.72rem;
}
.fab-support {
  position: fixed;
  left: 16px;
  bottom: 96px;
  z-index: 50;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #3a2410, #120b04 70%);
  color: var(--gold-light);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
  font-size: 1.2rem;
  opacity: 0.85;
  animation: fabFloat 3.2s ease-in-out infinite;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.fab-support:hover { transform: scale(1.1); opacity: 1; }
.fab-support:active { transform: scale(0.95) translateY(3px); }
.fab-support i { transition: transform 0.5s ease; }
.fab-support:hover i { transform: rotate(360deg); }
.fab-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--bg-deep);
}
@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .nav-actions .btn-login { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .article-hero-inner { padding: 32px 24px 30px; }
  .article-body { padding: 26px 20px; }
  .article-cta { padding: 30px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .brand-copy strong { font-size: 0.86rem; }
  .brand-copy small { font-size: 0.58rem; }
  .article-hero h1 { font-size: 1.5rem; }
  .article-meta { gap: 12px; font-size: 0.78rem; }
  .nav-actions .btn-signup { min-height: 38px; padding: 7px 11px; font-size: 0.78rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .article-cta .cta-actions { flex-direction: column; }
  .article-cta .cta-actions .btn { width: 100%; }
  .fab-support { width: 50px; height: 50px; left: 12px; bottom: 84px; }
}

/* roulang page: category1 */
:root {
  --bg: #051f14;
  --bg-soft: #0b2e1e;
  --bg-deep: #03140d;
  --surface: rgba(11, 46, 30, 0.82);
  --surface-strong: #123c29;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --red: #dc2626;
  --cream: #fff8e7;
  --ink: #f8fafc;
  --mint: #d1fae5;
  --muted: #a8c7b5;
  --line: rgba(245, 158, 11, 0.27);
  --line-soft: rgba(209, 250, 229, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 14px 38px rgba(245, 158, 11, 0.22);
  --container: 1180px;
  --header-height: 68px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 158, 11, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(220, 38, 38, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; z-index: 100; top: 0; right: 0; left: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(3, 20, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; flex-shrink: 0; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(252, 211, 77, 0.7); border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff3b0, var(--gold) 38%, #8a4a00 100%);
  color: #281600; box-shadow: 0 0 24px rgba(245, 158, 11, 0.32);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--gold-light); font-size: 1rem; font-weight: 900; }
.brand-copy small { margin-top: 5px; color: var(--mint); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.desktop-nav { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 4px; margin-left: auto; }
.desktop-nav a {
  position: relative; padding: 11px 11px; border-radius: var(--radius-sm);
  color: var(--mint); font-size: 0.85rem; font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { background: rgba(245, 158, 11, 0.1); color: var(--gold-light); }
.desktop-nav a.active::after {
  position: absolute; right: 11px; bottom: 4px; left: 11px; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); content: "";
}
.nav-actions { display: flex; flex-shrink: 0; align-items: center; gap: 9px; }
.btn {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 18px; border: 1px solid transparent; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 850; line-height: 1.15; text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #251700; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35); }
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-ghost { border-color: rgba(252, 211, 77, 0.56); background: rgba(5, 31, 20, 0.6); color: var(--gold-light); }
.btn-ghost:hover { border-color: var(--gold-light); background: rgba(245, 158, 11, 0.12); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(1px); }
.btn-login { min-height: 40px; padding: 8px 10px; color: var(--gold-light); font-size: 0.82rem; }
.btn-login:hover { background: rgba(245, 158, 11, 0.11); }
.btn-signup {
  min-height: 42px; padding: 9px 14px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #241500;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.26); font-size: 0.84rem;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36); }
.menu-toggle {
  width: 42px; height: 42px; display: none; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08); color: var(--gold-light);
}
.mobile-nav { display: none; border-top: 1px solid var(--line-soft); background: rgba(3, 20, 13, 0.98); }
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 15px 20px; border-bottom: 1px solid var(--line-soft); color: var(--mint); font-weight: 750; }
.mobile-nav a.active, .mobile-nav a:hover { background: rgba(245, 158, 11, 0.09); color: var(--gold-light); }

/* Generic section */
main { position: relative; }
.section { padding: 92px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(3, 20, 13, 0.55), rgba(11, 46, 30, 0.42)); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(245, 158, 11, 0.08); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.section-head h2 { margin: 16px 0 12px; font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 850; }
.section-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.gold-text { background: linear-gradient(120deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Page hero (category) */
.page-hero {
  position: relative; margin-top: var(--header-height); padding: 96px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 20, 13, 0.96) 0%, rgba(3, 20, 13, 0.82) 46%, rgba(3, 20, 13, 0.5) 100%),
    linear-gradient(0deg, rgba(3, 20, 13, 0.94), rgba(3, 20, 13, 0.35) 60%, rgba(3, 20, 13, 0.72)),
    url('/assets/images/ba4686939f07c5a0.jpg') center / cover no-repeat;
}
.page-hero::before {
  position: absolute; inset: 0; pointer-events: none; content: "";
  background-image:
    linear-gradient(rgba(252, 211, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 211, 77, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-stack { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 26px; align-items: start; }
.hero-main-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 60, 41, 0.92), rgba(3, 20, 13, 0.92));
  padding: 38px 34px; box-shadow: var(--shadow);
}
.hero-main-card h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 900; margin: 18px 0 16px; }
.hero-main-card h1 span { display: inline; }
.hero-main-card .lead { color: var(--mint); font-size: 1.06rem; line-height: 1.72; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border: 1px solid var(--line-soft); border-radius: 999px;
  background: rgba(5, 31, 20, 0.65); color: var(--mint);
  font-size: 0.78rem; font-weight: 700;
}
.tag i { color: var(--gold-light); }
.hero-side { display: grid; gap: 18px; }
.side-card {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--surface); padding: 22px 22px 20px; box-shadow: var(--shadow);
}
.side-card h3 { font-size: 1.05rem; font-weight: 850; margin-bottom: 8px; }
.side-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.side-card .stat { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.side-card .stat b { font-size: 1.9rem; font-weight: 900; color: var(--gold-light); }
.side-card .stat span { color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.divider { height: 1px; width: 100%; background: var(--line-soft); margin: 14px 0; }

/* Pain / Value cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-card {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--surface); padding: 26px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.info-card .icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1); color: var(--gold-light); font-size: 1.1rem;
}
.info-card h3 { font-size: 1.12rem; font-weight: 850; margin-bottom: 9px; }
.info-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.68; }

/* Step timeline */
.steps { display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(11, 46, 30, 0.7), rgba(3, 20, 13, 0.75));
  padding: 24px 24px 24px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.step:hover { border-color: var(--line); transform: translateX(4px); }
.step .num {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(252, 211, 77, 0.5);
  background: radial-gradient(circle at 32% 26%, rgba(252, 211, 77, 0.28), rgba(245, 158, 11, 0.1));
  color: var(--gold-light); font-weight: 900; font-size: 1.1rem;
}
.step h3 { font-size: 1.1rem; font-weight: 850; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.94rem; line-height: 1.66; }

/* Rewards table */
.reward-table { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.reward-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 0; }
.reward-row > div { padding: 16px 20px; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.reward-row.head > div { background: rgba(245, 158, 11, 0.1); color: var(--gold-light); font-weight: 850; text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.1em; }
.reward-row:last-child > div { border-bottom: 0; }
.reward-row .muted { color: var(--muted); }
.reward-row b { color: var(--gold-light); }

/* Feature list */
.check-list { display: grid; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--mint); font-size: 0.96rem; line-height: 1.6;
}
.check-list i { color: var(--gold-light); margin-top: 4px; font-size: 0.9rem; }

/* Testimonials */
.quote {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--surface); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.quote p { color: var(--mint); font-size: 0.96rem; line-height: 1.7; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 32% 26%, var(--gold-light), var(--gold));
  color: #241500; font-weight: 900; font-size: 0.9rem;
}
.quote .who b { display: block; font-size: 0.92rem; }
.quote .who span { color: var(--muted); font-size: 0.8rem; }

/* Audience */
.audience-card {
  border-left: 3px solid var(--gold);
  background: rgba(11, 46, 30, 0.6);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.audience-card h4 { font-size: 1rem; font-weight: 850; margin-bottom: 6px; }
.audience-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.62; }

/* News list */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.news-media { aspect-ratio: 16 / 10; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-body .meta { display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.news-body h3 { font-size: 1.04rem; font-weight: 850; line-height: 1.4; }
.news-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.62; flex: 1; }
.news-body .read { color: var(--gold-light); font-size: 0.85rem; font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }
.news-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 850; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold-light); transition: transform 0.25s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* CTA */
.cta-band {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(18, 60, 41, 0.95), rgba(3, 20, 13, 0.95));
  padding: 48px 42px; text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; margin-bottom: 14px; }
.cta-band p { color: var(--mint); max-width: 660px; margin: 0 auto 26px; font-size: 1rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(3, 20, 13, 0.96), #02100a); padding: 62px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr; gap: 36px; }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 0.9rem; line-height: 1.7; max-width: 380px; }
.footer-column h3 { font-size: 0.82rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: var(--muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-payments span {
  padding: 7px 12px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  background: rgba(11, 46, 30, 0.6); color: var(--mint); font-size: 0.8rem; font-weight: 700;
}
.footer-bottom {
  margin-top: 46px; padding: 22px 0; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 0.82rem;
}
.age-badge { display: inline-flex; align-items: center; gap: 8px; }
.age-badge b {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 0.76rem;
}

/* FAB */
.fab {
  position: fixed; left: 16px; bottom: 96px; z-index: 50;
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 32% 26%, #3a1f00, #1a0f00 70%);
  color: var(--gold-light); font-size: 1.15rem; opacity: 0.85;
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
  animation: fabFloat 3.2s ease-in-out infinite;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fab:hover { opacity: 1; transform: scale(1.1); }
.fab:hover i { animation: fabSpin 0.7s ease; }
.fab:active { transform: translateY(3px) scale(0.95); }
.fab .badge {
  position: absolute; top: 2px; right: 2px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--red); box-shadow: 0 0 0 2px #fff;
}
@keyframes fabFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes fabSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-stack { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 46px 1fr; padding: 20px; }
  .reward-row { grid-template-columns: 1.2fr 1fr 1fr; font-size: 0.86rem; }
  .reward-row > div { padding: 13px 14px; }
  .cta-band { padding: 36px 24px; }
}
@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .grid-4 { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-main-card { padding: 28px 22px; }
  .brand-copy small { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* roulang page: category3 */
:root {
  --bg: #051f14;
  --bg-soft: #0b2e1e;
  --bg-deep: #03140d;
  --surface: rgba(11, 46, 30, 0.82);
  --surface-strong: #123c29;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --red: #dc2626;
  --cream: #fff8e7;
  --ink: #f8fafc;
  --mint: #d1fae5;
  --muted: #a8c7b5;
  --line: rgba(245, 158, 11, 0.27);
  --line-soft: rgba(209, 250, 229, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 14px 38px rgba(245, 158, 11, 0.22);
  --container: 1180px;
  --header-height: 76px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 158, 11, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(220, 38, 38, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(3, 20, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 211, 77, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff3b0, var(--gold) 38%, #8a4a00 100%);
  color: #281600;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.32);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--gold-light); font-size: 1rem; font-weight: 900; }
.brand-copy small {
  margin-top: 5px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
}
.desktop-nav a.active::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  content: "";
}
.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #251700;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35); }
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-ghost {
  border-color: rgba(252, 211, 77, 0.56);
  background: rgba(5, 31, 20, 0.6);
  color: var(--gold-light);
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(1px); }
.btn-login {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
}
.btn-login:hover { background: rgba(245, 158, 11, 0.11); }
.btn-signup {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.26);
  font-size: 0.84rem;
}
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36); }
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(3, 20, 13, 0.98);
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--mint);
  font-weight: 750;
}
.mobile-nav a.active,
.mobile-nav a:hover { background: rgba(245, 158, 11, 0.09); color: var(--gold-light); }

/* ===== Category hero ===== */
.cat-hero {
  position: relative;
  margin-top: var(--header-height);
  padding: 84px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 20, 13, 0.97) 0%, rgba(3, 20, 13, 0.85) 46%, rgba(3, 20, 13, 0.52) 100%),
    linear-gradient(0deg, rgba(3, 20, 13, 0.94), rgba(3, 20, 13, 0.35) 60%, rgba(3, 20, 13, 0.75)),
    url('/assets/images/53e484819580a866.jpg') center / cover no-repeat;
}
.cat-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 211, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 211, 77, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  content: "";
  pointer-events: none;
}
.cat-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; color: var(--gold); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-title {
  margin: 20px 0 18px;
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 950;
}
.hero-title span {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 62%, #ff7a18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 620px;
  color: var(--mint);
  font-size: 1.04rem;
  line-height: 1.7;
}
.hero-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.hero-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--cream);
  font-size: 0.96rem;
}
.hero-list i {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.95rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
/* countdown panel */
.countdown-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(18, 60, 41, 0.94), rgba(3, 20, 13, 0.94));
  box-shadow: var(--shadow);
}
.countdown-panel h3 {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 850;
}
.countdown-panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}
.ring-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin: 26px auto 18px;
  width: 210px;
  height: 210px;
}
.ring-wrap svg { transform: rotate(-90deg); }
.ring-track { stroke: rgba(252, 211, 77, 0.14); }
.ring-bar {
  stroke: url(#goldgrad);
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 141;
  transition: stroke-dashoffset 1s linear;
}
.ring-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring-core b {
  display: block;
  color: var(--gold-light);
  font-size: 2.05rem;
  font-weight: 950;
  line-height: 1;
}
.ring-core small {
  display: block;
  margin-top: 6px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.countdown-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.cd-cell {
  padding: 12px 8px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(5, 31, 20, 0.74);
  text-align: center;
}
.cd-cell b { display: block; color: var(--gold-light); font-size: 1.25rem; font-weight: 950; }
.cd-cell span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-soft);
  color: var(--muted);
  font-size: 0.82rem;
}

/* ===== Generic section ===== */
.section { padding: 78px 0; }
.section-soft { background: linear-gradient(180deg, rgba(3, 20, 13, 0.72), rgba(11, 46, 30, 0.52)); }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 14px 0 14px;
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
}
.section-head p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ===== Pain section (asymmetric) ===== */
.pain-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.pain-list { display: grid; gap: 16px; }
.pain-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-left: 3px solid rgba(220, 38, 38, 0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(220, 38, 38, 0.07);
}
.pain-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.16);
  color: #fca5a5;
  font-size: 1.05rem;
}
.pain-item h3 { color: var(--cream); font-size: 1.02rem; font-weight: 850; margin-bottom: 6px; }
.pain-item p { color: var(--muted); font-size: 0.9rem; }
.solution-box {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 60, 41, 0.9), rgba(5, 31, 20, 0.92));
  box-shadow: var(--shadow);
}
.solution-box h3 { color: var(--gold-light); font-size: 1.25rem; font-weight: 900; }
.solution-box > p { margin-top: 12px; color: var(--mint); font-size: 0.94rem; }
.solution-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.metric-cell {
  padding: 14px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(3, 20, 13, 0.6);
  text-align: center;
}
.metric-cell b { display: block; color: var(--gold-light); font-size: 1.35rem; font-weight: 950; }
.metric-cell span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.check-rows { display: grid; gap: 10px; margin-top: 22px; }
.check-rows li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--cream);
  font-size: 0.9rem;
}
.check-rows i { margin-top: 4px; color: var(--gold-light); }

/* ===== Steps flow ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-gold);
}
.step-index {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  font-size: 0.95rem;
  font-weight: 950;
}
.step-card h3 { margin: 16px 0 8px; color: var(--cream); font-size: 1rem; font-weight: 850; }
.step-card p { color: var(--muted); font-size: 0.88rem; }

/* ===== Feature cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.62);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.feature-card figure { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-card:hover img { transform: scale(1.06); }
.feature-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.feature-body { padding: 22px; display: grid; gap: 10px; }
.feature-body h3 { color: var(--cream); font-size: 1.05rem; font-weight: 850; }
.feature-body p { color: var(--muted); font-size: 0.88rem; }
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
}
.chip i { color: var(--gold-light); font-size: 0.7rem; }

/* ===== Audience / scenario ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  padding: 24px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.55);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.audience-card:hover { border-color: var(--line); transform: translateY(-3px); }
.audience-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.13);
  color: var(--gold-light);
  font-size: 1.15rem;
}
.audience-card h3 { margin: 16px 0 8px; color: var(--cream); font-size: 1rem; font-weight: 850; }
.audience-card p { color: var(--muted); font-size: 0.87rem; }

/* ===== Proof / testimonials ===== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  padding: 26px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 60, 41, 0.62), rgba(3, 20, 13, 0.62));
}
.proof-stars { display: flex; gap: 4px; color: var(--gold-light); font-size: 0.82rem; }
.proof-card blockquote {
  margin: 16px 0 18px;
  color: var(--cream);
  font-size: 0.94rem;
  line-height: 1.68;
}
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  font-weight: 950;
}
.proof-author b { display: block; color: var(--gold-light); font-size: 0.9rem; }
.proof-author span { color: var(--muted); font-size: 0.76rem; }

/* ===== Data strip ===== */
.data-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--line-soft);
}
.data-cell {
  padding: 30px 20px;
  background: rgba(5, 31, 20, 0.92);
  text-align: center;
}
.data-cell b {
  display: block;
  color: var(--gold-light);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
}
.data-cell span {
  display: block;
  margin-top: 10px;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== Category entries ===== */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.entry-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.entry-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-gold);
}
.entry-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.13);
  color: var(--gold-light);
  font-size: 1.15rem;
}
.entry-card h3 { color: var(--cream); font-size: 1.08rem; font-weight: 850; }
.entry-card p { color: var(--muted); font-size: 0.88rem; }
.entry-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 850;
}
.entry-link i { width: auto; height: auto; background: none; font-size: 0.8rem; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 14px; max-width: 880px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.58);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--cream);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold-light); transition: transform 0.25s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item summary:hover { background: rgba(245, 158, 11, 0.06); }

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 20, 13, 0.96), rgba(18, 60, 41, 0.88)),
    url('/assets/images/07b60f16f203f8bb.jpg') center / cover no-repeat;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.final-cta h2 {
  margin: 16px 0 14px;
  color: var(--cream);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 950;
}
.final-cta p { color: var(--mint); font-size: 1rem; }
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

/* ===== News list ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.news-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover img { transform: scale(1.05); }
.news-body { padding: 20px 22px 24px; display: grid; gap: 10px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 0.74rem; font-weight: 700; }
.news-meta span { display: inline-flex; align-items: center; gap: 6px; }
.news-meta i { color: var(--gold-light); }
.news-body h3 { color: var(--cream); font-size: 1.02rem; font-weight: 850; }
.news-body h3 a:hover { color: var(--gold-light); }
.news-body p { color: var(--muted); font-size: 0.87rem; }
.news-more { display: flex; justify-content: center; margin-top: 38px; }
.empty-note {
  grid-column: 1 / -1;
  padding: 40px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(3, 20, 13, 0.96), rgba(5, 31, 20, 0.98));
  padding: 62px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 0.87rem; max-width: 380px; }
.footer-column h3 {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: var(--muted); font-size: 0.87rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-light); }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-payments span {
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}
.age-badge { display: inline-flex; gap: 9px; align-items: center; }
.age-badge b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 950;
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  z-index: 50;
  left: 16px;
  bottom: 96px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #123c29, #051f14 70%);
  color: var(--gold-light);
  font-size: 1.25rem;
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
  opacity: 0.85;
  animation: fabFloat 3.6s ease-in-out infinite;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.fab:hover { opacity: 1; transform: scale(1.1); box-shadow: 0 10px 34px rgba(245, 158, 11, 0.5); }
.fab:hover i { animation: fabSpin 0.7s ease; }
.fab:active { transform: scale(0.94) translateY(3px); }
.fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px #ffffff;
}
@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes fabSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .nav-actions { margin-left: auto; }
  .cat-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .entry-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .data-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  :root { --header-height: 68px; }
  .brand-copy small { display: none; }
  .hero-title { margin-top: 16px; }
  .section { padding: 62px 0; }
  .cat-hero { padding: 62px 0 54px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .entry-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .data-strip { grid-template-columns: 1fr 1fr; }
  .solution-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .nav-actions { gap: 6px; }
  .btn-login { padding: 6px 6px; font-size: 0.76rem; }
  .btn-signup { padding: 8px 10px; font-size: 0.78rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .audience-grid { grid-template-columns: 1fr; }
  .countdown-slots { grid-template-columns: repeat(3, 1fr); }
  .solution-metrics { grid-template-columns: 1fr; }
  .data-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }
}

/* roulang page: category2 */
:root {
  --bg: #051f14;
  --bg-soft: #0b2e1e;
  --bg-deep: #03140d;
  --surface: rgba(11, 46, 30, 0.82);
  --surface-strong: #123c29;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --red: #dc2626;
  --cream: #fff8e7;
  --ink: #f8fafc;
  --mint: #d1fae5;
  --muted: #a8c7b5;
  --line: rgba(245, 158, 11, 0.27);
  --line-soft: rgba(209, 250, 229, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  --shadow-gold: 0 14px 38px rgba(245, 158, 11, 0.22);
  --container: 1180px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(245, 158, 11, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(220, 38, 38, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 4px; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(3, 20, 13, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(252, 211, 77, 0.7);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 24%, #fff3b0, var(--gold) 38%, #8a4a00 100%);
  color: #281600;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.32);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--mint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
}
.desktop-nav a.active::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  content: "";
}
.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #251700;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.35);
}
.btn-primary:active { transform: translateY(1px) scale(0.98); }
.btn-ghost {
  border-color: rgba(252, 211, 77, 0.56);
  background: rgba(5, 31, 20, 0.6);
  color: var(--gold-light);
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(1px); }
.btn-login {
  min-height: 40px;
  padding: 8px 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
}
.btn-login:hover { background: rgba(245, 158, 11, 0.11); }
.btn-signup {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.26);
  font-size: 0.84rem;
}
.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.36);
}
.btn-block { width: 100%; }
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-light);
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(3, 20, 13, 0.98);
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--mint);
  font-weight: 750;
}
.mobile-nav a.active,
.mobile-nav a:hover {
  background: rgba(245, 158, 11, 0.09);
  color: var(--gold-light);
}

/* ============ HERO ============ */
.cat-hero {
  position: relative;
  margin-top: var(--header-height);
  padding: 78px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(94deg, rgba(3, 20, 13, 0.97) 0%, rgba(3, 20, 13, 0.88) 48%, rgba(3, 20, 13, 0.62) 100%),
    linear-gradient(0deg, rgba(3, 20, 13, 0.95), rgba(3, 20, 13, 0.25) 60%, rgba(3, 20, 13, 0.6)),
    url('/assets/images/53e484819580a866.jpg') center / cover no-repeat;
}
.cat-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 211, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 211, 77, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  content: "";
  pointer-events: none;
}
.cat-hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-grid h1 {
  margin: 20px 0 18px;
  max-width: 20ch;
  font-size: clamp(2.05rem, 4.2vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero-sub {
  max-width: 60ch;
  color: var(--mint);
  font-size: 1.02rem;
  line-height: 1.7;
}
.hero-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 650;
}
.hero-points li i {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.8rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* payout panel */
.payout-panel {
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(18, 60, 41, 0.94), rgba(3, 20, 13, 0.94));
  box-shadow: var(--shadow);
}
.payout-panel::after {
  position: absolute;
  top: -1px;
  right: 26px;
  left: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
}
.panel-ring {
  --p: 0;
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: conic-gradient(var(--gold-light) calc(var(--p) * 1%), rgba(209, 250, 229, 0.1) 0);
  box-shadow: 0 0 34px rgba(245, 158, 11, 0.22);
}
.panel-ring::before {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #123c29, #03140d 78%);
  content: "";
}
.panel-ring span,
.panel-ring small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.panel-ring span {
  color: var(--gold-light);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}
.panel-ring small {
  margin-top: 2px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.panel-title {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 850;
  text-align: center;
}
.panel-text {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}
.panel-rows {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line-soft);
}
.panel-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.panel-rows span { color: var(--muted); font-size: 0.85rem; }
.panel-rows b { color: var(--gold-light); font-size: 0.9rem; font-weight: 850; }

/* ============ SECTIONS ============ */
.section { position: relative; padding: 78px 0; }
.section--soft {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(11, 46, 30, 0.6), rgba(3, 20, 13, 0.2));
}
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head--tight { margin-bottom: 26px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.9vw, 2.2rem);
  font-weight: 900;
}
.section-head p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* pain list */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.55);
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.pain-item:hover {
  transform: translateX(3px);
  border-left-color: var(--gold);
  background: rgba(18, 60, 41, 0.75);
}
.pain-item i {
  margin-top: 4px;
  color: #f87171;
  font-size: 0.95rem;
}
.pain-item p { color: var(--mint); font-size: 0.93rem; line-height: 1.6; }

/* solution cards */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.solution-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(18, 60, 41, 0.85), rgba(5, 31, 20, 0.9));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.solution-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(252, 211, 77, 0.55);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
  font-size: 1.1rem;
}
.solution-card h3 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 850;
}
.solution-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.68);
  transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(18, 60, 41, 0.7);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  font-size: 0.95rem;
  font-weight: 900;
}
.step h3 {
  margin-bottom: 9px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 850;
}
.step p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* media banner */
.media-banner {
  position: relative;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.media-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.media-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 28px;
  background: linear-gradient(0deg, rgba(3, 20, 13, 0.95), rgba(3, 20, 13, 0.15));
}
.media-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 900;
}
.media-caption span { color: var(--mint); font-size: 0.9rem; }

/* stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat {
  padding: 24px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.6);
  text-align: left;
}
.stat b {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.1;
}
.stat span { color: var(--muted); font-size: 0.86rem; }

/* tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.6);
}
table.limit-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
table.limit-table th,
table.limit-table td {
  padding: 15px 18px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}
table.limit-table th {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table.limit-table td { color: var(--mint); }
table.limit-table tbody tr:hover td { background: rgba(245, 158, 11, 0.05); }
table.limit-table tbody tr:last-child td { border-bottom: 0; }
table.limit-table td strong { color: var(--cream); font-weight: 800; }

/* compare */
.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compare-col {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.62);
  overflow: hidden;
}
.compare-col.is-good {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(170deg, rgba(18, 60, 41, 0.9), rgba(3, 20, 13, 0.85));
  box-shadow: var(--shadow-gold);
}
.compare-col h3 {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.02rem;
  font-weight: 850;
  color: var(--cream);
}
.compare-col.is-good h3 {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold-light);
}
.compare-col ul { padding: 8px 0; }
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.compare-col li i { margin-top: 5px; font-size: 0.8rem; }
.compare-col.is-bad li i { color: #f87171; }
.compare-col.is-good li { color: var(--mint); }
.compare-col.is-good li i { color: var(--gold-light); }

/* quotes */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.6);
  transition: border-color 0.24s ease, transform 0.24s ease;
}
.quote:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}
.quote-stars { color: var(--gold-light); font-size: 0.82rem; letter-spacing: 2px; }
.quote p { color: var(--mint); font-size: 0.93rem; line-height: 1.68; }
.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.quote-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241500;
  font-weight: 900;
  font-size: 0.9rem;
}
.quote-author strong { display: block; color: var(--cream); font-size: 0.9rem; font-weight: 850; }
.quote-author span { color: var(--muted); font-size: 0.78rem; }

/* audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(3, 20, 13, 0.6);
  transition: border-color 0.24s ease, background 0.24s ease;
}
.audience-card:hover {
  border-color: var(--line);
  background: rgba(18, 60, 41, 0.65);
}
.audience-card i {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 1.15rem;
}
.audience-card h3 {
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 850;
}
.audience-card p { color: var(--muted); font-size: 0.89rem; line-height: 1.62; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(11, 46, 30, 0.55);
  overflow: hidden;
  transition: border-color 0.22s ease;
}
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--cream);
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  flex-shrink: 0;
  color: var(--gold-light);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78rem;
  content: "\f067";
  transition: transform 0.26s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 54px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(3, 20, 13, 0.94), rgba(220, 38, 38, 0.24)),
    url('/assets/images/00937dd8eb2a7fad.jpg') center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta-band::before {
  position: absolute;
  top: -40%;
  right: -12%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(252, 211, 77, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.cta-band h2 {
  position: relative;
  margin-bottom: 14px;
  max-width: 26ch;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
}
.cta-band p {
  position: relative;
  max-width: 62ch;
  margin-bottom: 28px;
  color: var(--mint);
  font-size: 0.98rem;
  line-height: 1.7;
}
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; }

/* FAB */
.fab {
  position: fixed;
  left: 16px;
  bottom: 96px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #fff3b0, var(--gold) 40%, #7c3f00 100%);
  color: #2a1700;
  font-size: 1.15rem;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
  opacity: 0.88;
  transition: transform 0.24s ease, opacity 0.24s ease, box-shadow 0.24s ease;
  animation: fabFloat 3.4s ease-in-out infinite;
}
.fab:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 12px 34px rgba(245, 158, 11, 0.55);
}
.fab:active { transform: scale(0.94) translateY(3px); }
.fab::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  content: "";
}
@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* FOOTER */
.site-footer {
  margin-top: 20px;
  padding: 62px 0 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(3, 20, 13, 0.7), rgba(3, 20, 13, 0.98));
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand p {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.68;
}
.footer-column h3 {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a,
.footer-links span {
  color: var(--mint);
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-payments span {
  padding: 7px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.06);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  color: var(--mint);
  font-size: 0.8rem;
}
.age-badge b { color: var(--gold-light); font-weight: 900; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .desktop-nav a { padding: 10px 9px; font-size: 0.82rem; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid h1 { max-width: none; }
  .payout-panel { max-width: 520px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  :root { --header-height: 68px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .nav-actions { margin-left: auto; }
  .btn-login, .btn-signup { padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .cat-hero { padding: 56px 0 62px; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 28px; }
  .pain-grid,
  .solution-grid,
  .compare,
  .audience-grid { grid-template-columns: 1fr; }
  .media-banner img { height: 240px; }
  .media-caption { position: static; padding: 20px 22px; background: rgba(3, 20, 13, 0.92); }
  .cta-band { padding: 38px 26px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 520px) {
  body { font-size: 15.5px; }
  .nav-shell { gap: 12px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 0.9rem; }
  .btn-login { display: none; }
  .btn-signup { min-height: 38px; padding: 8px 11px; font-size: 0.76rem; }
  .hero-cta .btn { width: 100%; }
  .steps,
  .stat-grid { grid-template-columns: 1fr; }
  .panel-rows div { flex-direction: column; align-items: flex-start; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fab { left: 12px; bottom: 84px; width: 52px; height: 52px; }
  .cta-actions .btn { width: 100%; }
}
