@import "./colors/crimson.css";
:root {
  --p: #e8590c;
  --pd: #9c3b00;
  --gold: #ffd43b;
  --gold-l: #ffe066;
  --bg: #0a0f14;
  --surface: #121a22;
  --surface-2: #1a242e;
  --ink: #eaf0f2;
  --muted: #9aa8b2;
  --line: rgba(255, 255, 255, .09);
  --glass: rgba(255, 255, 255, .05);
  --glass-brd: rgba(255, 255, 255, .12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
  background-image: radial-gradient(900px 500px at 80% -5%, color-mix(in srgb, var(--p) 40%, transparent), transparent), radial-gradient(700px 500px at -10% 10%, color-mix(in srgb, var(--pd) 55%, transparent), transparent);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 18px;
}

a {
  color: var(--gold-l);
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 60;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 20, .72);
  border-bottom: 1px solid var(--line);
}

.topbar {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-l);
  background: linear-gradient(90deg, color-mix(in srgb, var(--pd) 80%, transparent), transparent);
}

.tb-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
}

.dl-btn {
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #1a1205;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-size: .8rem;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--gold) 35%, transparent);
}

.navbar {
  gap: 12px;
  height: 60px;
}

.logo,
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  gap: 9px;
  letter-spacing: -.02em;
}

.logo span {
  color: var(--gold);
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 8px;
  flex: none;
}

.logo-badge {
  filter: drop-shadow(0 3px 8px color-mix(in srgb, var(--gold) 40%, transparent));
}

.lang-switch {
  margin-left: auto;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--gold-l);
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: .82rem;
  white-space: nowrap;
}

[dir=rtl] .lang-switch {
  margin-left: 0;
  margin-right: auto;
}

.navbar nav {
  display: flex;
  gap: 3px;
}

.navbar nav a {
  color: #dfe7ec;
  opacity: .9;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 600;
}

.navbar nav a.active,
.navbar nav a:hover {
  background: var(--glass);
  color: var(--gold-l);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 9px;
  padding: 2px 12px;
  cursor: pointer;
}

.hero {
  padding: 44px 0 28px;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(1.6rem, 5.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #fff, #c5d2da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 22px;
  font-size: 1.02rem;
}

.hero-banner {
  margin: 8px 0 18px;
  position: relative;
}

.hero-banner img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--glass-brd);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.cta-row {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #1a1205;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 14px 26px;
  border-radius: 13px;
  text-decoration: none;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--gold) 32%, transparent);
  transition: transform .15s;
}

.btn-register:hover {
  transform: translateY(-2px);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 26px;
  border-radius: 13px;
  text-decoration: none;
}

.btn-login,
.trust {
  justify-content: center;
}

.trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--muted);
  font-size: .84rem;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

main {
  padding-top: 8px;
}

.toc {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 8px 0 26px;
  background: var(--surface);
}

.toc-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--gold-l);
}

.toc ol {
  margin: 0 0 0 18px;
}

[dir=rtl] .toc ol {
  margin: 0 18px 0 0;
}

.toc a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  opacity: .85;
}

.toc a:hover {
  color: var(--gold-l);
}

article {
  font-size: 1.02rem;
}

article h2 {
  font-size: 1.32rem;
  margin: 34px 0 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  scroll-margin-top: 80px;
}

[dir=rtl] article h2 {
  padding-left: 0;
  padding-right: 14px;
  border-left: none;
  border-right: 3px solid var(--gold);
}

article h3 {
  font-size: 1.08rem;
  margin: 22px 0 8px;
  font-weight: 700;
  color: var(--gold-l);
}

article p {
  margin: 0 0 15px;
  color: #cdd8df;
}

article ol,
article ul {
  margin: 0 0 15px 20px;
  color: #cdd8df;
}

[dir=rtl] article ol,
[dir=rtl] article ul {
  margin: 0 20px 15px 0;
}

