/* 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 > .x9g4ne022eg {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.xnelgugsiwu {
  flex-shrink: 0;
}
.xnelgugsiwu img {
  height: 40px;
  width: auto;
}
.fr1-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fr1-header__nav .xuodeprps6c {
  display: flex;
  gap: 4px;
  list-style: none;
}
.fr1-header__nav .xsoyfdf5mfl 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 .xsoyfdf5mfl a:hover,
.fr1-header__nav .xsoyfdf5mfl.active a {
  color: var(--header-link);
  background: color-mix(in srgb, var(--header-bg) 80%, var(--header-link) 20%);
}

.x52m8jxkc9x {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language switcher */
.xmb7eoldm6n {
  position: relative;
}
.x496u1lmy3q {
  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);
}
.x496u1lmy3q:hover { border-color: var(--accent); }
.xbdcncujipp svg { transition: transform var(--transition); }
.xmb7eoldm6n:hover .xbdcncujipp svg,
.xmb7eoldm6n:focus-within .xbdcncujipp svg { transform: rotate(180deg); }

.xtug13cjegt {
  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;
}
.xmb7eoldm6n::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}
.xmb7eoldm6n:hover .xtug13cjegt,
.xmb7eoldm6n:focus-within .xtug13cjegt { display: block; }
.x5vv4z9bhj1 {
  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);
}
.x5vv4z9bhj1:hover { background: var(--bg-hover); color: var(--text-primary); }
.xg4hhpzrtlz { color: var(--accent); }

/* Account buttons */
.x4x43wygwbn { display: flex; gap: 8px; }
.x4x43wygwbn .xok2vlhnboh { 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). */
.x4x43wygwbn .xo9ccujd6gn:hover,
.x84dgtnig7p .xo9ccujd6gn: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. */
.x4x43wygwbn .xgo23ofmb7f:hover,
.x84dgtnig7p .xgo23ofmb7f:hover {
  background: var(--accent);
  filter: brightness(1.08);
}

/* Mobile toggle */
.fr1-header__menu-toggle {
  display: none;
  cursor: pointer;
  padding: 6px;
  color: var(--header-link);
}
.x2rijggykib:last-child { display: none; }
.fr1-header.mobile-menu .x2rijggykib:first-child { display: none; }
.fr1-header.mobile-menu .x2rijggykib:last-child { display: block; }

/* Mobile account (shown below header on mobile) */
.x84dgtnig7p {
  display: none;
  gap: 8px;
  padding: 10px 20px;
  background: var(--header-bg);
  border-top: 1px solid var(--border);
}
.x84dgtnig7p .xok2vlhnboh { flex: 1; justify-content: center; font-size: 13px; padding: 8px; }

