/* FRONT-1 | main.css — component styles */

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.fr1-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.fr1-header > .xy12l4939y9 {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.xupdllrwizl {
  flex-shrink: 0;
}
.xupdllrwizl img {
  height: 40px;
  width: auto;
}
.fr1-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fr1-header__nav .xffmv8cmxli {
  display: flex;
  gap: 4px;
  list-style: none;
}
.fr1-header__nav .xjv9xncphb6 a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--header-link);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
/* Hover/active stay on the header surface: tint the header background toward
   the link colour instead of switching to a content-derived colour, so the
   link text never lands on a clashing (e.g. white-on-light) background. */
.fr1-header__nav .xjv9xncphb6 a:hover,
.fr1-header__nav .xjv9xncphb6.active a {
  color: var(--header-link);
  background: color-mix(in srgb, var(--header-bg) 80%, var(--header-link) 20%);
}

.xr9lxx5ca95 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language switcher */
.x5dmvhvd9yk {
  position: relative;
}
.x892zj872bg {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--header-link);
  transition: border-color var(--transition);
}
.x892zj872bg:hover { border-color: var(--accent); }
.xrkeid1ix8p svg { transition: transform var(--transition); }
.x5dmvhvd9yk:hover .xrkeid1ix8p svg,
.x5dmvhvd9yk:focus-within .xrkeid1ix8p svg { transform: rotate(180deg); }

.xltjler8z3t {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 6px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 120px;
  z-index: 200;
}
.x5dmvhvd9yk::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}
.x5dmvhvd9yk:hover .xltjler8z3t,
.x5dmvhvd9yk:focus-within .xltjler8z3t { display: block; }
.xz5qo0ai4gd {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.xz5qo0ai4gd:hover { background: var(--bg-hover); color: var(--text-primary); }
.xfpuy04sz4c { color: var(--accent); }

/* Account buttons */
.xhjo0uipm53 { display: flex; gap: 8px; }
.xhjo0uipm53 .xuowko9woz5 { font-size: 13px; padding: 7px 16px; }

/* Keep a contrasting filled background on hover for the Login/Register
   buttons in the header (the default outline hover is transparent). */
.xhjo0uipm53 .xjdrga55tgk:hover,
.xdfkqwkyibq .xjdrga55tgk:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
}

/* The Register button's default hover swaps to --accent-hover, which the
   generator can set equal to the header background (button then blends into
   the header). In the header, keep the contrasting --accent background and
   give hover feedback via brightness instead. */
.xhjo0uipm53 .x7kipto3gyd:hover,
.xdfkqwkyibq .x7kipto3gyd:hover {
  background: var(--accent);
  filter: brightness(1.08);
}

/* Mobile toggle */
.fr1-header__menu-toggle {
  display: none;
  cursor: pointer;
  padding: 6px;
  color: var(--header-link);
}
.xi3zi9buhjs:last-child { display: none; }
.fr1-header.mobile-menu .xi3zi9buhjs:first-child { display: none; }
.fr1-header.mobile-menu .xi3zi9buhjs:last-child { display: block; }

/* Mobile account (shown below header on mobile) */
.xdfkqwkyibq {
  display: none;
  gap: 8px;
  padding: 10px 20px;
  background: var(--header-bg);
  border-top: 1px solid var(--border);
}
.xdfkqwkyibq .xuowko9woz5 { flex: 1; justify-content: center; font-size: 13px; padding: 8px; }