article li {
  margin-bottom: 8px;
}

article a {
  color: var(--gold-l);
  font-weight: 600;
}

.tablewrap {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 12px;
  border: 1px solid var(--line);
}

article table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 440px;
}

article td,
article th {
  border-bottom: 1px solid var(--line);
  padding: 11px 13px;
  text-align: start;
}

article th {
  background: var(--surface-2);
  font-weight: 700;
  color: var(--gold-l);
}

article tr:last-child td {
  border-bottom: none;
}

figure {
  margin: 22px 0;
}

figure img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--glass-brd);
}

figcaption {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 7px;
  text-align: center;
}

details.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 17px;
  margin: 9px 0;
  background: var(--surface);
}

details.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
}

details.faq summary::-webkit-details-marker {
  display: none;
}

details.faq summary:before {
  content: "+";
  color: var(--gold);
  font-weight: 800;
  -webkit-margin-end: 9px;
  margin-inline-end: 9px;
  display: inline-block;
  transition: transform .2s;
}

details.faq[open] summary:before {
  content: "+";
  transform: rotate(45deg);
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #1a1205;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  margin: 6px 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--p), var(--pd));
  border: 1px solid var(--glass-brd);
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-band:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 30%, transparent), transparent);
  pointer-events: none;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  padding: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 18px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
  padding: 30px 0 40px;
  margin-top: 28px;
  background: rgba(5, 8, 11, .5);
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.foot-nav a {
  color: #dfe7ec;
  text-decoration: none;
  font-weight: 600;
  opacity: .9;
  font-size: .88rem;
}

.disclaimer {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-top: 13px;
  font-size: .82rem;
}

.age-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-weight: 800;
  border-radius: 6px;
  padding: 1px 8px;
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  font-size: .78rem;
}

.breadcrumbs {
  font-size: .82rem;
  color: var(--muted);
  padding: 14px 18px 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--gold-l);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .sep {
  opacity: .5;
}

.breadcrumbs .cur {
  color: var(--ink);
  opacity: .8;
}

.related {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.related h2 {
  font-size: 1.1rem;
  border: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--gold-l);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  transition: border-color .15s, transform .15s;
}

.related-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.related-card .arrow {
  color: var(--gold);
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
}

.testimonials {
  margin: 36px 0 0;
}

.testimonials>h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

[dir=rtl] .testimonials>h2 {
  padding-left: 0;
  padding-right: 14px;
  border-left: none;
  border-right: 3px solid var(--gold);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 14px;
  gap: 14px;
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  margin: 0;
  position: relative;
}

.tcard blockquote {
  margin: 0 0 12px;
  color: #cdd8df;
  font-size: .95rem;
  line-height: 1.6;
}

.tstars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: .95rem;
  margin-bottom: 9px;
}

.tcard figcaption {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tname {
  font-weight: 700;
  color: var(--gold-l);
  font-size: .9rem;
}

.tloc {
  color: var(--muted);
  font-size: .78rem;
}

.compare {
  margin: 36px 0 0;
}

.compare>h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

[dir=rtl] .compare>h2 {
  padding-left: 0;
  padding-right: 14px;
  border-left: none;
  border-right: 3px solid var(--gold);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 440px;
}

.cmp-table td,
.cmp-table th {
  border-bottom: 1px solid var(--line);
  padding: 12px 13px;
  text-align: start;
}

.cmp-table thead th {
  background: var(--surface-2);
  color: var(--gold-l);
  font-weight: 800;
}

.cmp-table thead th:nth-child(2) {
  color: var(--gold);
}

.cmp-table tbody th {
  font-weight: 700;
  color: #eaf0f2;
  background: var(--surface);
}

.cmp-us {
  color: #dff5e6;
  font-weight: 600;
}

.cmp-them {
  color: var(--muted);
}

.cmp-table tr:last-child td,
.cmp-table tr:last-child th {
  border-bottom: none;
}

#toTop {
  right: 16px;
  bottom: 16px;
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #1a1205;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 800;
  z-index: 60;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
}

