:root {
  --ink: #07090d;
  --ink-soft: #111722;
  --surface: #ffffff;
  --surface-soft: #f2f4f7;
  --text: #242933;
  --muted: #646b76;
  --line: #dfe3e8;
  --jade: #00f0a5;
  --jade-deep: #00bb82;
  --violet: #9b13ff;
  --violet-deep: #7510c8;
  --saffron: #f4a51c;
  --danger: #d43a58;
  --radius: 6px;
  --shadow: 0 3px 12px rgba(7, 9, 13, 0.08);
  --content-gap: 20px;
  font-family: "Nirmala UI", "Mangal", "Noto Sans Devanagari", Arial, sans-serif;
  color-scheme: light;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background-color: #eceff3;
  background-image:
    linear-gradient(30deg, rgba(0, 240, 165, 0.025) 12%, transparent 12.5%, transparent 87%, rgba(0, 240, 165, 0.025) 87.5%),
    linear-gradient(150deg, rgba(155, 19, 255, 0.025) 12%, transparent 12.5%, transparent 87%, rgba(155, 19, 255, 0.025) 87.5%),
    linear-gradient(30deg, rgba(244, 165, 28, 0.018) 12%, transparent 12.5%, transparent 87%, rgba(244, 165, 28, 0.018) 87.5%);
  background-size: 52px 92px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--jade);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 75px;
  color: #fff;
  background: #030405;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 75px;
  margin: 0 auto;
  padding: 0 30px;
}

.brand-link {
  flex: 0 0 auto;
  width: 135px;
}

.header-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  margin-left: auto;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions {
  margin-left: 24px;
  gap: 10px;
}

.locale-picker {
  position: relative;
  flex: 0 0 auto;
  margin-left: 10px;
}

.locale-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 58px;
  height: 48px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 165, 0.78);
  border-radius: 9px;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-trigger[aria-expanded="true"] {
  color: var(--jade);
  background: rgba(0, 240, 165, 0.08);
  border-color: var(--jade);
}

.locale-flag {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.locale-chevron {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: margin 160ms ease, transform 160ms ease;
}

.locale-trigger[aria-expanded="true"] .locale-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.locale-menu {
  position: fixed;
  z-index: 1200;
  top: 85px;
  left: 50vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(880px, calc(100vw - 32px));
  padding: 12px;
  color: #fff;
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

.locale-menu[hidden] {
  display: none;
}

.locale-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 44px;
  padding: 8px 10px;
  color: #f4f7fa;
  background: #34373d;
  border: 1px solid #444850;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  text-decoration: none;
}

.locale-option:hover,
.locale-option:focus-visible {
  color: #fff;
  background: #444850;
  border-color: var(--jade);
}

.locale-option[aria-current="page"] {
  color: #02110c;
  background: var(--jade);
  border-color: var(--jade);
}

.locale-name,
.footer-locale-name {
  min-width: 0;
}

.locale-code,
.footer-locale-code {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: #dfe4ea;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.powerplay-rail::before,
.powerplay-rail::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 2px;
  transition: width 180ms ease;
}

.powerplay-rail::before {
  left: 50%;
  background: var(--jade);
}

.powerplay-rail::after {
  right: 50%;
  background: var(--violet);
}

.powerplay-rail:hover::before,
.powerplay-rail:hover::after,
.powerplay-rail:focus-visible::before,
.powerplay-rail:focus-visible::after,
.powerplay-rail.is-active::before,
.powerplay-rail.is-active::after {
  width: 46%;
}

.nav-link.is-active {
  color: var(--jade);
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 12px 22px;
  overflow: hidden;
  color: #02110c;
  background: var(--jade);
  border: 1px solid var(--jade);
  border-radius: 4px 4px 13px 4px;
  box-shadow: 0 6px 0 #00956a;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #27ffc0;
}

.cta-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(0, 240, 165, 0.78);
  box-shadow: 0 5px 0 rgba(0, 149, 106, 0.7);
}

.bat-face-press::after {
  content: "";
  position: absolute;
  inset: 4px 4px auto auto;
  width: 10px;
  height: 3px;
  background: var(--saffron);
  transform: skewX(-28deg);
  opacity: 0;
  transition: opacity 120ms ease, transform 120ms ease;
}

