@charset "UTF-8";

:root {
  --ink: #07131d;
  --ink-2: #0b1d2a;
  --panel: #102936;
  --panel-2: #143443;
  --line: #285064;
  --line-soft: rgba(118, 192, 220, .2);
  --text: #f7fbfd;
  --muted: #b9ccd5;
  --celeste: #72c7e8;
  --celeste-2: #a8def2;
  --gold: #e7b54a;
  --gold-dark: #8e651b;
  --success: #61c89a;
  --danger: #f08c79;
  --header-h: 75px;
  --radius: 6px;
  --block-gap: 20px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .22);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(114, 199, 232, .055), transparent 260px),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 23.25px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
p, ul, ol, h1, h2, h3 { margin: 0; }

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(114, 199, 232, .24);
  background: rgba(7, 19, 29, .96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.footer-bottom {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: 30px;
}

.header-inner {
  min-height: 75px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand { width: 152px; }
.brand img { width: 152px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--celeste), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--text); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn::before {
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -48%;
  width: 34%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: skewX(-22deg) translateX(-220%);
  transition: transform .48s ease;
}

.btn:hover::before { transform: skewX(-22deg) translateX(650%); }
.btn:active { transform: translateY(2px); }

.btn--primary {
  border-color: #90d8f0;
  background: linear-gradient(135deg, #a8def2, #65bfdf);
  box-shadow: 0 7px 20px rgba(70, 161, 195, .24);
  color: #04131c;
}

.btn--primary:hover { box-shadow: 0 9px 26px rgba(97, 196, 230, .36); transform: translateY(-1px); }

.btn--ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  color: var(--text);
}

.btn--ghost:hover { border-color: var(--celeste); background: rgba(114, 199, 232, .08); }
.btn--small { min-height: 40px; padding: 9px 16px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
  transition: transform .24s cubic-bezier(.34, 1.56, .64, 1), opacity .15s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: #091925;
}

.mobile-menu nav,
.mobile-actions {
  display: grid;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 16px;
  gap: 8px;
}

.mobile-menu nav a {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 750;
}

.mobile-menu nav a[aria-current="page"] { border-color: var(--line); background: var(--panel); color: var(--text); }
.mobile-actions { grid-template-columns: 1fr 1fr; padding-top: 0; }

.page-shell {
  display: grid;
  width: min(100%, 1600px);
  margin: 20px auto 0;
  padding: 0 30px 40px;
  grid-template-columns: 240px 20px minmax(0, 1020px) 20px 240px;
  align-items: start;
}

.left-rail,
.right-rail {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.rail-card {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 52, 67, .95), rgba(10, 31, 43, .95));
  box-shadow: var(--shadow);
}

.rail-card > h2,
.app-rail > h2 {
  padding: 16px 16px 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 18px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rail-quick { display: grid; padding: 10px; gap: 4px; }
.rail-quick > a { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 4px; color: var(--muted); font-size: 13px; font-weight: 700; }
.rail-quick > a:hover { background: rgba(114,199,232,.08); color: var(--text); }

.rail-quick-icon {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  color: var(--celeste);
  font-size: 13px;
  line-height: 1;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px;
  border-top: 1px solid var(--line-soft);
  color: var(--celeste-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.live-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48d79a;
  box-shadow: 0 0 0 4px rgba(72,215,154,.12);
}

.sports-list { display: grid; padding: 0 8px 10px; }
.sports-list a { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 4px; color: var(--muted); font-size: 13px; font-weight: 700; }
.sports-list a:hover { background: rgba(114,199,232,.08); color: var(--text); }
.side-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border: 1px solid var(--line); border-radius: 4px; color: var(--celeste); }
.side-icon img { display: block; width: 22px; height: 22px; object-fit: contain; }

.article-nav nav { display: grid; max-height: 300px; overflow: auto; padding: 0 8px 10px; }
.article-nav a { padding: 7px 9px; border-left: 2px solid transparent; color: #9fb7c2; font-size: 12px; line-height: 17px; }
.article-nav a:hover,
.article-nav a[aria-current="location"] { border-left-color: var(--gold); background: rgba(231,181,74,.06); color: var(--text); }

.app-rail { padding: 16px; text-align: center; }
.app-rail-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 4px; place-items: center; border: 1px solid var(--celeste); border-radius: var(--radius); background: rgba(114,199,232,.08); color: var(--celeste); }
.app-rail-icon svg { width: 30px; height: 30px; }
.app-rail > h2 { padding: 10px 0 8px; }
.app-rail p { color: var(--muted); font-size: 13px; line-height: 19px; }
.platforms { display: flex; justify-content: center; gap: 6px; margin: 12px 0; }
.platforms span { padding: 4px 7px; border: 1px solid var(--line); border-radius: 4px; color: var(--celeste-2); font-size: 11px; font-weight: 800; }
.btn--rail { width: 100%; min-height: 40px; padding: 9px 12px; }

.game-jumps { display: grid; padding: 8px; gap: 6px; }
.game-jump { display: flex; min-height: 60px; align-items: center; gap: 12px; padding: 10px; border: 1px solid transparent; border-radius: 4px; background: rgba(255,255,255,.025); color: var(--muted); transition: border-color .2s ease, transform .2s ease, color .2s ease; }
.game-jump:hover { border-color: var(--line); color: var(--text); transform: translateX(2px); }
.game-jump span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 4px; color: var(--gold); }
.game-jump svg { width: 22px; height: 22px; }
.game-jump strong { font-size: 13px; }