@media (max-width: 900px) {
  .xhjo0uipm53 { display: none; }
  .fr1-header__menu-toggle { display: block; }
  .xr9lxx5ca95 { margin-left: auto; }

  .fr1-header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .fr1-header.mobile-menu .fr1-header__nav { display: flex; }
  .fr1-header__nav .xffmv8cmxli { flex-direction: column; width: 100%; gap: 2px; }
  .fr1-header__nav .xjv9xncphb6 a { padding: 10px 12px; }

  .xdfkqwkyibq { display: flex; }
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.xbj601p3wdb {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
}
.xaaxtog1s0g {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
}
.x3l3scwr8uc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.x7lxnncb0qp {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.xobhv5kg2gg {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.xgnzobdzqj2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.xobhv5kg2gg.is-expanded .xgnzobdzqj2 {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.xobhv5kg2gg.is-expanded .xk603mo09ml {
  display: none;
}
.xzil5cz7ev0 {
  display: inline;
  margin: 0 0 0 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  vertical-align: baseline;
}
.xzil5cz7ev0:hover { color: var(--accent-hover); }
.x6w5r44574x {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.xfjv6lrorgw {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-card);
}
.xfjv6lrorgw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar */
.x55vj9bevev {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.xqeci5ex3g2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.xqeci5ex3g2:last-child { border-right: none; }
.x3qh4mm2z1s {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.xtfmqithm3g {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 -1 26 26' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v5c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 -1 26 26' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L3 7v5c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V7l-9-5z'/%3E%3C/svg%3E");
}
.x0lkyi2pxbl {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}
.xstyvqpgg4p {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12M22 7H2v5h20V7zM12 22V7M12 7H7.5a2.5 2.5 0 010-5C11 2 12 7 12 7zM12 7h4.5a2.5 2.5 0 000-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12v10H4V12M22 7H2v5h20V7zM12 22V7M12 7H7.5a2.5 2.5 0 010-5C11 2 12 7 12 7zM12 7h4.5a2.5 2.5 0 000-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
}
.xy56la7std6 {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0118 0v6M3 18a3 3 0 006 0v-3a3 3 0 00-6 0v3zM21 18a3 3 0 01-6 0v-3a3 3 0 016 0v3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 18v-6a9 9 0 0118 0v6M3 18a3 3 0 006 0v-3a3 3 0 00-6 0v3zM21 18a3 3 0 01-6 0v-3a3 3 0 016 0v3z'/%3E%3C/svg%3E");
}
.xkm05l08g2i strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.xkm05l08g2i span {
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .xaaxtog1s0g { grid-template-columns: 1fr; }
  .xfjv6lrorgw { display: none; }
  .x55vj9bevev { grid-template-columns: repeat(2, 1fr); }
  .xqeci5ex3g2:nth-child(2) { border-right: none; }
  .xqeci5ex3g2:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .x55vj9bevev { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════
   BONUS STRIP
══════════════════════════════════════ */
.x27s08zhjia {
  padding: 20px 0;
  background: var(--bg-base);
}
.x4mxs1mwqwy {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}
.x5gqmh8ojdm {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.x5gqmh8ojdm svg { color: var(--accent); width: 22px; height: 22px; }
.x0vsdt8ey8w { flex: 1; }
.x0vsdt8ey8w strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.x0vsdt8ey8w span {
  font-size: 13px;
  color: var(--text-secondary);
}
@media (max-width: 600px) {
  .x4mxs1mwqwy { flex-wrap: wrap; }
  .x4mxs1mwqwy .xuowko9woz5 { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════ */
.xh3qta83bap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.xi5op7lt4ve {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
}
.xatn3yugmri {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: var(--accent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex-shrink: 0;
}
.xhxwaja0e6a {
  -webkit-mask-image: url('media/slot-machine-68d2ca80a9a1f725685584.svg');
  mask-image: url('media/slot-machine-68d2ca80a9a1f725685584.svg');
}
.x4o127af6ob {
  -webkit-mask-image: url('media/type-diamant-2-68c0327148f8a601975776.svg');
  mask-image: url('media/type-diamant-2-68c0327148f8a601975776.svg');
}
.xgtqohz6813 {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
.xgtqohz6813:hover { color: var(--accent-hover); }


/* ══════════════════════════════════════
   GAMES — shared grid
══════════════════════════════════════ */
.xoftnidyp02 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.xm2wbanrije {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.xm2wbanrije:hover { border-color: var(--accent-border); transform: translateY(-2px); }

.xm27taztt7e {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.x033oz2s0nb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.x033oz2s0nb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.xm2wbanrije:hover .x033oz2s0nb img { transform: scale(1.04); }

.x9f6bq37rmt {
  position: absolute;
  inset: 0;
  background: rgba(13,13,20,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.xm2wbanrije:hover .x9f6bq37rmt { opacity: 1; }

.xleqgp4wpl4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 2px;
  gap: 4px;
}
.xleqgp4wpl4 .xm27taztt7e {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}
.xleqgp4wpl4 svg { flex-shrink: 0; color: var(--text-muted); }
.xs23ch76tb0 {
  padding: 2px 10px 8px;
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xs23ch76tb0 span + span::before { content: ', '; }

.xq8s6fxjvze {
  height: 3px;
  background: var(--bg-hover);
  margin: 0 10px 8px;
  border-radius: 2px;
  overflow: hidden;
}
.xya7bdmeb8q {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* Live badge on game cards */
.xm2wbanrije .xua994fzizk {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
  z-index: 2;
}

@media (max-width: 600px) {
  .xoftnidyp02 { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}


/* ══════════════════════════════════════
   SEARCH
══════════════════════════════════════ */
.xxr2qerc788 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: border-color var(--transition);
}
.xxr2qerc788:focus-within { border-color: var(--accent-border); }
.xtn86hc9ecv {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
}
.xtn86hc9ecv::placeholder { color: var(--text-muted); }
.xev4hee5b55 {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}
.xev4hee5b55:hover { color: var(--accent); }

.x6ilq3ssy4c {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.fr1-search__filter {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.fr1-search__filter:hover,
.fr1-search__filter.active {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Autocomplete */
.autocomplete-list {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
}


/* ══════════════════════════════════════
   PROVIDERS
══════════════════════════════════════ */
.xoq4pgi116h {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}
.xfdmhsql2g0 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.xfdmhsql2g0:hover {
  border-color: var(--accent-border);
  background: #bdbdbd;
}
.x6xwc4d7f7c { display: none; }
.x603i387uqt img {
  min-width: 100px;
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.xcltw9eqfmu {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .xoq4pgi116h { grid-template-columns: repeat(3, 1fr); }
}


/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.xpx1y1a4lsh {
  position: relative;
  padding: 0 48px 32px;
}
.xzhwweea5ld {
  overflow: hidden;
}
.x59l6x9rnuj {
  display: flex;
  gap: 0;
  list-style: none;
  transition: transform var(--transition);
}
.x59l6x9rnuj > li {
  flex: 0 0 33.3333%;
  padding: 0 6px;
}
.xg8feye0cws {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color var(--transition), color var(--transition), opacity var(--transition);
}
.xg8feye0cws:hover { border-color: var(--accent-border); color: var(--accent); }
.xg8feye0cws:disabled { opacity: .35; cursor: default; }
.x22wjvpuxwq { left: 0; }
.xd51o4qbt6o { right: 0; }
.xup8bbhyw56 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.fr1-reviews__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  padding: 0;
}
.fr1-reviews__dot.active { background: var(--accent); }
@media (max-width: 900px) {
  .xpx1y1a4lsh { padding: 0 42px 32px; }
  .x59l6x9rnuj > li { flex-basis: 33.3333%; padding: 0 4px; }
  .xg8feye0cws { display: block; }
}
@media (max-width: 600px) {
  .xpx1y1a4lsh { padding: 0 36px 32px; }
  .xg8feye0cws { display: block; width: 30px; height: 30px; font-size: 24px; }
  .x59l6x9rnuj > li { flex-basis: 100%; padding: 0 3px; }
}
.xk5nxpukfc4 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}
.xk5nxpukfc4:hover { border-color: var(--border-strong); }
.xgb10lc5bdm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.xmpcf775xox {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-hover);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.xb283le3su1 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.xwg40ko8m2e {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.x01uawrj64r {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

/* Star rating via --rating CSS var */
.xkw1vpmbgwm {
  --star-size: 14px;
  --star-color: var(--accent);
  --star-empty: var(--bg-hover);
  display: inline-flex;
  gap: 2px;
}
.xkw1vpmbgwm::before {
  content: '★★★★★';
  font-size: var(--star-size);
  letter-spacing: 2px;
  background: linear-gradient(
    90deg,
    var(--star-color) calc(var(--rating) / 5 * 100%),
    var(--star-empty) calc(var(--rating) / 5 * 100%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xks91a4ptlb {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.xfabxsdh5s5 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.x7flns4lkt5 { display: flex; gap: 12px; }
.xn9pj90w6oz {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.xn9pj90w6oz:hover { color: var(--text-secondary); }
.xn9pj90w6oz svg { fill: currentColor; }


/* ══════════════════════════════════════
   SEO CONTENT
══════════════════════════════════════ */
.xjrovrbrtox { padding: clamp(24px, 3vw, 48px) 0; }
.x6p5g4001bg .xercto5ioex {
  padding: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  word-wrap: break-word;
}
.x6p5g4001bg .xercto5ioex > *:first-child { margin-top: 0; }
.x6p5g4001bg .xercto5ioex > *:last-child { margin-bottom: 0; }
.x6p5g4001bg .xercto5ioex h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  /* Item 11: use the body text colour rather than the heading/accent colour
     so content headings are never garish (e.g. bright gold). Hierarchy is
     carried by size + weight. Applies uniformly to SEO and service pages. */
  color: var(--text-secondary);
  /* Item 2: roomier, uniform vertical rhythm on every page. */
  margin: 28px 0 12px;
}
.x6p5g4001bg .xercto5ioex h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--text-secondary);
  margin: 24px 0 10px;
}
.x6p5g4001bg .xercto5ioex h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 20px 0 8px;
}
.x6p5g4001bg .xercto5ioex p { margin: .75em 0; }
.x6p5g4001bg .xercto5ioex a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.x6p5g4001bg .xercto5ioex a:hover { color: var(--accent-hover); }
.x6p5g4001bg .xercto5ioex ul,
.x6p5g4001bg .xercto5ioex ol {
  margin: .8em 0;
  padding-left: 1.5em;
}
.x6p5g4001bg .xercto5ioex ul { list-style: disc; }
.x6p5g4001bg .xercto5ioex ol { list-style: decimal; }
.x6p5g4001bg .xercto5ioex li { margin: .35em 0; }
.x6p5g4001bg .xercto5ioex hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 1.25em 0;
}
.x6p5g4001bg .xercto5ioex blockquote {
  margin: 1.1em 0;
  padding: .9em 1em;
  border-left: 3px solid var(--accent-border);
  background: var(--bg-elevated);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.x6p5g4001bg .xercto5ioex table {
  width: 100%;
  border-collapse: collapse;
  /* Item 3: clear vertical separation from surrounding copy. */
  margin: 18px 0;
  font-size: .97em;
}
.x6p5g4001bg .xercto5ioex th,
.x6p5g4001bg .xercto5ioex td {
  text-align: left;
  padding: 10px 12px;
  /* Item 3: full cell border instead of only a bottom rule. */
  border: 1px solid var(--border-strong);
  vertical-align: top;
}
.x6p5g4001bg .xercto5ioex th { color: var(--text-secondary); font-weight: 600; }
.x6p5g4001bg .xercto5ioex img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
  border-radius: var(--radius-md);
}


/* ══════════════════════════════════════
   FAQ / ACCORDION
══════════════════════════════════════ */
.xbf3oeknvov { display: flex; flex-direction: column; gap: 8px; }
.x4hpi7fkyl1 {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.x4hpi7fkyl1.active { border-color: var(--accent-border); }
.xfqh6lrjaiz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
}
.xfqh6lrjaiz:hover { color: var(--accent); }
.xpocni30ws7 {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.x4hpi7fkyl1.active .xpocni30ws7 { transform: rotate(180deg); }
.fr1-accordion__panel {
  padding: 0 20px 16px;
}
.fr1-accordion__panel[hidden] { display: none; }
.xng0w7v0f6g p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.xrlgxrt2dkw {
  background: var(--header-bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  /* Item 10: all footer text centered. */
  text-align: center;
  /* Footer sits on the header brand surface → use the header link colour
     so text stays readable whatever the page palette. */
  color: color-mix(in srgb, var(--header-link) 75%, transparent);
}
.xel7iu8hrt5 {
  margin-bottom: 24px;
}
.xn8jm5ygemq ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  list-style: none;
  justify-content: center;
}
.xn8jm5ygemq a {
  font-size: 13px;
  color: color-mix(in srgb, var(--header-link) 80%, transparent);
  text-decoration: none;
  transition: color var(--transition);
}
.xn8jm5ygemq a:hover { color: var(--header-link); }

.xdafrj0v15m {
  font-size: 12px;
  color: color-mix(in srgb, var(--header-link) 68%, transparent);
  line-height: 1.7;
  /* Item 9: no border, no padding. */
  padding: 0;
  border: 0;
  margin-bottom: 20px;
}
.x2ny9zs2a2v {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.xkwicaixpvn {
  font-size: 12px;
  color: color-mix(in srgb, var(--header-link) 68%, transparent);
}


/* ══════════════════════════════════════
   404 PAGE
══════════════════════════════════════ */
.xrbhn3q5c4e {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  text-align: center;
  padding: 60px 20px;
}
.x34stkz4zzh {
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.xhabk8sq48f {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.xojtsx835gy {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}


/* ══════════════════════════════════════
   GO / REDIRECT PAGE
══════════════════════════════════════ */
.xu4ilg8d6f2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}
.xgt5zt074zl {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: fr1-spin .75s linear infinite;
  margin: 0 auto 20px;
}
@keyframes fr1-spin { to { transform: rotate(360deg); } }
.xu4ilg8d6f2 p { font-size: 14px; color: var(--text-muted); }


/* Mobile-only adjustments */
@media (max-width: 900px) {
  .xbj601p3wdb { padding: 68px 0 0; }
}
@media (min-width: 901px) {
  .xbj601p3wdb { padding: 48px 0 0; }
}
@media (max-width: 600px) {
  .x59l6x9rnuj > li { flex-basis: 100%; }
}

/* Promo codes page layout */
.xvdskv93yxa {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.fr1-header__nav > a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--header-link);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.fr1-header__nav > a:hover,
.fr1-header__nav > a.active,
.fr1-header__nav > a[aria-current="page"] {
  color: var(--header-link);
  background: color-mix(in srgb, var(--header-bg) 80%, var(--header-link) 20%);
}
.xhzv0p6e8tz {
  display: none;
  cursor: pointer;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
}
.xhzv0p6e8tz span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}
.x5ahlyscmu7 { position: relative; }
.xwlnebi8qhx {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.xhaefacrqm6 {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  min-width: 120px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  z-index: 200;
}
.x5ahlyscmu7:hover .xhaefacrqm6,
.x5ahlyscmu7.open .xhaefacrqm6,
.x5ahlyscmu7:focus-within .xhaefacrqm6 { display: block; }
.xhaefacrqm6 a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}
.xhaefacrqm6 a:hover { background: var(--bg-hover); color: var(--text-primary); }
.xhaefacrqm6 a.current { color: var(--accent); }
.x5wet6f9eig {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  padding: 16px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}
.x5wet6f9eig.open { display: flex; flex-direction: column; gap: 8px; }
.x5wet6f9eig a {
  padding: 10px 12px;
  color: var(--header-link);
  border-radius: var(--radius-sm);
}
.x5wet6f9eig a:hover,
.x5wet6f9eig a[aria-current="page"] { background: color-mix(in srgb, var(--header-bg) 80%, var(--header-link) 20%); color: var(--header-link); }
.xykfmupqga0 {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
}
.xp6mvuolgr4 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.xs8jskodpg1 { position: relative; z-index: 1; max-width: 860px; }
.x2ub5f9enqr { margin-bottom: 14px; }
.x3rouxcvjvz {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.xxeliyor7gf {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.x8gpafaxv36 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding: 48px 0;
}
.x48zjbx7jgf,
.x5a7lwowduo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.x48zjbx7jgf { padding: 28px; }
.x48zjbx7jgf .xercto5ioex { color: var(--text-secondary); line-height: 1.75; }
.x48zjbx7jgf .xercto5ioex h1,
.x48zjbx7jgf .xercto5ioex h2,
.x48zjbx7jgf .xercto5ioex h3 { color: var(--text-primary); margin: 1.25em 0 .55em; }
.x48zjbx7jgf .xercto5ioex h1:first-child,
.x48zjbx7jgf .xercto5ioex h2:first-child,
.x48zjbx7jgf .xercto5ioex h3:first-child { margin-top: 0; }
.x48zjbx7jgf .xercto5ioex p { margin: 0 0 1em; }
.x48zjbx7jgf .xercto5ioex a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.xsvjnvlfegr { position: sticky; top: calc(var(--header-h) + 24px); }
.x5a7lwowduo { padding: 24px; }
.xojhibhty2e {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.xklpm671m0x { margin: 0 0 10px; color: var(--text-primary); font-size: 24px; font-weight: 700; }
.x71akd8v8iu { margin: 0 0 18px; color: var(--text-secondary); line-height: 1.6; }
.xiu5cb9gtzv { margin: 14px 0 0; color: var(--text-muted); font-size: 12px; }
.xnxep0a2t5i {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 28px;
}
.x543ij19jrb { color: var(--text-secondary); line-height: 1.6; }
.xxj5rsoawae, .xhro9qali4t { display: flex; flex-wrap: wrap; gap: 8px; }
.xtj33c9sehi { max-width: 90px; object-fit: contain; }
.xp1lukj99y2 { margin: 0 0 12px; color: var(--text-primary); font-weight: 700; }
.x4x1egafeos { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.x4x1egafeos a { color: var(--text-secondary); }
.x4x1egafeos a:hover { color: var(--accent); }
.xzz2d2f8ros {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.x1cdxvrzr3n { color: var(--text-secondary); font-size: 13px; }
.x2ny9zs2a2v {
  color: var(--text-muted);
  font-size: 13px;
}
.xkwicaixpvn { margin: 0; }
@media (max-width: 900px) {
  .xvdskv93yxa { gap: 12px; }
  .fr1-header__nav { display: none; }
  .xhzv0p6e8tz { display: block; }
  .xykfmupqga0 { padding: 68px 0 38px; }
  .x8gpafaxv36 { grid-template-columns: 1fr; padding: 32px 0; }
  .xsvjnvlfegr { position: static; }
  .xnxep0a2t5i { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .x3rouxcvjvz { font-size: 34px; }
  .x48zjbx7jgf { padding: 20px; }
  .xnxep0a2t5i { grid-template-columns: 1fr; }
}


/* Final mobile and service-page adjustments */
@media (min-width: 901px) {
  .xbj601p3wdb { padding: 48px 0 0; }
}
@media (max-width: 900px) {
  .xbj601p3wdb { padding-top: 68px; }
}
@media (max-width: 600px) {
  .x59l6x9rnuj > li { flex: 0 0 100%; max-width: 100%; }
}
.xl85jsckb89 {
  padding: 72px 0 40px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.xbm24tx3sc8 {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.xh91hp1k84r {
  margin: 0 0 24px;
  color: var(--text-primary);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}
.xknk697gasd { margin: 0 auto; }
.xvykq8nis5w { padding: 40px 0 72px; }
.xg2el73hh5d {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
}
/* Randomized wrapper around the rendered .content body — adds extra
   vertical breathing room on service pages. */
.xuf72vkqdc7 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.xg2el73hh5d :where(h2,h3,h4) { color: var(--text-secondary); margin: 28px 0 12px; }
.xg2el73hh5d :where(p,li) { line-height: 1.7; }
.xg2el73hh5d a { color: var(--accent); }
@media (max-width: 600px) {
  .xl85jsckb89 { padding: 92px 0 28px; }
  .xbm24tx3sc8 { padding: 28px 18px; }
  .xg2el73hh5d { padding: 22px 18px; }
}

/* Service pages layout */
body:has(.x3a2k7f1yh0) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:has(.x3a2k7f1yh0) > main.x3a2k7f1yh0 {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body:has(.x3a2k7f1yh0) > .xrlgxrt2dkw {
  flex-shrink: 0;
}

.x3a2k7f1yh0 .xl85jsckb89 {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  padding: 96px 0 56px;
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 92, 255, 0.2), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(0, 214, 255, 0.13), transparent 30%),
    var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.x3a2k7f1yh0 .xl85jsckb89 > .xy12l4939y9 {
  width: 100%;
}

.x3a2k7f1yh0 .xbm24tx3sc8 {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.x3a2k7f1yh0 .xh91hp1k84r {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-primary);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.x3a2k7f1yh0 .xknk697gasd {
  margin: 0 auto;
}

.x3a2k7f1yh0 .xg2el73hh5d {
  max-width: 860px;
  margin: 32px auto 0;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-align: left;
}

.x3a2k7f1yh0 .xg2el73hh5d :where(h2,h3,h4) {
  color: var(--text-secondary);
  margin: 28px 0 12px;
  line-height: 1.2;
}

.x3a2k7f1yh0 .xg2el73hh5d :where(p,li) {
  line-height: 1.75;
}

.x3a2k7f1yh0 .xg2el73hh5d > *:first-child { margin-top: 0; }
.x3a2k7f1yh0 .xg2el73hh5d > *:last-child { margin-bottom: 0; }
.x3a2k7f1yh0 .xg2el73hh5d a { color: var(--accent); }
.xvykq8nis5w { display: contents; }

@media (max-width: 900px) {
  .x3a2k7f1yh0 .xl85jsckb89 {
    align-items: flex-start;
    padding: 116px 0 34px;
  }

  .x3a2k7f1yh0 .xbm24tx3sc8 {
    padding: 28px 18px;
  }

  .x3a2k7f1yh0 .xg2el73hh5d {
    margin-top: 24px;
    padding: 20px 16px;
  }
}


/* FR-1 service pages aligned with index hero/content layout */
.x3a2k7f1yh0 {
  flex: 1 0 auto;
  display: block;
}
body:has(.x3a2k7f1yh0) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:has(.x3a2k7f1yh0) > .xrlgxrt2dkw { flex-shrink: 0; }
.x3a2k7f1yh0 .xbj601p3wdb {
  padding: 72px 0 40px;
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 92, 255, 0.2), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(0, 214, 255, 0.13), transparent 30%),
    var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.x3a2k7f1yh0 .xaaxtog1s0g {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}
.x3a2k7f1yh0 .xi3cpfu8yst {
  max-width: 860px;
  align-items: center;
}
.x3a2k7f1yh0 .x7lxnncb0qp {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.x3a2k7f1yh0 .x6w5r44574x {
  justify-content: center;
}
.x3a2k7f1yh0 .xjrovrbrtox {
  padding: 56px 0 72px;
}
.x3a2k7f1yh0 .x6p5g4001bg .xercto5ioex,
.x3a2k7f1yh0 .x6p5g4001bg .xg2el73hh5d {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .x3a2k7f1yh0 .xbj601p3wdb { padding: 96px 0 34px; }
}
@media (max-width: 600px) {
  .x3a2k7f1yh0 .xbj601p3wdb { padding: 86px 0 28px; }
  .x3a2k7f1yh0 .xjrovrbrtox { padding: 32px 0 56px; }
}

/* FR-1 final service overrides: use index content/hero styling exactly */
.x3a2k7f1yh0 .xbj601p3wdb {
  display: block;
}
.x3a2k7f1yh0 .xg2el73hh5d {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text-secondary);
  text-align: left;
}
.x3a2k7f1yh0 .x6p5g4001bg .xg2el73hh5d :where(h2,h3,h4) {
  color: var(--text-secondary);
}