.bat-face-press.is-pressed,
.bat-face-press:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #00956a;
}

.bat-face-press.is-pressed::after,
.bat-face-press:active::after {
  opacity: 1;
  transform: translateX(-4px) skewX(-28deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  width: 16px;
  transform: translate(5px, -7px) rotate(90deg);
}

.site-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 20px auto;
  padding: 0 30px;
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  width: 240px;
}

.rail-card,
.content-card,
.service-card,
.not-found-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rail-card {
  overflow: hidden;
}

.rail-card > h2 {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.rail-links,
.article-nav {
  display: grid;
}

.rail-row,
.article-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 9px 13px;
  color: var(--text);
  border-bottom: 1px solid #edf0f3;
  font-size: 13px;
  line-height: 19px;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.rail-row:last-child,
.article-link:last-child {
  border-bottom: 0;
}

.rail-row img {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.rupee-score-row::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 3px;
  height: 0;
  background: var(--saffron);
  transform: translateY(-50%);
  transition: height 160ms ease;
}

.rupee-score-row:hover,
.rupee-score-row:focus-visible,
.article-link:hover,
.article-link:focus-visible,
.article-link.is-active {
  background: rgba(0, 240, 165, 0.08);
}

.rupee-score-row:hover::after,
.rupee-score-row:focus-visible::after {
  height: 22px;
}

.article-link.is-active {
  color: #006d4e;
  font-weight: 800;
}

.app-rail-card {
  padding: 18px;
  color: #fff;
  background-color: var(--ink-soft);
  background-image:
    linear-gradient(135deg, transparent 45%, rgba(0, 240, 165, 0.08) 45%, rgba(0, 240, 165, 0.08) 47%, transparent 47%),
    linear-gradient(45deg, transparent 45%, rgba(155, 19, 255, 0.08) 45%, rgba(155, 19, 255, 0.08) 47%, transparent 47%);
  background-size: 26px 26px;
}

.app-rail-card .rail-kicker {
  color: var(--saffron);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.app-rail-card h2 {
  margin: 8px 0;
  padding: 0;
  background: none;
  font-size: 22px;
  line-height: 28px;
}

.app-rail-card p {
  margin: 0 0 16px;
  color: #cdd4dd;
  font-size: 13px;
  line-height: 20px;
}

.rail-cta {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
}

.casino-rail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px;
}

.casino-tile {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}

.casino-tile img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.casino-tile span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 8px 7px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  font-size: 12px;
  font-weight: 800;
}

.casino-tile:hover img,
.casino-tile:focus-visible img {
  transform: scale(1.045);
}

.main-column {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 381px;
  padding: 65px 30px;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.82) 46%, rgba(4, 6, 9, 0.2) 72%, rgba(4, 6, 9, 0.06) 100%),
    var(--hero-image);
  background-position: center, var(--hero-focus);
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: 0 7px 24px rgba(5, 8, 12, 0.22);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--jade) 0 42%, var(--saffron) 42% 46%, var(--violet) 46% 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 58%;
  max-width: 620px;
}

.hero h1,
.service-card > h1,
.not-found-card h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero h1 {
  color: var(--jade);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-copy > p {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  color: #edf2f6;
  font-size: 15px;
  line-height: 23.25px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta,
.hero-platform-actions {
  margin-top: 16px;
}

.section-platform-actions {
  margin-top: 18px;
}

.platform-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 12px;
  width: 100%;
}

.platform-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 8px 14px;
  overflow: hidden;
  color: #fff;
  background: rgba(3, 5, 8, 0.92);
  border: 1px solid rgba(0, 240, 165, 0.72);
  border-radius: 4px 4px 13px 4px;
  box-shadow: 0 5px 0 rgba(0, 149, 106, 0.72);
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.platform-cta:hover,
.platform-cta:focus-visible {
  border-color: var(--saffron);
}

.platform-cta .platform-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  object-fit: contain;
}

.platform-cta span,
.platform-cta small,
.platform-cta strong {
  display: block;
  min-width: 0;
  white-space: nowrap;
}