.main-column { min-width: 0; }

.breadcrumbs {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.breadcrumbs a:hover { color: var(--celeste); }

.hero {
  position: relative;
  display: grid;
  min-height: 381px;
  overflow: hidden;
  padding: 65px 30px;
  border: 1px solid rgba(114,199,232,.34);
  border-radius: var(--radius);
  background: #07131d;
  box-shadow: var(--shadow);
  isolation: isolate;
  align-items: center;
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,15,24,.98) 0%, rgba(5,15,24,.92) 37%, rgba(5,15,24,.62) 58%, rgba(5,15,24,.12) 84%, rgba(5,15,24,.06) 100%),
    linear-gradient(0deg, rgba(4,13,20,.52), transparent 55%);
}

.hero::before,
.hero::after {
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 7px;
  content: "";
  background: repeating-linear-gradient(180deg, var(--celeste) 0 11px, transparent 11px 21px);
  opacity: .52;
}

.hero::before { left: 0; }
.hero::after { right: 0; }

.hero-copy { position: relative; z-index: 2; width: min(100%, 690px); }

.hero h1 {
  width: 100%;
  padding: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: wrap;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1::after {
  display: block;
  width: 104px;
  height: 4px;
  margin-top: 16px;
  content: "";
  background: linear-gradient(90deg, var(--celeste) 0 65%, #fff 65% 78%, var(--gold) 78%);
}

.hero p {
  width: 100%;
  max-width: none;
  margin-top: 16px;
  color: #d1e2e9;
  font-size: 16px;
  line-height: 25px;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn--hero {
  min-height: 48px;
  padding: 12px 22px;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.btn--hero-main,
.btn--hero-betting {
  background: linear-gradient(135deg, #a9e7fb, #5ebbdc);
  color: #06141d;
}

.btn--hero-bonus {
  border-color: #f4d982;
  background: linear-gradient(135deg, #f3d77d, #d49a29);
  color: #171105;
}

.hero-actions--downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
}

.download-badge {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  padding: 9px 14px;
  border: 1px solid rgba(169,231,251,.62);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(15,41,54,.96), rgba(5,18,28,.98));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.download-badge:hover {
  border-color: #fff;
  background: linear-gradient(145deg, rgba(25,65,82,.98), rgba(7,27,39,.98));
  color: #fff;
  transform: translateY(-2px);
}

.download-badge img {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
}

.download-copy {
  display: grid;
  min-width: 0;
  text-align: left;
}

.download-copy span {
  color: #b9d5df;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.download-copy strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
}

.content-stack { display: grid; margin-top: var(--block-gap); gap: var(--block-gap); }

.content-card {
  scroll-margin-top: 95px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16,41,54,.98), rgba(10,29,40,.98));
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}

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

.content-card > h2 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 15px;
  color: var(--text);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -.015em;
  text-transform: none;
  text-wrap: wrap;
  overflow-wrap: normal;
  word-break: normal;
}

.content-card > h2::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--celeste), #fff 66%, var(--gold));
}

