@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --pt-ink: #e8eef5;
  --pt-muted: #9aaab9;
  --pt-deep: #0b0f14;
  --pt-surface: #121a24;
  --pt-panel: rgba(18, 26, 36, 0.94);
  --pt-accent: #d4a24a;
  --pt-accent-dim: #9a7430;
  --pt-line: rgba(212, 162, 74, 0.28);
  --pt-glow: rgba(212, 162, 74, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--pt-ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(212, 162, 74, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(138, 180, 214, 0.06), transparent 50%),
    linear-gradient(165deg, var(--pt-deep) 0%, #141c28 45%, #0f1520 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body.bd_lck {
  overflow: hidden;
}

.is_hidden {
  display: none !important;
}

.is_open {
  display: block !important;
}

.ui_bg9q {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.ui_ac1x {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--pt-accent), transparent);
  opacity: 0.65;
}

/* —— Nav —— */
.nv_x3k9m {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pt-line);
}

.nv_in8p {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nv_br9w {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--pt-ink);
  text-decoration: none;
}

.nv_br9w span {
  color: var(--pt-accent);
}

.nv_ld4s {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nv_ld4s a {
  color: var(--pt-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nv_ld4s a:hover {
  color: var(--pt-accent);
}

.nv_bg8t {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--pt-line);
  border-radius: 8px;
  background: var(--pt-panel);
  cursor: pointer;
}

.nv_bg8t span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pt-accent);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nv_bg8t.nv_mopen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nv_bg8t.nv_mopen span:nth-child(2) {
  opacity: 0;
}

.nv_bg8t.nv_mopen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nv_pn2r {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(11, 15, 20, 0.97);
  border-bottom: 1px solid var(--pt-line);
  padding: 0.75rem 1.25rem 1rem;
}

.nv_pn2r.is_open {
  display: block;
}

.nv_pn2r a {
  display: block;
  padding: 0.65rem 0;
  color: var(--pt-ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nv_pn2r a:last-child {
  border-bottom: 0;
}

@media (max-width: 768px) {
  .nv_ld4s {
    display: none;
  }
  .nv_bg8t {
    display: flex;
  }
}

/* —— Hero compact —— */
.hr_cp9m {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  text-align: left;
}

.hr_cp9m .hr_ttl {
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pt-ink);
  margin-bottom: 0.45rem;
}

.hr_cp9m .hr_sb9t {
  font-size: 0.95rem;
  color: var(--pt-muted);
  max-width: 52rem;
  line-height: 1.5;
}

/* —— Main —— */
.mn_x8k2 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.into_st9w {
  background: var(--pt-panel);
  border: 1px solid var(--pt-line);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.into_st9w h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pt-accent);
  margin-bottom: 0.65rem;
}

.into_st9w p {
  color: var(--pt-muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.into_st9w p:last-child {
  margin-bottom: 0;
}

.sc_of7p {
  margin-top: 0.5rem;
}

.of_cr5m {
  background: var(--pt-panel);
  border: 1px solid var(--pt-line);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.of_rw3t {
  display: grid;
  grid-template-columns: 52px 108px 1fr minmax(88px, 110px) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.of_rw3t:hover {
  background: rgba(212, 162, 74, 0.04);
}

.of_rk9x {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pt-accent);
  text-align: center;
}

.of_lg4n {
  width: 100%;
  max-width: 104px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--pt-line);
  background: #fff;
  object-fit: contain;
  padding: 6px;
}

.of_tx2h .of_tl7w {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--pt-ink);
  margin-bottom: 0.2rem;
}

.of_tx2h .of_sl3v {
  display: block;
  font-size: 0.82rem;
  color: var(--pt-muted);
  margin-top: 0.15rem;
}

.of_bdg9 {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pt-accent);
  border: 1px solid var(--pt-line);
  border-radius: 8px;
  padding: 0.45rem 0.35rem;
  line-height: 1.25;
}

.of_bt6k {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  color: #0b0f14;
  background: linear-gradient(135deg, #e8c06a, #c9923a);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.of_bt6k:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 162, 74, 0.35);
}

.of_tm1q {
  padding: 0.75rem 1.1rem 0.9rem;
  font-size: 0.78rem;
  color: var(--pt-muted);
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.2);
}

.of_tm1q strong {
  color: var(--pt-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .of_rw3t {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .of_lg4n {
    margin: 0 auto;
  }
  .of_bt6k {
    width: 100%;
  }
}

/* —— Inner pages prose —— */
.bd_cn9m {
  max-width: 760px;
  margin: 1.5rem auto 3rem;
  padding: 1.75rem 1.5rem;
  background: var(--pt-panel);
  border: 1px solid var(--pt-line);
  border-radius: 14px;
}

.bd_cn9m h2 {
  font-size: 1.35rem;
  color: var(--pt-accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.bd_cn9m h3 {
  font-size: 1.05rem;
  color: var(--pt-ink);
  margin: 1.35rem 0 0.5rem;
  font-weight: 600;
}

.bd_cn9m p,
.bd_cn9m li {
  color: var(--pt-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.bd_cn9m ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.bd_cn9m a {
  color: var(--pt-accent);
  font-weight: 500;
}

/* —— Footer —— */
.ft_wr8m {
  margin-top: 2rem;
  border-top: 1px solid var(--pt-line);
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.5), #080b10);
  padding: 2.5rem 1.25rem 1.5rem;
}

.ft_gr5x {
  max-width: 1120px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ft_cl9n h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pt-accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--pt-line);
}

.ft_cl9n p,
.ft_cl9n li {
  font-size: 0.85rem;
  color: var(--pt-muted);
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.ft_cl9n ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.ft_cl9n li {
  padding-left: 0.9rem;
  position: relative;
}

.ft_cl9n li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--pt-accent);
}

.ft_em9k {
  color: var(--pt-accent);
  font-weight: 600;
}

.ft_ln7p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.ft_ln7p a {
  color: var(--pt-ink);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--pt-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, color 0.2s;
}

.ft_ln7p a:hover {
  border-color: var(--pt-accent);
  color: var(--pt-accent);
}

.ft_br94 {
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

/* Affiliate disclosure block placed under brand logos in footer */
.ft_wr8m .into_st9w {
  margin: 0 auto 1.75rem;
  max-width: 1120px;
}

.ft_bm9c {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--pt-line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.ft_bm9c:hover {
  border-color: var(--pt-accent);
  background: var(--pt-glow);
}

.ft_bm9c img {
  max-width: 78%;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.ft_lg2y {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.ft_lg2y p {
  font-size: 0.78rem;
  color: var(--pt-muted);
  margin: 0.35rem 0;
}

@media (max-width: 900px) {
  .ft_gr5x {
    grid-template-columns: 1fr;
  }
  .ft_br94 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .ft_br94 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Age modal —— */
.md_ov3k {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 8, 12, 0.82);
  backdrop-filter: blur(10px);
}

.md_bx9r {
  max-width: 480px;
  width: 100%;
  background: var(--pt-panel);
  border: 1px solid var(--pt-line);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.md_bx9r h2 {
  font-size: 1.25rem;
  color: var(--pt-ink);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.md_bx9r p {
  font-size: 0.9rem;
  color: var(--pt-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.md_bx9r a {
  color: var(--pt-accent);
}

.md_rw5t {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.md_ok7h,
.md_no2j,
.ck_yes9p,
.ck_no3r {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.md_ok7h {
  background: linear-gradient(135deg, #e8c06a, #c9923a);
  color: #0b0f14;
}

.md_no2j {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pt-ink);
  border: 1px solid var(--pt-line);
}

.md_ok7h:hover,
.md_no2j:hover {
  transform: translateY(-1px);
}

.md_nm9w {
  display: none;
  margin-top: 1.25rem;
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(220, 90, 90, 0.45);
  background: rgba(60, 20, 20, 0.35);
  text-align: left;
}

.md_nm9w.is_open {
  display: block;
}

.md_nm9w h3 {
  color: #f0a8a8;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.md_nm9w p {
  color: #e8c4c4;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

/* —— Cookie bar —— */
.ck_bx4m {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: auto;
  max-width: 400px;
  z-index: 9999;
  background: var(--pt-panel);
  border: 1px solid var(--pt-line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ck_bx4m h3 {
  font-size: 0.95rem;
  color: var(--pt-ink);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.ck_bx4m p {
  font-size: 0.82rem;
  color: var(--pt-muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.ck_bx4m a {
  color: var(--pt-accent);
  font-weight: 600;
}

.ck_rw8n {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ck_yes9p {
  background: linear-gradient(135deg, #e8c06a, #c9923a);
  color: #0b0f14;
}

.ck_no3r {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pt-ink);
  border: 1px solid var(--pt-line);
}

@media (max-width: 520px) {
  .ck_bx4m {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }
  .ck_rw8n {
    flex-direction: column;
  }
  .ck_yes9p,
  .ck_no3r {
    width: 100%;
  }
}