.platform-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
}

.platform-cta small {
  color: #bdc6cf;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
}

.platform-cta strong {
  font-size: 16px;
  line-height: 20px;
}

.content-card {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background-image:
    linear-gradient(135deg, transparent 45%, rgba(0, 240, 165, 0.11) 45%, rgba(0, 240, 165, 0.11) 48%, transparent 48%),
    linear-gradient(45deg, transparent 60%, rgba(155, 19, 255, 0.08) 60%, rgba(155, 19, 255, 0.08) 63%, transparent 63%);
  pointer-events: none;
}

.content-card:hover {
  border-color: rgba(0, 187, 130, 0.42);
}

.offer-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 22px 0;
}

.offer-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: linear-gradient(145deg, #f7fffc 0%, #fff 58%, #faf5ff 100%);
  border: 1px solid #d7e5df;
  border-left: 4px solid var(--jade-deep);
  border-radius: 4px 4px 16px 4px;
  box-shadow: 0 7px 20px rgba(17, 23, 34, 0.08);
}

.offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 4px;
  background: var(--saffron);
}

.offer-card:nth-child(5) {
  grid-column: 1 / -1;
}

.offer-card h3 {
  margin-top: 0;
  color: #10251e;
}

.offer-card p:last-child {
  margin-bottom: 0;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 22px;
}

.pros-cons-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d8e2df;
  border-radius: 4px 4px 16px 4px;
  box-shadow: 0 7px 20px rgba(17, 23, 34, 0.08);
}

.pros-cons-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 4px;
}