.content-flow { display: flow-root; }
.content-flow > * + * { margin-top: 20px; }

.content-flow p,
.content-flow li,
.faq-answer p {
  color: #d0dee4;
  font-size: 15px;
  line-height: 23.25px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.content-flow h3 {
  margin: 20px 0;
  padding: 0;
  color: var(--celeste-2);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-wrap: wrap;
  overflow-wrap: normal;
  word-break: normal;
}

.content-flow h3:first-child { margin-top: 0; }
.content-flow h3 + * { margin-top: 0; }

.source-list { display: grid; padding: 0; list-style: none; gap: 10px; }

.source-list li {
  display: grid;
  min-height: 24px;
  align-items: center;
  padding-left: 0;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 10px;
}

.source-list li::before {
  display: grid;
  width: 16px;
  height: 16px;
  justify-self: center;
  content: "";
  border: 1px solid var(--celeste);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(114,199,232,.34), rgba(231,181,74,.12));
}

ol.source-list { counter-reset: source-step; }
ol.source-list li { counter-increment: source-step; }
ol.source-list li::before { content: counter(source-step); width: 22px; height: 22px; color: var(--ink); background: var(--celeste); font-size: 11px; font-weight: 900; line-height: 20px; place-items: center; }

.content-card.has-content-decoration {
  position: relative;
  min-height: 440px;
  background: linear-gradient(115deg, rgba(16,41,54,.99), rgba(10,29,40,.98) 70%, rgba(19,53,68,.98));
}

.content-card.has-content-decoration--left {
  background: linear-gradient(245deg, rgba(16,41,54,.99), rgba(10,29,40,.98) 70%, rgba(19,53,68,.98));
}

.has-content-decoration .content-flow { min-height: 370px; }

.content-decoration {
  display: block;
  width: min(46%, 320px);
  height: auto;
  max-height: 460px;
  margin: -10px 0 12px 26px;
  float: right;
  object-fit: contain;
  object-position: center top;
  shape-margin: 20px;
  filter: drop-shadow(0 0 1px rgba(114,199,232,.72)) drop-shadow(0 16px 18px rgba(0,0,0,.3));
}

.content-decoration.is-list-extended {
  object-fit: contain;
  object-position: center top;
}

@media (min-width: 701px) {
  #juegos-de-casino-en-vivo .content-decoration {
    width: min(46%, 320px);
    height: 560px;
    max-height: none;
  }

}

.content-decoration--left {
  margin-right: 26px;
  margin-left: 0;
  float: left;
}

.has-content-decoration .source-list { display: block; }
.has-content-decoration .source-list li + li { margin-top: 10px; }

.content-card--sensitive {
  position: relative;
  margin-left: 12px;
  border-color: rgba(114,199,232,.32);
  background: linear-gradient(90deg, rgba(20,57,72,.98), rgba(10,29,40,.98) 72%);
}

.content-card--sensitive::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: -13px;
  width: 5px;
  content: "";
  border-radius: 2px;
  background: var(--celeste);
  box-shadow: 0 0 0 5px rgba(114,199,232,.08);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b202c;
  scrollbar-width: thin;
  scrollbar-color: var(--celeste) #0a1a24;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--text);
  font-size: 14px;
  line-height: 21px;
}

th, td { padding: 13px 15px; border-bottom: 1px solid rgba(114,199,232,.14); text-align: left; vertical-align: top; }
thead th { position: sticky; top: 0; background: #153746; color: var(--celeste-2); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
tbody th { width: 30%; color: #d9edf4; font-weight: 750; }
tbody tr { background: linear-gradient(90deg, rgba(114,199,232,.035), transparent 45%); transition: background .22s ease, box-shadow .22s ease; }
tbody tr:nth-child(even) { background: linear-gradient(90deg, rgba(231,181,74,.045), transparent 46%); }
tbody tr:hover { background: linear-gradient(90deg, rgba(114,199,232,.14), rgba(114,199,232,.02)); box-shadow: inset 4px 0 var(--celeste); }
tbody tr:last-child th,
tbody tr:last-child td { border-bottom: 0; }

[data-reveal-table]::before {
  display: block;
  width: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--celeste), #fff, var(--gold));
  transition: width .7s ease;
}

[data-reveal-table].is-seen::before { width: 100%; }

.section-cta { display: flex; justify-content: flex-start; }
.btn--section { border-color: var(--celeste); background: rgba(114,199,232,.08); color: var(--celeste-2); }
.btn--section:hover { background: rgba(114,199,232,.15); box-shadow: 0 8px 22px rgba(62,158,194,.16); transform: translateY(-1px); }

[data-coin-ping]::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.2);
}