#toTop,
.sticky-cta {
  position: fixed;
  display: none;
}

.sticky-cta {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(8, 12, 16, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-brd);
}

.sticky-cta a {
  flex: 1 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  font-size: .95rem;
}

.sticky-cta .sc-reg {
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #1a1205;
}

.sticky-cta .sc-log {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--ink);
}

#promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#promo-overlay.show {
  display: flex;
}

#promo {
  position: relative;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  padding: 38px 28px 26px;
  text-align: center;
  border-radius: 24px;
  background: radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 60%), linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--glass-brd));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 15%, transparent), 0 30px 80px rgba(0, 0, 0, .7), 0 0 60px color-mix(in srgb, var(--gold) 22%, transparent);
  animation: promoPop .45s cubic-bezier(.2, .9, .3, 1.3) both;
}

#promo:before {
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .14), transparent);
  transform: skewX(-18deg);
  animation: promoShine 2.8s ease-in-out .4s infinite;
  pointer-events: none;
}

#promo:after,
#promo:before {
  content: "";
  position: absolute;
  top: 0;
}

#promo:after {
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promo-rays {
  position: absolute;
  inset: -40% 0 auto 0;
  height: 320px;
  width: 320px;
  margin: auto;
  left: 0;
  right: 0;
  background: conic-gradient(from 0deg, transparent 0 8deg, color-mix(in srgb, var(--gold) 10%, transparent) 8deg 16deg, transparent 16deg 24deg, color-mix(in srgb, var(--gold) 10%, transparent) 24deg 32deg);
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
  animation: promoSpin 24s linear infinite;
  pointer-events: none;
}

#promo-x {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

#promo-x:hover {
  color: #fff;
}

.promo-emoji {
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 8px;
  animation: promoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px color-mix(in srgb, var(--gold) 50%, transparent));
}

#promo h3 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  color: #fff;
}

.promo-badge {
  position: relative;
  display: inline-block;
  margin: 6px 0 12px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-l);
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  padding: 6px 14px;
  border-radius: 999px;
}

#promo p {
  position: relative;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

#promo .btn-register {
  position: relative;
  display: block;
  width: 100%;
  animation: promoPulse 1.9s ease-in-out infinite;
}

.promo-trust {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: .72rem;
}

.promo-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.promo-skip {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: .84rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-skip:hover {
  color: var(--ink);
}

@keyframes promoPop {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes promoFloat {

  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes promoPulse {

  0%,
  to {
    box-shadow: 0 10px 26px color-mix(in srgb, var(--gold) 34%, transparent);
  }

  50% {
    box-shadow: 0 10px 40px color-mix(in srgb, var(--gold) 70%, transparent);
  }
}

@keyframes promoShine {
  0% {
    left: -60%;
  }

  55%,
  to {
    left: 130%;
  }
}

@keyframes promoSpin {
  to {
    transform: rotate(1turn);
  }
}

@media(prefers-reduced-motion:reduce) {

  #promo,
  #promo .btn-register,
  #promo:before,
  .promo-emoji,
  .promo-rays {
    animation: none;
  }
}

@media(max-width:720px) {
  .nav-toggle {
    display: block;
  }

  .navbar nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 15, 20, .96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 10px;
    border-bottom: 1px solid var(--line);
  }

  .navbar nav.open {
    display: flex;
  }

  .navbar nav a {
    padding: 13px 14px;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 66px;
  }

  #toTop {
    bottom: 74px;
  }
}

@media(max-width:480px) {
  .hero {
    padding: 30px 0 22px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .btn-login,
  .btn-register {
    width: 100%;
    padding: 15px;
  }

  .cta-row {
    flex-direction: column;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-img {
    height: 44px;
    max-width: 170px;
  }
}