.pros-cons-card-positive {
  background: linear-gradient(145deg, #ecfff7 0%, #fff 62%, #f7fffc 100%);
  border-left: 4px solid var(--jade-deep);
}

.pros-cons-card-positive::after {
  background: var(--jade);
}

.pros-cons-card-negative {
  background: linear-gradient(145deg, #fff8f1 0%, #fff 60%, #fbf5ff 100%);
  border-left: 4px solid var(--violet);
}

.pros-cons-card-negative::after {
  background: var(--saffron);
}

.pros-cons-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pros-cons-card .pros-cons-card-heading h3 {
  margin: 0;
  color: #17251f;
  font-size: 20px;
  line-height: 28px;
}

.pros-cons-icon {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  border-radius: 3px 3px 10px 3px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.pros-cons-card-positive .pros-cons-icon {
  background: var(--jade-deep);
}

.pros-cons-card-negative .pros-cons-icon {
  background: var(--violet);
}

.pros-cons-card .source-list {
  padding-left: 0;
  list-style: none;
}

.pros-cons-card .source-list li {
  position: relative;
  padding-left: 21px;
}

.pros-cons-card .source-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.pros-cons-card-positive .source-list li::before {
  color: var(--jade-deep);
}

.pros-cons-card-negative .source-list li::before {
  color: var(--violet);
}

.review-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 10px 14px;
  color: #eafff7;
  background: #111722;
  border-left: 4px solid var(--jade);
  border-radius: 3px 3px 12px 3px;
}

.review-summary strong {
  color: var(--jade);
  font-size: 22px;
  line-height: 27px;
}

.review-summary span {
  color: #d8e0e7;
  font-size: 14px;
  font-weight: 700;
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3fff9 0%, #ffffff 58%, #faf7ff 100%);
  border: 1px solid #d2e8df;
  border-left: 4px solid var(--jade-deep);
  border-radius: 4px 4px 16px 4px;
  box-shadow: 0 7px 20px rgba(17, 23, 34, 0.08);
}

.review-card:nth-child(even) {
  border-left-color: var(--violet);
}

.review-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(0, 194, 137, 0.18);
  transform: rotate(45deg);
}

.review-card-featured {
  grid-column: 1 / -1;
}

.review-card-header,
.review-card-person,
.review-card-score {
  display: flex;
  align-items: center;
}

.review-card-header {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid #dcebe5;
}

.review-card-person {
  min-width: 0;
  gap: 10px;
}

.review-quote-mark {
  display: inline-grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  padding-top: 8px;
  color: #fff;
  background: var(--jade-deep);
  border-radius: 3px 3px 12px 3px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.review-card:nth-child(even) .review-quote-mark {
  background: var(--violet);
}

.review-card h3 {
  margin: 0;
  color: #10231c;
  font-size: 17px;
  line-height: 22px;
}

.review-location {
  display: block;
  margin-top: 2px;
  color: #65736d;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.review-card-score {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.review-stars {
  color: #e79400;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 14px;
}

.review-card-score strong {
  color: #111722;
  font-size: 15px;
  line-height: 18px;
}

.review-body {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #293831;
  font-size: 15px;
  line-height: 24px;
}

.author-meta-line {
  position: relative;
  margin: 9px 0;
  padding: 11px 14px;
  color: #17352c;
  background: linear-gradient(90deg, #eafff7 0%, #f8fffc 72%, #fbf7ff 100%);
  border: 1px solid #d2e8df;
  border-left: 4px solid var(--jade-deep);
  border-radius: 3px 3px 12px 3px;
  box-shadow: 0 4px 14px rgba(17, 23, 34, 0.06);
}

.author-meta-label {
  color: #002f22;
  font-weight: 900;
}

.section-heading {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.section-heading h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: #171b22;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-wrap: wrap;
}

.crease-seam {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: linear-gradient(90deg, var(--jade) 0 42%, var(--saffron) 42% 50%, var(--violet) 50% 100%);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-crease.is-visible .crease-seam,
.reveal-crease:focus-within .crease-seam {
  transform: scaleX(1);
}

.section-content,
.section-content > p,
.section-content > h3,
.section-content > ul,
.section-content > ol,
.section-content > .table-wrap,
.faq-answer,
.faq-answer > p,
.faq-answer > ul,
.faq-answer > ol {
  width: 100%;
  max-width: none;
}

.section-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.section-content > * + * {
  margin-top: 20px;
}

.section-content p,
.section-content li,
.service-pair p,
.not-found-card > p {
  font-size: 15px;
  line-height: 23.25px;
}

.section-content h3 {
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  color: #242933;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.source-list {
  margin: 0;
  padding-left: 24px;
}

.source-list li {
  position: relative;
  padding-left: 3px;
}

.source-list li + li {
  margin-top: 9px;
}

.source-list li::marker {
  color: var(--jade-deep);
  font-weight: 800;
}

.steps-over-thread {
  list-style: none;
  counter-reset: over-step;
  padding-left: 0;
}

.steps-over-thread li {
  counter-increment: over-step;
  min-height: 38px;
  padding: 7px 0 7px 48px;
}

.steps-over-thread li::before {
  content: counter(over-step);
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #03120c;
  background: var(--jade);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--jade-deep), 5px 5px 0 rgba(155, 19, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.steps-over-thread li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  bottom: -11px;
  left: 16px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--violet) 0 5px, transparent 5px 9px);
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid #d7dce2;
  border-left: 4px solid var(--jade-deep);
  border-radius: 4px;
  scrollbar-color: var(--violet) #e8ebef;
}

.table-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 42px;
  background: var(--saffron);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 21px;
}

th,
td {
  min-width: 126px;
  padding: 12px 14px;
  border-right: 1px solid #e0e4e9;
  border-bottom: 1px solid #e0e4e9;
  text-align: left;
  vertical-align: middle;
}

thead th {
  color: #fff;
  background: #111722;
  font-weight: 800;
}

thead th:first-child,
tbody th,
tbody td:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
}

thead th:first-child {
  z-index: 3;
}

tbody th,
tbody td:first-child {
  color: #003e2b;
  background: #e7fff6;
  font-weight: 800;
}

tbody tr:nth-child(even) td {
  background: linear-gradient(90deg, rgba(155, 19, 255, 0.025), rgba(0, 240, 165, 0.025));
}

tbody tr {
  transition: box-shadow 150ms ease, background-color 150ms ease;
}

tbody tr:hover {
  box-shadow: inset 4px 0 var(--saffron);
}