[data-coin-ping].is-ping::after { animation: coin-ping .42s ease-out; }
@keyframes coin-ping { 0% { opacity: 1; transform: translate(-50%, -50%) scale(.2); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(6); } }

.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5,19,28,.42); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.faq-item:hover { border-color: rgba(114,199,232,.62); transform: translateX(2px); box-shadow: -5px 0 0 rgba(114,199,232,.08); }
.faq-item summary { display: grid; min-height: 64px; align-items: center; padding: 10px 14px 10px 10px; cursor: pointer; list-style: none; color: var(--text); font-size: 15px; font-weight: 800; line-height: 22px; grid-template-columns: 42px minmax(0, 1fr) 24px; gap: 10px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-number { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--celeste); border-radius: 4px; color: var(--celeste-2); font-size: 11px; letter-spacing: .08em; }
.faq-plus { position: relative; width: 20px; height: 20px; }
.faq-plus::before,
.faq-plus::after { position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; content: ""; background: var(--gold); transition: transform .2s ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus::after { transform: rotate(0); }
.faq-answer { padding: 0 20px 18px 62px; }
.faq-answer > * + * { margin-top: 12px; }

.content-card--reviews {
  background:
    linear-gradient(145deg, rgba(17,45,58,.99), rgba(7,25,36,.99)),
    var(--panel);
}

.reviews-subject { display: grid; gap: 12px; }

.reviews-overview {
  display: grid;
  min-height: 86px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(114,199,232,.34);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(114,199,232,.12), rgba(240,207,119,.06));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
}