@media (max-width: 900px) {
  .x4x43wygwbn { display: none; }
  .fr1-header__menu-toggle { display: block; }
  .x52m8jxkc9x { 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 .xuodeprps6c { flex-direction: column; width: 100%; gap: 2px; }
  .fr1-header__nav .xsoyfdf5mfl a { padding: 10px 12px; }

  .x84dgtnig7p { display: flex; }
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.x0tr5o9ztom {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 0;
}
.xe76fn73j6c {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
}
.x9ii3am64lv {
  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;
}
.xyeacgz8e99 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.xt2drygr65g {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.xsbfel5xhal {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.xt2drygr65g.is-expanded .xsbfel5xhal {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.xt2drygr65g.is-expanded .x8dli2mxz4l {
  display: none;
}
.xrg6ucp9xsj {
  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;
}
.xrg6ucp9xsj:hover { color: var(--accent-hover); }
.xtsyw0ovm9a {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.xohvwbftcpo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--bg-card);
}
.xohvwbftcpo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trust bar */
.x1wwr6ja4jl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.xy3ndqdho8v {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.xy3ndqdho8v:last-child { border-right: none; }
.xdt71kuaf5h {
  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;
}
.xe6xpi1dtxj {
  -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");
}
.x2nv3z59kw8 {
  -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");
}
.xdaxg1iyg9h {
  -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");
}
.xoonewrd5kv {
  -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");
}
.xrx88u3d2dg strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.xrx88u3d2dg span {
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .xe76fn73j6c { grid-template-columns: 1fr; }
  .xohvwbftcpo { display: none; }
  .x1wwr6ja4jl { grid-template-columns: repeat(2, 1fr); }
  .xy3ndqdho8v:nth-child(2) { border-right: none; }
  .xy3ndqdho8v:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .x1wwr6ja4jl { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════
   BONUS STRIP
══════════════════════════════════════ */
.xxo5dzg1yvy {
  padding: 20px 0;
  background: var(--bg-base);
}
.xhrgtv77njz {
  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;
}
.x1oslwfxkcz {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.x1oslwfxkcz svg { color: var(--accent); width: 22px; height: 22px; }
.xzzft8q7pfk { flex: 1; }
.xzzft8q7pfk strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.xzzft8q7pfk span {
  font-size: 13px;
  color: var(--text-secondary);
}
@media (max-width: 600px) {
  .xhrgtv77njz { flex-wrap: wrap; }
  .xhrgtv77njz .xok2vlhnboh { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════ */
.xmexg0om6il {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.xt85ml2ne1k {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
}
.xvcv56rfo0p {
  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;
}
.x1i16ahnpd2 {
  -webkit-mask-image: url('media/slot-machine-68d2ca80a9a1f725685584.svg');
  mask-image: url('media/slot-machine-68d2ca80a9a1f725685584.svg');
}
.xe0gsmid6jp {
  -webkit-mask-image: url('media/type-diamant-2-68c0327148f8a601975776.svg');
  mask-image: url('media/type-diamant-2-68c0327148f8a601975776.svg');
}
.xv5k9azziy7 {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
.xv5k9azziy7:hover { color: var(--accent-hover); }


/* ══════════════════════════════════════
   GAMES — shared grid
══════════════════════════════════════ */
.xwec3gwc2cg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.xn1hh1tc1qb {
  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;
}
.xn1hh1tc1qb:hover { border-color: var(--accent-border); transform: translateY(-2px); }

.xwajuguzifx {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.x2axhdweqy6 {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.x2axhdweqy6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.xn1hh1tc1qb:hover .x2axhdweqy6 img { transform: scale(1.04); }

.xpyt3ooh7se {
  position: absolute;
  inset: 0;
  background: rgba(13,13,20,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.xn1hh1tc1qb:hover .xpyt3ooh7se { opacity: 1; }

.xhdrctibb6e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 2px;
  gap: 4px;
}
.xhdrctibb6e .xwajuguzifx {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}
.xhdrctibb6e svg { flex-shrink: 0; color: var(--text-muted); }
.xj8ucb2kp3k {
  padding: 2px 10px 8px;
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.xj8ucb2kp3k span + span::before { content: ', '; }

.xm97tn2u964 {
  height: 3px;
  background: var(--bg-hover);
  margin: 0 10px 8px;
  border-radius: 2px;
  overflow: hidden;
}
.xe7ln1z490j {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* Live badge on game cards */
.xn1hh1tc1qb .xn57ymzvi4j {
  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) {
  .xwec3gwc2cg { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}


/* ══════════════════════════════════════
   SEARCH
══════════════════════════════════════ */
.xrk1nxwcuw6 {
  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);
}
.xrk1nxwcuw6:focus-within { border-color: var(--accent-border); }
.xd1t9gslthp {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
}
.xd1t9gslthp::placeholder { color: var(--text-muted); }
.xyiezijovns {
  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);
}
.xyiezijovns:hover { color: var(--accent); }

.xxbfflq2217 {
  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
══════════════════════════════════════ */
.xhytq2qjhrx {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
}
.x5ev31s2vrs {
  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);
}
.x5ev31s2vrs:hover {
  border-color: var(--accent-border);
  background: #bdbdbd;
}
.xviltdqlv2u { display: none; }
.x5gkxcagjwl img {
  min-width: 100px;
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.xkz0g927zqo {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 600px) {
  .xhytq2qjhrx { grid-template-columns: repeat(3, 1fr); }
}


/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.xjqxwza9igl {
  position: relative;
  padding: 0 48px 32px;
}
.xot64uwvoev {
  overflow: hidden;
}
.xr730svcc5a {
  display: flex;
  gap: 0;
  list-style: none;
  transition: transform var(--transition);
}
.xr730svcc5a > li {
  flex: 0 0 33.3333%;
  padding: 0 6px;
}
.xlgmi92s44z {
  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);
}
.xlgmi92s44z:hover { border-color: var(--accent-border); color: var(--accent); }
.xlgmi92s44z:disabled { opacity: .35; cursor: default; }
.xvljedql7xm { left: 0; }
.xgtdmqtkp3c { right: 0; }
.xrlknkf59uq {
  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) {
  .xjqxwza9igl { padding: 0 42px 32px; }
  .xr730svcc5a > li { flex-basis: 33.3333%; padding: 0 4px; }
  .xlgmi92s44z { display: block; }
}
@media (max-width: 600px) {
  .xjqxwza9igl { padding: 0 36px 32px; }
  .xlgmi92s44z { display: block; width: 30px; height: 30px; font-size: 24px; }
  .xr730svcc5a > li { flex-basis: 100%; padding: 0 3px; }
}
.xt3ah3cqr25 {
  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);
}
.xt3ah3cqr25:hover { border-color: var(--border-strong); }
.xr08a1sk4gb {
  display: flex;
  align-items: center;
  gap: 10px;
}
.x142mdjs9au {
  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;
}
.xw4mf3kye2z {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.xcubgen1aj9 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.xqs0aeaquco {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

/* Star rating via --rating CSS var */
.xfqe5dc3y4j {
  --star-size: 14px;
  --star-color: var(--accent);
  --star-empty: var(--bg-hover);
  display: inline-flex;
  gap: 2px;
}
.xfqe5dc3y4j::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;
}

.xswhmp3sugu {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.xg3egx87j19 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.xeq56rzqeto { display: flex; gap: 12px; }
.xrx52z7bccp {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.xrx52z7bccp:hover { color: var(--text-secondary); }
.xrx52z7bccp svg { fill: currentColor; }


/* ══════════════════════════════════════
   SEO CONTENT
══════════════════════════════════════ */
.xpclx4npt7g { padding: clamp(24px, 3vw, 48px) 0; }
.x5avevkbn94 .x9ic03hk4on {
  padding: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  word-wrap: break-word;
}
.x5avevkbn94 .x9ic03hk4on > *:first-child { margin-top: 0; }
.x5avevkbn94 .x9ic03hk4on > *:last-child { margin-bottom: 0; }
.x5avevkbn94 .x9ic03hk4on 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;
}
.x5avevkbn94 .x9ic03hk4on h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--text-secondary);
  margin: 24px 0 10px;
}
.x5avevkbn94 .x9ic03hk4on h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 20px 0 8px;
}
.x5avevkbn94 .x9ic03hk4on p { margin: .75em 0; }
.x5avevkbn94 .x9ic03hk4on a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.x5avevkbn94 .x9ic03hk4on a:hover { color: var(--accent-hover); }
.x5avevkbn94 .x9ic03hk4on ul,
.x5avevkbn94 .x9ic03hk4on ol {
  margin: .8em 0;
  padding-left: 1.5em;
}
.x5avevkbn94 .x9ic03hk4on ul { list-style: disc; }
.x5avevkbn94 .x9ic03hk4on ol { list-style: decimal; }
.x5avevkbn94 .x9ic03hk4on li { margin: .35em 0; }
.x5avevkbn94 .x9ic03hk4on hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 1.25em 0;
}
.x5avevkbn94 .x9ic03hk4on 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;
}
.x5avevkbn94 .x9ic03hk4on table {
  width: 100%;
  border-collapse: collapse;
  /* Item 3: clear vertical separation from surrounding copy. */
  margin: 18px 0;
  font-size: .97em;
}
.x5avevkbn94 .x9ic03hk4on th,
.x5avevkbn94 .x9ic03hk4on 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;
}
.x5avevkbn94 .x9ic03hk4on th { color: var(--text-secondary); font-weight: 600; }
.x5avevkbn94 .x9ic03hk4on img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
  border-radius: var(--radius-md);
}


/* ══════════════════════════════════════
   FAQ / ACCORDION
══════════════════════════════════════ */
.xe0wqt0uzgu { display: flex; flex-direction: column; gap: 8px; }
.xeqxyve8bhw {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.xeqxyve8bhw.active { border-color: var(--accent-border); }
.xwk9lwdtoyi {
  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);
}
.xwk9lwdtoyi:hover { color: var(--accent); }
.xpydxnrzd8a {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.xeqxyve8bhw.active .xpydxnrzd8a { transform: rotate(180deg); }
.fr1-accordion__panel {
  padding: 0 20px 16px;
}
.fr1-accordion__panel[hidden] { display: none; }
.xa4ju6nsacz p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.xqp90g66dsb {
  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);
}
.xh190xysv2r {
  margin-bottom: 24px;
}
.xzuqu208gm7 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  list-style: none;
  justify-content: center;
}
.xzuqu208gm7 a {
  font-size: 13px;
  color: color-mix(in srgb, var(--header-link) 80%, transparent);
  text-decoration: none;
  transition: color var(--transition);
}
.xzuqu208gm7 a:hover { color: var(--header-link); }

.xri12ih7ryh {
  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;
}
.xf2bl2y89wm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.xreltep6g99 {
  font-size: 12px;
  color: color-mix(in srgb, var(--header-link) 68%, transparent);
}


/* ══════════════════════════════════════
   404 PAGE
══════════════════════════════════════ */
.xsxqmxud6zq {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  text-align: center;
  padding: 60px 20px;
}
.xxgqissw29d {
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.xbclx1yux94 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.x8hvzjqgp1u {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}


/* ══════════════════════════════════════
   GO / REDIRECT PAGE
══════════════════════════════════════ */
.xlqebelnywh {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}
.xk0alqzsmes {
  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); } }
.xlqebelnywh p { font-size: 14px; color: var(--text-muted); }


/* Mobile-only adjustments */
@media (max-width: 900px) {
  .x0tr5o9ztom { padding: 68px 0 0; }
}
@media (min-width: 901px) {
  .x0tr5o9ztom { padding: 48px 0 0; }
}
@media (max-width: 600px) {
  .xr730svcc5a > li { flex-basis: 100%; }
}

/* Promo codes page layout */
.x2arietzvnf {
  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%);
}
.xuq77g0by92 {
  display: none;
  cursor: pointer;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
}
.xuq77g0by92 span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}
.xfs4umcox08 { position: relative; }
.xqzr7dyygso {
  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);
}
.xvpdykeadqw {
  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;
}
.xfs4umcox08:hover .xvpdykeadqw,
.xfs4umcox08.open .xvpdykeadqw,
.xfs4umcox08:focus-within .xvpdykeadqw { display: block; }
.xvpdykeadqw a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}
.xvpdykeadqw a:hover { background: var(--bg-hover); color: var(--text-primary); }
.xvpdykeadqw a.current { color: var(--accent); }
.xbdn1cac2qk {
  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);
}
.xbdn1cac2qk.open { display: flex; flex-direction: column; gap: 8px; }
.xbdn1cac2qk a {
  padding: 10px 12px;
  color: var(--header-link);
  border-radius: var(--radius-sm);
}
.xbdn1cac2qk a:hover,
.xbdn1cac2qk a[aria-current="page"] { background: color-mix(in srgb, var(--header-bg) 80%, var(--header-link) 20%); color: var(--header-link); }
.xntelq84skn {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 52px;
}
.xjxonrldojt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.xws3151emi8 { position: relative; z-index: 1; max-width: 860px; }
.xmyu46xcv4y { margin-bottom: 14px; }
.x700k9htvmd {
  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);
}
.xy71juu2mec {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.xnmm4afubt0 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding: 48px 0;
}
.xd6z2iq04m0,
.xxthjjfcbvp {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.xd6z2iq04m0 { padding: 28px; }
.xd6z2iq04m0 .x9ic03hk4on { color: var(--text-secondary); line-height: 1.75; }
.xd6z2iq04m0 .x9ic03hk4on h1,
.xd6z2iq04m0 .x9ic03hk4on h2,
.xd6z2iq04m0 .x9ic03hk4on h3 { color: var(--text-primary); margin: 1.25em 0 .55em; }
.xd6z2iq04m0 .x9ic03hk4on h1:first-child,
.xd6z2iq04m0 .x9ic03hk4on h2:first-child,
.xd6z2iq04m0 .x9ic03hk4on h3:first-child { margin-top: 0; }
.xd6z2iq04m0 .x9ic03hk4on p { margin: 0 0 1em; }
.xd6z2iq04m0 .x9ic03hk4on a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.xtmle4o7gix { position: sticky; top: calc(var(--header-h) + 24px); }
.xxthjjfcbvp { padding: 24px; }
.xbixn7yb17q {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.xdjuxs1s8rb { margin: 0 0 10px; color: var(--text-primary); font-size: 24px; font-weight: 700; }
.xxsr4e00xsc { margin: 0 0 18px; color: var(--text-secondary); line-height: 1.6; }
.xb1plvq1bxb { margin: 14px 0 0; color: var(--text-muted); font-size: 12px; }
.xg5scd30v6p {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 28px;
}
.x8bxi8r9cbr { color: var(--text-secondary); line-height: 1.6; }
.xwm3vt8mnba, .xp9r3wbcoc8 { display: flex; flex-wrap: wrap; gap: 8px; }
.xy4biq0jvml { max-width: 90px; object-fit: contain; }
.xsnsiqx8ix9 { margin: 0 0 12px; color: var(--text-primary); font-weight: 700; }
.xtiohqj2k3d { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.xtiohqj2k3d a { color: var(--text-secondary); }
.xtiohqj2k3d a:hover { color: var(--accent); }
.xsql9vmgeru {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}
.x1uoxsryvrk { color: var(--text-secondary); font-size: 13px; }
.xf2bl2y89wm {
  color: var(--text-muted);
  font-size: 13px;
}
.xreltep6g99 { margin: 0; }
@media (max-width: 900px) {
  .x2arietzvnf { gap: 12px; }
  .fr1-header__nav { display: none; }
  .xuq77g0by92 { display: block; }
  .xntelq84skn { padding: 68px 0 38px; }
  .xnmm4afubt0 { grid-template-columns: 1fr; padding: 32px 0; }
  .xtmle4o7gix { position: static; }
  .xg5scd30v6p { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .x700k9htvmd { font-size: 34px; }
  .xd6z2iq04m0 { padding: 20px; }
  .xg5scd30v6p { grid-template-columns: 1fr; }
}


/* Final mobile and service-page adjustments */
@media (min-width: 901px) {
  .x0tr5o9ztom { padding: 48px 0 0; }
}
@media (max-width: 900px) {
  .x0tr5o9ztom { padding-top: 68px; }
}
@media (max-width: 600px) {
  .xr730svcc5a > li { flex: 0 0 100%; max-width: 100%; }
}
.x7hofnwj0f3 {
  padding: 72px 0 40px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.xdaxawea1xp {
  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;
}
.xmgvwzwl27j {
  margin: 0 0 24px;
  color: var(--text-primary);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}
.xdwzbub4stj { margin: 0 auto; }
.x2zzrif2t46 { padding: 40px 0 72px; }
.xn1d1fpz1zp {
  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. */
.x448kmqz7ig {
  padding-top: 40px;
  padding-bottom: 40px;
}
.xn1d1fpz1zp :where(h2,h3,h4) { color: var(--text-secondary); margin: 28px 0 12px; }
.xn1d1fpz1zp :where(p,li) { line-height: 1.7; }
.xn1d1fpz1zp a { color: var(--accent); }
@media (max-width: 600px) {
  .x7hofnwj0f3 { padding: 92px 0 28px; }
  .xdaxawea1xp { padding: 28px 18px; }
  .xn1d1fpz1zp { padding: 22px 18px; }
}

/* Service pages layout */
body:has(.xykxpreg0hc) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body:has(.xykxpreg0hc) > main.xykxpreg0hc {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body:has(.xykxpreg0hc) > .xqp90g66dsb {
  flex-shrink: 0;
}

.xykxpreg0hc .x7hofnwj0f3 {
  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);
}

.xykxpreg0hc .x7hofnwj0f3 > .x9g4ne022eg {
  width: 100%;
}

.xykxpreg0hc .xdaxawea1xp {
  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;
}

.xykxpreg0hc .xmgvwzwl27j {
  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;
}

.xykxpreg0hc .xdwzbub4stj {
  margin: 0 auto;
}

.xykxpreg0hc .xn1d1fpz1zp {
  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;
}

.xykxpreg0hc .xn1d1fpz1zp :where(h2,h3,h4) {
  color: var(--text-secondary);
  margin: 28px 0 12px;
  line-height: 1.2;
}

.xykxpreg0hc .xn1d1fpz1zp :where(p,li) {
  line-height: 1.75;
}

.xykxpreg0hc .xn1d1fpz1zp > *:first-child { margin-top: 0; }
.xykxpreg0hc .xn1d1fpz1zp > *:last-child { margin-bottom: 0; }
.xykxpreg0hc .xn1d1fpz1zp a { color: var(--accent); }
.x2zzrif2t46 { display: contents; }

@media (max-width: 900px) {
  .xykxpreg0hc .x7hofnwj0f3 {
    align-items: flex-start;
    padding: 116px 0 34px;
  }

  .xykxpreg0hc .xdaxawea1xp {
    padding: 28px 18px;
  }

  .xykxpreg0hc .xn1d1fpz1zp {
    margin-top: 24px;
    padding: 20px 16px;
  }
}


/* FR-1 service pages aligned with index hero/content layout */
.xykxpreg0hc {
  flex: 1 0 auto;
  display: block;
}
body:has(.xykxpreg0hc) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:has(.xykxpreg0hc) > .xqp90g66dsb { flex-shrink: 0; }
.xykxpreg0hc .x0tr5o9ztom {
  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);
}
.xykxpreg0hc .xe76fn73j6c {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}
.xykxpreg0hc .x1one83atur {
  max-width: 860px;
  align-items: center;
}
.xykxpreg0hc .xyeacgz8e99 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.xykxpreg0hc .xtsyw0ovm9a {
  justify-content: center;
}
.xykxpreg0hc .xpclx4npt7g {
  padding: 56px 0 72px;
}
.xykxpreg0hc .x5avevkbn94 .x9ic03hk4on,
.xykxpreg0hc .x5avevkbn94 .xn1d1fpz1zp {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .xykxpreg0hc .x0tr5o9ztom { padding: 96px 0 34px; }
}
@media (max-width: 600px) {
  .xykxpreg0hc .x0tr5o9ztom { padding: 86px 0 28px; }
  .xykxpreg0hc .xpclx4npt7g { padding: 32px 0 56px; }
}

/* FR-1 final service overrides: use index content/hero styling exactly */
.xykxpreg0hc .x0tr5o9ztom {
  display: block;
}
.xykxpreg0hc .xn1d1fpz1zp {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text-secondary);
  text-align: left;
}
.xykxpreg0hc .x5avevkbn94 .xn1d1fpz1zp :where(h2,h3,h4) {
  color: var(--text-secondary);
}