thead th:last-child,
tbody td:last-child {
  border-right: 0;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.section-cta {
  margin-top: 20px;
}

.responsible-block {
  position: relative;
  margin-top: 20px;
  padding: 18px 18px 18px 22px;
  background: #f7f4ea;
  border-left: 4px solid var(--saffron);
  border-radius: 4px;
}

.responsible-block > * {
  width: 100%;
  max-width: none;
  margin: 0;
}

.responsible-block > * + * {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  width: 100%;
  gap: 10px;
}

.faq-scorecard {
  width: 100%;
  overflow: hidden;
  background: #fbfcfd;
  border: 1px solid #dde2e7;
  border-left: 4px solid var(--violet);
  border-radius: 4px;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.faq-scorecard:hover,
.faq-scorecard:focus-within,
.faq-scorecard[open] {
  border-left-color: var(--jade-deep);
  box-shadow: 0 5px 14px rgba(7, 9, 13, 0.08);
  transform: translateY(-1px);
}

.faq-scorecard summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
}

.faq-scorecard summary::-webkit-details-marker {
  display: none;
}

.faq-scorecard summary > span:first-child {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.faq-marker {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--jade-deep);
  border-radius: 2px;
}

.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--violet);
  transform: translate(-50%, -50%);
  transition: transform 150ms ease;
}

.faq-marker::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-scorecard[open] .faq-marker::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 14px 16px;
  color: #434a55;
}

.faq-answer > * {
  margin: 0;
}

.faq-answer > * + * {
  margin-top: 14px;
}

.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background-image: var(--promo-image);
  background-position: var(--promo-focus);
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: 0 7px 22px rgba(5, 8, 12, 0.22);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.promo-copy-left::before {
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.95) 0%, rgba(3, 5, 8, 0.78) 44%, rgba(3, 5, 8, 0.16) 72%);
}

.promo-copy-right {
  justify-content: flex-end;
}

.promo-copy-right::before {
  background: linear-gradient(270deg, rgba(3, 5, 8, 0.95) 0%, rgba(3, 5, 8, 0.78) 44%, rgba(3, 5, 8, 0.16) 72%);
}

.promo-copy {
  position: relative;
  z-index: 1;
  width: 48%;
  max-width: none;
}

.promo-copy h2 {
  width: 100%;
  margin: 0;
  color: var(--jade);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.promo-copy p {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  color: #edf2f6;
  font-size: 15px;
  line-height: 23.25px;
}

.promo-cta {
  margin-top: 16px;
}

.site-footer {
  margin-top: 20px;
  color: #d9dfe6;
  background-color: var(--ink);
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(0, 240, 165, 0.04) 48%, rgba(0, 240, 165, 0.04) 51%, transparent 51%),
    linear-gradient(150deg, transparent 48%, rgba(155, 19, 255, 0.04) 48%, rgba(155, 19, 255, 0.04) 51%, transparent 51%);
  background-size: 44px 78px;
}

.footer-inner,
.footer-bottom {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: 30px;
  padding-top: 38px;
  padding-bottom: 32px;
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p,
.footer-responsible p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #b8c0c9;
  font-size: 13px;
  line-height: 20px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: #bec6cf;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--jade);
}