.reviews-score { display: flex; align-items: baseline; gap: 4px; }
.reviews-overall-score { color: var(--text); font-size: 38px; font-weight: 800; line-height: 42px; letter-spacing: -.04em; }
.reviews-overall-scale { color: #8da9b5; font-size: 13px; font-weight: 700; }
.reviews-overview-copy { display: grid; align-content: center; gap: 3px; }
.reviews-overall-label { color: #c4d9e2; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.reviews-count { padding: 8px 12px; border: 1px solid rgba(240,207,119,.32); border-radius: 999px; color: #e7edf0; background: rgba(5,19,28,.35); font-size: 12px; font-weight: 800; white-space: nowrap; }

.review-stars {
  position: relative;
  display: inline-block;
  width: max-content;
  color: rgba(240,207,119,.24);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 3px;
}

.review-stars::before,
.review-stars::after { content: "★★★★★"; }
.review-stars::after { position: absolute; top: 0; left: 0; width: var(--fill); overflow: hidden; color: var(--gold); white-space: nowrap; }

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

.review-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: start;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(114,199,232,.24);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(7,24,34,.8), rgba(15,47,61,.62));
  box-shadow: 0 10px 22px rgba(0,0,0,.15);
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.review-card::before { position: absolute; top: 0; left: 0; width: 100%; height: 3px; content: ""; background: linear-gradient(90deg, var(--celeste), var(--gold)); opacity: .76; }
.review-card:hover { border-color: rgba(114,199,232,.55); transform: translateY(-3px); box-shadow: 0 15px 28px rgba(0,0,0,.22); }
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-number { color: var(--celeste-2); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-byline { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.review-author { color: var(--text); font-size: 14px; line-height: 20px; }
.review-date { color: #8da9b5; font-size: 11px; line-height: 18px; white-space: nowrap; }
.review-rating { display: inline-flex; align-items: baseline; color: #a9bec7; font-size: 10px; gap: 2px; }
.review-rating strong { color: var(--text); font-size: 17px; line-height: 20px; }
.review-card blockquote { margin: 0; }
.review-card blockquote p { color: #d7e3e8; font-size: 14px; line-height: 22px; }

.promo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07131d;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.promo img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo--text-left img { object-position: 68% center; }
.promo--text-right img { object-position: 32% center; }
.promo-shade { position: absolute; z-index: -1; inset: 0; }
.promo--text-left .promo-shade { background: linear-gradient(90deg, rgba(4,15,23,.98) 0%, rgba(5,17,25,.89) 43%, rgba(5,17,25,.18) 72%, transparent 100%); }
.promo--text-right .promo-shade { background: linear-gradient(270deg, rgba(4,15,23,.98) 0%, rgba(5,17,25,.89) 43%, rgba(5,17,25,.18) 72%, transparent 100%); }

.promo-content {
  display: flex;
  min-height: 260px;
  width: 52%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 30px;
}

.promo--text-right .promo-content { margin-left: auto; align-items: flex-start; }
.promo h2 { width: 100%; max-width: none; color: var(--text); font-size: 30px; font-weight: 700; line-height: 36px; }
.promo p { width: 100%; max-width: none; margin-top: 10px; color: #d3e3e9; font-size: 14px; line-height: 21px; }
.btn--promo { margin-top: 18px; border-color: #f1d07b; background: linear-gradient(135deg, #f0cf77, #d69b2b); color: #171105; box-shadow: 0 8px 24px rgba(215,158,43,.2); }

.service-main,
.not-found-main {
  width: min(100%, 1600px);
  margin: 20px auto 0;
  padding: 0 30px 40px;
}

.service-card,
.not-found-card {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16,41,54,.98), rgba(10,29,40,.98));
  box-shadow: var(--shadow);
}

.service-card .breadcrumbs { margin-bottom: 16px; }
.service-eyebrow { display: block; margin-bottom: 10px; color: var(--celeste); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-card > h1,
.not-found-card h1 { width: 100%; color: var(--text); font-size: 30px; font-weight: 700; line-height: 36px; text-transform: uppercase; }
.service-questions { display: grid; margin-top: 20px; gap: 20px; }
.service-qa { padding-top: 20px; border-top: 1px solid var(--line-soft); }
.service-qa h2 { width: 100%; margin-bottom: 8px; color: var(--celeste-2); font-size: 20px; font-weight: 600; line-height: 32px; text-transform: uppercase; }
.service-qa p { width: 100%; max-width: none; color: #d0dee4; }

.not-found-main { min-height: calc(100vh - 380px); display: grid; place-items: center; }
.not-found-card { max-width: 760px; padding: 50px 30px; text-align: center; }
.not-found-code { display: block; color: var(--celeste); font-size: clamp(72px, 16vw, 150px); font-weight: 900; line-height: .9; letter-spacing: -.07em; }
.not-found-card p { width: 100%; max-width: none; margin: 16px 0 24px; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #061019;
}

.footer-inner {
  display: grid;
  padding-top: 34px;
  padding-bottom: 30px;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, .6fr) minmax(150px, .6fr) minmax(300px, 1fr);
  gap: 30px;
}

.footer-brand img { width: 146px; height: auto; }
.footer-brand p { width: 100%; max-width: 420px; margin-top: 14px; color: #9fb3bd; font-size: 13px; line-height: 20px; }
.footer-column { display: grid; align-content: start; gap: 7px; }
.footer-column h2 { margin-bottom: 4px; color: var(--text); font-size: 13px; line-height: 20px; letter-spacing: .1em; text-transform: uppercase; }
.footer-column a { color: #9fb3bd; font-size: 13px; }
.footer-column a:hover { color: var(--celeste); }

.footer-responsible { display: flex; align-items: flex-start; gap: 14px; }
.age-badge { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; border: 2px solid var(--danger); border-radius: 50%; color: #ffb3a5; font-size: 17px; font-weight: 900; }
.footer-responsible strong { display: block; color: var(--text); font-size: 13px; text-transform: uppercase; }
.footer-responsible p { width: 100%; max-width: none; margin-top: 5px; color: #9fb3bd; font-size: 12px; line-height: 18px; }

.footer-bottom { display: flex; justify-content: space-between; padding-top: 15px; padding-bottom: 15px; border-top: 1px solid rgba(114,199,232,.12); color: #77909c; font-size: 11px; }

@media (pointer: fine) {
  [data-magnet] { transition: transform .16s ease, border-color .2s ease, background .2s ease; }
}

@media (max-width: 1359px) {
  .page-shell { display: block; }
  .left-rail, .right-rail, .rail-gap { display: none !important; }
}

@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-responsible { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 60px; }
  .site-header { min-height: 60px; }
  .header-inner { min-height: 60px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.is-open { display: block; }
  .brand, .brand img { width: 128px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 170px; }
}

@media (max-width: 700px) {
  .header-inner,
  .footer-inner,
  .footer-bottom,
  .page-shell,
  .service-main,
  .not-found-main { padding-right: 16px; padding-left: 16px; }

  .page-shell,
  .service-main,
  .not-found-main { margin-top: 16px; padding-bottom: 28px; }

  .hero { min-height: 320px; padding: 48px 20px; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,13,20,.98) 0%, rgba(4,13,20,.86) 48%, rgba(4,13,20,.42) 78%, rgba(4,13,20,.16) 100%); }
  .hero-media { object-position: 66% center; }
  .hero h1 { font-size: 28px; line-height: 34px; }
  .hero p { font-size: 15px; line-height: 23.25px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions--downloads { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-badge { min-height: 58px; padding: 8px 10px; gap: 8px; }
  .download-badge img { width: 25px; height: 25px; flex-basis: 25px; }
  .download-copy span { font-size: 9px; line-height: 12px; }
  .download-copy strong { font-size: 15px; line-height: 18px; }
  .content-stack { margin-top: 16px; gap: 16px; }
  .content-card { padding: 20px; }
  .content-card.has-content-decoration { min-height: 0; }
  .has-content-decoration .content-flow { min-height: 0; }
  .content-decoration,
  .content-decoration--left {
    display: none;
  }
  .content-card--sensitive { margin-left: 0; }
  .content-card--sensitive::before { display: none; }
  .content-card > h2 { font-size: 26px; line-height: 32px; }
  .promo { min-height: 300px; }
  .promo-content { min-height: 300px; width: 100%; padding: 30px 20px; justify-content: flex-end; }
  .promo--text-left .promo-shade,
  .promo--text-right .promo-shade { background: linear-gradient(0deg, rgba(4,15,23,.98) 0%, rgba(4,15,23,.9) 45%, rgba(4,15,23,.24) 82%, rgba(4,15,23,.1) 100%); }
  .promo h2 { font-size: 26px; line-height: 32px; }
  .faq-item summary { grid-template-columns: 38px minmax(0,1fr) 22px; gap: 8px; padding-right: 10px; }
  .faq-number { width: 32px; height: 32px; }
  .faq-answer { padding: 0 14px 16px; }
  .reviews-overview { grid-template-columns: auto minmax(0, 1fr); gap: 10px 14px; }
  .reviews-count { grid-column: 1 / -1; justify-self: start; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card,
  .review-card:last-child:nth-child(odd) { min-height: 0; grid-column: auto; }
}

@media (max-width: 420px) {
  .mobile-actions { grid-template-columns: 1fr; }
  .hero { min-height: 340px; }
  .hero h1 { font-size: 26px; line-height: 32px; }
  .hero-actions .btn--hero { width: auto; }
  .hero-actions--downloads { gap: 8px; }
  .content-card > h2 { font-size: 24px; line-height: 30px; padding-left: 12px; }
  .content-decoration,
  .content-decoration--left { width: min(72%, 210px); max-height: 290px; }
  .content-flow h3, .service-qa h2 { font-size: 18px; line-height: 28px; }
  .btn { width: 100%; white-space: normal; }
  .section-cta { width: 100%; }
  .promo { min-height: 330px; }
  .promo-content { min-height: 330px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-column, .footer-brand, .footer-responsible { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-magnet] { transform: none !important; }
  [data-reveal-table]::before { width: 100%; }
}