.footer-responsible {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-locales {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 10px;
  padding: 20px 0 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-locale-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 9px 12px;
  color: #f3f5f7;
  background: #34373d;
  border: 1px solid #444850;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.footer-locale-link:hover,
.footer-locale-link:focus-visible {
  color: #fff;
  background: #444850;
  border-color: var(--jade);
  transform: translateY(-1px);
}

.footer-locale-link[aria-current="page"] {
  color: #02110c;
  background: var(--jade);
  border-color: var(--jade);
}

.age-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border: 2px solid var(--danger);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #8f99a4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 18px;
}

.service-main {
  width: 100%;
  max-width: 1600px;
  min-height: calc(100vh - 310px);
  margin: 20px auto;
  padding: 0 30px;
}

.service-card,
.not-found-card {
  width: 100%;
  padding: 30px;
}

.service-eyebrow {
  margin: 0 0 8px;
  color: #007a58;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card > h1,
.not-found-card h1 {
  color: #151a21;
}

.service-pair {
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-pair h2 {
  width: 100%;
  max-width: none;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.service-pair p,
.not-found-card > p {
  width: 100%;
  max-width: none;
  margin: 0;
}

.not-found-card {
  text-align: center;
}

.not-found-card .service-eyebrow {
  color: var(--violet);
  font-size: 26px;
}

.not-found-card > p {
  margin-top: 16px;
}

.internal-button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 20px;
  padding: 10px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1359px) {
  .site-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-rail {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header,
  .header-inner {
    height: 60px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-link {
    width: 119px;
  }

  .locale-picker {
    margin-left: auto;
  }

  .locale-trigger {
    width: 56px;
    height: 42px;
  }

  .locale-menu {
    top: 68px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: min(400px, calc(100vw - 24px));
    padding: 8px;
  }

  .locale-option {
    display: flex;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 6px;
  }

  .locale-name {
    display: none;
  }

  .locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    display: block;
    margin-left: 10px;
  }

  .header-panel {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    display: grid;
    gap: 14px;
    width: auto;
    max-height: calc(100dvh - 60px);
    margin: 0;
    padding: 14px 16px;
    overflow-y: auto;
    color: #fff;
    background: #07090d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid var(--jade);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .header-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav,
  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 0;
  }

  .nav-link,
  .header-cta {
    width: 100%;
  }

  .nav-link {
    justify-content: center;
    min-height: 46px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .site-shell,
  .service-main {
    margin-top: 16px;
    margin-bottom: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  html {
    scroll-padding-top: 76px;
  }
}

@media (max-width: 640px) {
  .primary-nav,
  .header-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 638px) {
  .main-column {
    gap: 16px;
  }

  .hero {
    align-items: flex-end;
    min-height: 500px;
    padding: 28px 20px;
    background-image:
      linear-gradient(0deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.78) 48%, rgba(3, 5, 8, 0.3) 75%, rgba(3, 5, 8, 0.14) 100%),
      var(--hero-image);
    background-position: center, var(--hero-focus-mobile, var(--hero-focus));
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero h1,
  .service-card > h1,
  .not-found-card h1 {
    font-size: 27px;
    line-height: 34px;
  }

  .section-heading h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .content-card,
  .service-card,
  .not-found-card {
    padding: 18px;
  }

  .offer-card-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .review-card-grid {
    grid-template-columns: 1fr;
  }

  .review-card-featured {
    grid-column: auto;
  }

  .offer-card:nth-child(5) {
    grid-column: auto;
  }

  .promo-banner {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 390px;
    padding: 22px 20px;
    background-position: var(--promo-focus-mobile, var(--promo-focus));
  }

  .promo-copy-left::before,
  .promo-copy-right::before {
    background: linear-gradient(0deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.76) 48%, rgba(3, 5, 8, 0.24) 76%, rgba(3, 5, 8, 0.1) 100%);
  }

  .promo-copy {
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-copy h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 16px 26px;
    text-align: center;
  }

  .footer-brand,
  .footer-column,
  .footer-responsible {
    justify-items: center;
    align-items: center;
  }

  .footer-brand img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-responsible {
    grid-template-columns: 1fr;
  }

  .footer-locales {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 14px 0 0;
    text-align: left;
  }

  .footer-locale-link {
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 6px 4px;
  }

  .footer-locale-name {
    display: none;
  }

  .footer-locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 540px;
    padding: 24px 18px;
  }

  .hero h1,
  .service-card > h1,
  .not-found-card h1 {
    font-size: 24px;
    line-height: 31px;
  }

  .platform-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-cta {
    width: 100%;
  }

  .platform-cta strong {
    font-size: 15px;
  }

  .cta,
  .hero-cta,
  .promo-cta,
  .section-cta {
    max-width: 100%;
  }

  .faq-scorecard summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 520px) {
  .locale-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    width: calc(100vw - 20px);
    padding: 7px;
  }

  .locale-option {
    gap: 4px;
    min-height: 36px;
    padding: 5px 3px;
  }

  .locale-menu .locale-flag {
    width: 19px;
    height: 19px;
  }

  .locale-code,
  .footer-locale-code {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .crease-seam {
    transform: scaleX(1);
  }
}
