@charset "UTF-8";

:root {
  --c-primary: #0e3f49;
  --c-secondary: #0c3741;
  --c-accent: #ff4c3b;
  --c-bg: #104a55;
  --c-surface: #13525f;
  --c-text: #ffffff;
  --c-text-muted: #c0c8cf;
  --c-btn: #ff4c3b;
  --c-btn-text: #ffffff;
  --c-border: #116066;
  --c-grad-start: #0e3f49;
  --c-grad-end: #104a55;
  --c-logo-text: #ffffff;
}
.gw-logo-text { color: var(--c-logo-text) !important; }
[class*="_logo"] { color: #ffffff !important; }


.gw-logo-png { height: 39px; width: auto; display: block; object-fit: contain; }

.h21_root {
    background: var(--c-primary);
    border-bottom: 3px solid var(--c-accent);
  }
  .h21_inner {
    display: flex;
    align-items: center;
    height: 66px;
  }
  .h21_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h21_nav a {
    color: color-mix(in srgb, var(--c-text) 70%, transparent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    position: relative;
    transition: color 0.153s;
  }
  .h21_nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--c-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.205s ease;
  }
  .h21_nav a:hover {
    color: var(--c-text);
  }
  .h21_nav a:hover::after {
    transform: scaleX(1);
  }
  .h21_cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .h21_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 36px;
    height: 35px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h21_nav { display: none; }
    .h21_cta-desktop { display: none !important; }
    .h21_menu-btn { display: flex !important; }
  }
  .h21_s1 { position: sticky; top: 0; z-index: 100; }
  .h21_s2 { display: flex; align-items: center; gap: 8px; }
  .h21_s3 { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h21_s4 { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h21_s5 { flex: 1; justify-content: center; }

.aq89-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 326px;
  background: linear-gradient(133deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 2px solid color-mix(in srgb, var(--c-accent, #22c55e) 65%, transparent);
  box-shadow: 0 16px 50px rgba(0,0,0,0.378);
  display: flex;
  align-items: center;
}
.aq89-bg-img {
  position: absolute; inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.aq89-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(89deg, rgba(0,0,0,0.748) 0%, rgba(0,0,0,0.474) 35%, rgba(0,0,0,0.055) 75%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.aq89-content {
  position: relative;
  z-index: 2;
  padding: 45px 50px;
  max-width: 700px;
}
.aq89-title {
  font-size: 33px;
  font-weight: 900;
  color: var(--c-accent, #facc15);
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.522);
}
.aq89-amount {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 24px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.502);
}
.aq89-cta {
  display: inline-block;
  padding: 12px 37px;
  border-radius: 1013px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.348);
  transition: box-shadow .25s ease, filter .18s;
}
.aq89-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.154),
    0 10px 28px rgba(34,197,94,0.483);
}
@media (max-width: 768px) {
  .aq89-card { min-height: 318px; }
  .aq89-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.403) 0%, rgba(0,0,0,0.87) 100%);
  }
  .aq89-content { padding: 29px 22px; max-width: 700px; }
  .aq89-title { font-size: 24px; }
  .aq89-amount { font-size: 15px; }
}

.hm62-wrap { max-width: 1200px; margin: 0 auto; }
  .hm62-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 30px 30px;
    box-shadow: 0 16px 44px -22px rgba(0,0,0,0.331);
  }
  .hm62-title { color: var(--c-text); margin: 0 0 12px; }
  .hm62-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 19px; }

  .hm62-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 18px;
  }
  .hm62-card {
    border-radius: 12px;
    padding: 18px 19px 20px;
    background: linear-gradient(131deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    color: #fff;
  }
  .hm62-card-h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .hm62-card-p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.743);
    margin: 0;
  }

  .hm62-mid-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .hm62-panel {
    border-radius: 14px;
    padding: 22px 24px 24px;
    background: linear-gradient(136deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 52px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff;
    margin: 0 0 22px;
  }
  .hm62-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .hm62-panel-lead { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.8); margin: 0 0 16px; }
  .hm62-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.799); margin: 16px 0 0; }

  .hm62-bullets {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hm62-bullet {
    display: flex; align-items: stretch; gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px -6px rgba(0,0,0,0.36);
  }
  .hm62-bullet-icon {
    flex: 0 0 43px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent);
    color: var(--c-bg);
  }
  .hm62-bullet-icon svg { width: 18px; height: 17px; }
  .hm62-bullet-text {
    flex: 1;
    padding: 10px 14px;
    background: #f5f7fa;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.049em;
    line-height: 1.4;
    display: flex; align-items: center;
  }

  .hm62-h3-light { color: var(--c-text); font-size: 19px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .hm62-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .hm62-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--c-bg);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 18px;
    table-layout: fixed;
  }
  .hm62-table th, .hm62-table td {
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
  }
  .hm62-table thead th {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.121em;
    text-transform: uppercase;
    color: var(--c-text);
    background: color-mix(in srgb, var(--c-accent) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  }
  .hm62-table tbody td {
    color: var(--c-text-muted);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent);
  }
  .hm62-table tbody tr:nth-child(even) td {
    background: color-mix(in srgb, var(--c-text) 3%, transparent);
  }
  .hm62-table tbody tr:last-child td { border-bottom: none; }

  .hm62-cta-wrap { margin-top: 18px; }
  .hm62-cta {
    display: inline-block; padding: 12px 30px; border-radius: 997px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 12px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.1em;
    box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .hm62-cta:hover {
    filter: brightness(1.06); transform: translateY(-1px);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
      0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 768px) {
    .hm62-cards { grid-template-columns: 1fr; }
    .hm62-bullets { grid-template-columns: 1fr; }
    .hm62-table th, .hm62-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .hm62-outer { padding: 22px 18px; border-radius: 14px; }
    .hm62-panel { padding: 18px 16px; border-radius: 12px; }
    .hm62-card { padding: 16px 16px 18px; }
  }

.zv29-wrap { max-width: 1200px; margin: 0 auto; }
  .zv29-title { color: var(--c-text); margin: 0 0 22px; }
  .zv29-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .zv29-panel {
    position: relative;
    margin: 28px 0;
    border-radius: 18px;
    background:
      linear-gradient(184deg,
        color-mix(in srgb, var(--c-accent) 4%, var(--c-surface)) 0%,
        var(--c-surface) 50%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 28%, var(--c-border));
    box-shadow:
      0 22px 59px -28px color-mix(in srgb, var(--c-accent) 70%, transparent),
      0 0 0 1px color-mix(in srgb, var(--c-accent) 10%, transparent);
    overflow: hidden;
  }
  .zv29-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(91deg,
      transparent 0%,
      var(--c-accent) 50%,
      transparent 100%);
    opacity: 0.6;
    pointer-events: none;
  }
  .zv29-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .zv29-spec th, .zv29-spec td {
    padding: 16px 24px;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .zv29-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.119em;
    color: var(--c-text);
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(133deg,
      color-mix(in srgb, var(--c-accent) 22%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 100%);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 35%, var(--c-border));
  }
  .zv29-spec thead th:first-child {
    color: var(--c-accent);
  }
  .zv29-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
    border-left: 3px solid transparent;
    padding-left: 20px;
    transition: border-left-color .25s ease, color .25s ease;
  }
  .zv29-spec tbody td { color: var(--c-text-muted); }
  .zv29-spec tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background-color .25s ease;
  }
  .zv29-spec tbody tr:last-child { border-bottom: none; }
  .zv29-spec tbody tr:hover {
    background: linear-gradient(92deg,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 2%, transparent) 100%);
  }
  .zv29-spec tbody tr:hover th {
    border-left-color: var(--c-accent);
    color: var(--c-accent);
  }
  @media (max-width: 640px) {
    .zv29-spec th, .zv29-spec td { padding: 12px 16px; font-size: 13px; }
    .zv29-spec tbody th { padding-left: 13px; width: 42%; }
  }

.yp41-wrap { max-width: 1200px; margin: 0 auto; }
  .yp41-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
  .yp41-strip { height: 4px; background: linear-gradient(89deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 40%, transparent)); }
  .yp41-body { padding: 34px 41px; }
  .yp41-title { color: var(--c-text); margin: 0 0 20px; }
  .yp41-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .yp41-p:last-child { margin-bottom: 0; }
  .bonus-author { color: var(--c-text); margin-top: 8px; }
  .bonus-author strong { color: #fff; font-weight: 800; }
  .bonus-author em { color: #fff; font-style: italic; }
  @media (max-width: 600px) { .yp41-body { padding: 24px 22px; } }

.zq77-hero {
    background: linear-gradient(161deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 16%, var(--c-bg)) 100%);
    position: relative;
    overflow: hidden;
  }
  .zq77-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
  }
  .zq77-grid {
    display: grid;
    grid-template-columns: 1fr 364px;
    gap: 48px;
    align-items: center;
    padding: 55px 0;
    position: relative;
    z-index: 1;
  }
  .zq77-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.099em;
    color: var(--c-accent);
    background: color-mix(in srgb, var(--c-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 25%, transparent);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .zq77-title { color: var(--c-text); margin-bottom: 14px; }
  .zq77-accent { color: var(--c-accent); }
  .zq77-desc {
    font-size: 0.99rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 1200px;
    margin-bottom: 24px;
  }
  .zq77-stats {
    display: flex;
    gap: 27px;
    margin-bottom: 27px;
    flex-wrap: wrap;
  }
  .zq77-stat-val {
    font-size: 1.439rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
  }
  .zq77-stat-lbl {
    font-size: 0.676rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }
  .zq77-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .zq77-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 0 16px rgba(255,255,255,0.132), 0 0 5px rgba(255,255,255,0.084);
    overflow: hidden;
  }
  .zq77-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.803rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.078em;
    color: var(--c-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .zq77-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    display: inline-block;
    margin-right: 6px;
  }
  .zq77-card-body { padding: 20px 24px; }
  .zq77-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }
  .zq77-count-box {
    text-align: center;
    padding: 14px 8px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--c-border) 40%, transparent);
  }
  .zq77-count-num {
    font-size: 1.515rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1;
  }
  .zq77-count-unit {
    font-size: 0.614rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.081em;
    margin-top: 4px;
  }
  .zq77-offer-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .zq77-offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
  }
  .zq77-offer-row:last-child { border-bottom: none; }
  .zq77-offer-label {
    font-size: 0.798rem;
    color: var(--c-text-muted);
  }
  .zq77-offer-value {
    font-size: 0.834rem;
    font-weight: 700;
    color: var(--c-text);
  }
  .zq77-card-footer {
    padding: 16px 25px;
    border-top: 1px solid var(--c-border);
  }
  .zq77-card-cta {
    display: block;
    text-align: center;
    padding: 11px;
    background: var(--c-accent);
    color: var(--c-bg);
    font-weight: 700;
    font-size: 0.889rem;
    border-radius: 10px;
    text-decoration: none;
  }
  .zq77-card-cta:hover { opacity: 0.9; }
  @media (max-width: 768px) {
    .zq77-grid { grid-template-columns: 1fr; gap: 32px; padding: 39px 0; }
    .zq77-card { display: none; }
  }

.xq83-layout { display: grid; grid-template-columns: 276px 1fr; gap: 3.001rem; align-items: start; margin-bottom: 2.485rem; }
  .xq83-score-block { text-align: center; }
  .xq83-big-score { font-size: 4.438rem; font-weight: 900; color: var(--c-accent); line-height: 1; }
  .xq83-tp-stars { color: #00b67a; font-size: 1.744rem; letter-spacing: 2px; margin: 0.51rem 0; }
  .xq83-tp-label { font-size: 0.891rem; color: var(--c-text-muted); }
  .xq83-tp-logo { font-weight: 800; font-size: 1.282rem; color: #00b67a; margin-top: 0.741rem; }
  .xq83-bars { display: flex; flex-direction: column; gap: 0.635rem; }
  .xq83-bar-row { display: flex; align-items: center; gap: 0.734rem; }
  .xq83-bar-label { font-size: 0.819rem; font-weight: 600; color: var(--c-text); min-width: 32px; }
  .xq83-bar-track { flex: 1; height: 10px; background: var(--c-border); border-radius: 5px; overflow: hidden; }
  .xq83-bar-fill { height: 100%; background: #00b67a; border-radius: 5px; }
  .xq83-bar-count { font-size: 0.772rem; color: var(--c-text-muted); min-width: 49px; text-align: right; }
  .xq83-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.994rem; }
  .xq83-review-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 10px; padding: 1.112rem; }
  .xq83-rc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 0.618rem; }
  .xq83-rc-avatar { width: 38px; height: 38px; border-radius: 50%; background: color-mix(in srgb, var(--c-accent) 20%, var(--c-surface)); display: flex; align-items: center; justify-content: center; font-size: 0.757rem; font-weight: 700; color: var(--c-accent); }
  .xq83-rc-name { font-weight: 700; font-size: 0.813rem; color: var(--c-text); }
  .xq83-rc-stars { color: #00b67a; font-size: 0.866rem; }
  .xq83-rc-text { font-size: 0.806rem; color: var(--c-text-muted); line-height: 1.5; margin-bottom: 0.513rem; }
  .xq83-rc-date { font-size: 0.689rem; color: var(--c-text-muted); }
  .xq83-header { text-align: center; margin-bottom: 1.985rem; }
  @media (max-width: 900px) { .xq83-layout { grid-template-columns: 1fr; } .xq83-reviews-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .xq83-reviews-grid { grid-template-columns: 1fr; } }
  .xq83-s1 { margin-bottom: 0.999rem; }
  .xq83-s2 { width: 18%; opacity: 0.75; }
  .xq83-s3 { width: 5%; opacity: 0.55; }
  .xq83-s4 { width: 2%; opacity: 0.4; }
  .xq83-s5 { width: 1%; opacity: 0.3; }
  .xq83-s6 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .xq83-s7 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .xq83-s8 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; }

.op69-wrap { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .op69-intro { max-width: 1200px; }
  .op69-title { color: var(--c-text); margin: 0 0 14px; }
  .op69-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .op69-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--c-border); }
  .op69-col { padding: 28px 32px; }
  .op69-col-con { background: var(--c-surface); }
  .op69-col-pro { background: color-mix(in srgb, var(--c-accent) 6%, var(--c-surface)); border-left: 1px solid color-mix(in srgb, var(--c-accent) 25%, var(--c-border)); }
  .op69-h3 { font-size: 0.803rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.138em; margin: 0 0 18px; }
  .op69-h3-con { color: var(--c-text); }
  .op69-h3-pro { color: var(--c-accent); }
  .op69-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .op69-item { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.6; color: var(--c-text-muted); }
  .op69-sym { flex-shrink: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; }
  .op69-sym-pro { color: var(--c-accent); }
  .op69-sym-con { color: var(--c-text); opacity: 0.55; }
  .op69-sym svg { width: 16px; height: 16px; }
  @media (max-width: 768px) { .op69-row { grid-template-columns: 1fr; } .op69-col-pro { border-left: none; border-top: 1px solid color-mix(in srgb, var(--c-accent) 25%, var(--c-border)); } }

.cv82-wrap { max-width: 1200px; margin: 0 auto; }
  .cv82-intro { max-width: 1200px; margin-bottom: 22px; }
  .cv82-title { color: var(--c-text); margin: 0 0 12px; }
  .cv82-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .cv82-scroll { overflow-x: auto; }
  .cv82-table { width: 100%; min-width: 727px; border-collapse: separate; border-spacing: 0 8px; }
  .cv82-table thead th { background: linear-gradient(90deg, var(--c-accent) 0%, color-mix(in srgb, var(--c-accent) 50%, var(--c-grad-end)) 100%); color: var(--c-bg); padding: 14px 22px; font-size: 0.703rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; text-align: left; }
  .cv82-table thead th:first-child { border-radius: 12px 0 0 12px; }
  .cv82-table thead th:last-child { border-radius: 0 12px 12px 0; }
  .cv82-table tbody td { background: var(--c-surface); padding: 18px 22px; font-size: 15px; line-height: 1.5; color: var(--c-text-muted); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
  .cv82-table tbody td:first-child { border-left: 1px solid var(--c-border); border-radius: 12px 0 0 12px; }
  .cv82-table tbody td:last-child { border-right: 1px solid var(--c-border); border-radius: 0 12px 12px 0; }
    .cv82-rank { display: inline-flex; align-items: center; gap: 12px; }
  .cv82-badge { width: 37px; height: 39px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--c-bg); font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
  .cv82-badge-bronze { background: #a0785a; }
  .cv82-badge-silver { background: #8a8e94; }
  .cv82-badge-gold { background: #c5a03f; }
  .cv82-badge-plat { background: #6a7b8b; }
  .cv82-badge-diamond { background: linear-gradient(133deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 50%, #6a7b8b)); box-shadow: 0 0 14px -2px color-mix(in srgb, var(--c-accent) 60%, transparent); }
  .cv82-rank-name { display: block; font-size: 1.011rem; font-weight: 800; color: var(--c-text); }
  .cv82-rank-vol { display: block; font-size: 11px; color: var(--c-text-muted); margin-top: 2px; }
  .cv82-pct { font-weight: 800; color: var(--c-accent); font-size: 1.015rem; font-variant-numeric: tabular-nums; }
  .cv82-here { display: inline-block; font-size: 0.619rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.158em; padding: 3px 9px; border: 1px solid var(--c-accent); border-radius: 1013px; }
  .cv82-note { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 18px 0 0; }

.ww84-wrap { max-width: 1200px; margin: 0 auto; }
.ww84-list { display: flex; flex-direction: column; gap: 10px; margin-top: 39px; }
.ww84-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.ww84-item:hover {
  border-color: color-mix(in srgb, var(--c-accent) 35%, transparent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--c-accent) 6%, transparent);
}
.ww84-item.gw-faq-open {
  border-color: color-mix(in srgb, var(--c-accent) 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--c-accent) 25%, transparent),
              0 8px 31px color-mix(in srgb, var(--c-accent) 8%, transparent);
}
.ww84-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.ww84-q::-webkit-details-marker { display: none; }
.ww84-num {
  font-size: 20px;
  font-weight: 900;
  color: color-mix(in srgb, var(--c-accent) 25%, transparent);
  min-width: 29px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.039em;
  transition: color .2s;
  line-height: 1;
}
.ww84-item.gw-faq-open .ww84-num,
.ww84-item:hover .ww84-num { color: var(--c-accent); }
.ww84-qtext {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}
.ww84-chevron {
  width: 25px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: transform .25s;
}
.ww84-item.gw-faq-open .ww84-chevron { transform: rotate(184deg); color: var(--c-accent); }
.ww84-body {
  padding: 0 24px 22px 69px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
}
.ww84-body a { color: var(--c-accent); }
.ww84-cta {
  margin-top: 32px;
  background: color-mix(in srgb, var(--c-accent) 6%, var(--c-surface));
  border: 1px solid color-mix(in srgb, var(--c-accent) 20%, transparent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ww84-cta-text { font-size: 15px; font-weight: 600; color: var(--c-text); }
.ww84-cta-sub { font-size: 13px; color: var(--c-text-muted); margin-top: 3px; }
.ww84-header { text-align: center; }
.ww84-title { margin-top: 8px; }
.ww84-lead { margin-top: 10px; max-width: 1200px; margin-left: auto; margin-right: auto; }

.ae83-wrap { padding: 1.002rem 0; }
  .ae83-track {
    height: 2px;
    /* faint accent base so the track itself reads as brand-colored even
       when the bright sweep highlight isn't currently over it */
    background: color-mix(in srgb, var(--c-accent) 22%, transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .ae83-sweep {
    position: absolute;
    top: 0; left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(91deg, transparent, var(--c-accent), transparent);
    animation: ae83-slide 2.74s ease-in-out infinite;
    border-radius: 2px;
  }
  @keyframes ae83-slide {
    0% { left: -40%; }
    100% { left: 140%; }
  }

/* ── Centered footer with a deliberate visual hierarchy: ─────────
     1) Logo — brand identity
     2) Tagline — short pitch (optional, truncates cleanly)
     3) <divider>
     4) Primary nav — multipage links (Bonuses / Games / Reviews), same
        weight/size as header nav
     5) Legal nav — Terms / Privacy / Cookies, smaller + muted + dot
        separators so they read as "fine print" not top-level nav
     6) <divider>
     7) Copyright row — © year · brand · play responsibly · 18+ badge

     Every block is symmetric around the horizontal centre and uses
     consistent 14-18 px vertical rhythm. When a section's placeholder
     resolves to nothing the `:empty` rule hides the whole block AND
     the divider above it so we never ship an orphan line. */
  .np20-root { text-align: center; padding: 44px 0 29px; }
  .np20-logo-wrap { display: flex; justify-content: center; margin-bottom: 12px; }

  .np20-tagline {
    font-size: 0.878rem; color: var(--c-text-muted);
    margin: 0 auto 22px; max-width: 1200px; line-height: 1.55;
  }

  .np20-divider {
    max-width: 1200px; height: 1px;
    background: var(--c-border); opacity: .6;
    margin: 0 auto;
  }

  /* Primary nav — same visual weight as the header's top-level links. */
  .np20-nav-primary {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 30px;
    margin: 19px auto 0;
  }
  .np20-nav-primary:empty { display: none; }
  .np20-nav-primary a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--c-text); text-decoration: none;
    transition: color .2s;
  }
  .np20-nav-primary a:hover { color: var(--c-accent); }

  /* Legal nav — explicitly softer: smaller, muted, dot separators
     between items so the eye parses it as compliance fine-print, not
     primary navigation. */
  .np20-nav-legal {
    display: flex; justify-content: center; flex-wrap: wrap;
    align-items: center; gap: 0;
    margin: 10px auto 0;
    font-size: 0.795rem;
    color: var(--c-text-muted);
  }
  .np20-nav-legal:empty { display: none; }
  .np20-nav-legal a {
    color: inherit; text-decoration: none;
    transition: color .2s;
    padding: 2px 0;
  }
  .np20-nav-legal a:hover { color: var(--c-accent); }
  /* Pseudo-element separator — `a + a::before` ensures the dot only
     appears BETWEEN links (never leading/trailing), and its symmetric
     `margin: 0 14px` guarantees equal whitespace on both sides of
     every dot regardless of which links ended up in the row. Earlier
     attempt used column-gap + negative-left + margin-right and the
     dot slid off-centre; this version is single-source-of-truth. */
  .np20-nav-legal a + a::before {
    content: '·';
    margin: 0 14px;
    opacity: .5;
    color: var(--c-text-muted);
  }

  .np20-payments {
    justify-content: center;
    margin-top: 18px;
  }
  .np20-payments:empty { display: none; }

  .np20-bottom {
    display: inline-flex; justify-content: center; align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 21px;
    font-size: 0.803rem;
    color: var(--c-text-muted);
  }
  .np20-bottom-sep {
    width: 3px; height: 3px; border-radius: 50%;
    background: currentColor; opacity: .4;
    display: inline-block;
  }

/* ── csb mobile-header policy (appended last, wins source-order) ── */
@media (max-width: 768px) {
  body [class*="cta-desktop"],
  body [class*="actions-desktop"],
  body [class*="btns-desktop"],
  body [class*="cta-wrap"],
  body [class*="login-actions"],
  body [class*="strip-actions"] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  body [class*="cta-desktop"] .gw-btn,
  body [class*="actions-desktop"] .gw-btn,
  body [class*="btns-desktop"] .gw-btn,
  body [class*="cta-wrap"] .gw-btn,
  body [class*="cta-desktop"] button,
  body [class*="actions-desktop"] button,
  body [class*="btns-desktop"] button,
  body [class*="cta-wrap"] button,
  body [class*="cta-desktop"] a,
  body [class*="actions-desktop"] a,
  body [class*="btns-desktop"] a,
  body [class*="cta-wrap"] a {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
}
@media (max-width: 768px) {
  .h21_cta-desktop.h21_s2 {
    display: none !important;
  }
}
/* Header edge alignment */
.h21_inner {
  justify-content: space-between !important;
}
.h21_inner .gw-logo,
.h21_inner [class*="logo"] {
  flex: 0 0 auto;
}
.h21_nav {
  flex: 1 1 auto;
  justify-content: center;
}
.h21_cta {
  margin-left: auto;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .h21_inner {
    justify-content: space-between !important;
  }
  .h21_cta {
    margin-left: auto;
  }
}
/* Codex section padding override */
section {
  padding: 20px !important;
}

/* Codex h2 spacing override */
h2 {
  margin-bottom: 20px !important;
}

/* Codex inner section block padding override */
section :is(article, aside, blockquote, details, table, .it-table-wrap, .it-list, .it-content-cta,
  [class*="card"], [class*="cards"], [class*="grid"], [class*="panel"], [class*="table"], [class*="list"],
  [class*="scroll"], [class*="cta"], [class*="row"], [class*="wrap"], [class*="faq"],
  [class*="review"], [class*="rating"], [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"],
  [class*="verdict"], [class*="responsible"], [class*="legal"]) {
  padding: 20px !important;
}

/* Codex text spacing around content blocks */
:is(p, li, h3, h4):has(+ :is(ul, ol, table, blockquote, details, article, aside, .it-table-wrap, .it-list, .it-content-cta,
    [class*="table"], [class*="list"], [class*="card"], [class*="cards"], [class*="grid"], [class*="panel"],
    [class*="scroll"], [class*="cta"], [class*="row"], [class*="wrap"], [class*="faq"],
    [class*="review"], [class*="rating"], [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"])) {
  margin-bottom: 20px !important;
}

:is(div, article, aside):has(> :is(p, h3, h4):last-child):has(+ :is(ul, ol, table, blockquote, details, article, aside, .it-table-wrap, .it-list, .it-content-cta,
    [class*="table"], [class*="list"], [class*="card"], [class*="cards"], [class*="grid"], [class*="panel"],
    [class*="scroll"], [class*="cta"], [class*="row"], [class*="wrap"], [class*="faq"],
    [class*="review"], [class*="rating"], [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"]))
  > :is(p, h3, h4):last-child {
  margin-bottom: 20px !important;
}

:is(.it-table-wrap, .it-list, .it-content-cta,
  [class*="table"], [class*="list"], [class*="card"], [class*="cards"], [class*="grid"], [class*="panel"],
  [class*="scroll"], [class*="cta"], [class*="row"], [class*="wrap"], [class*="faq"],
  [class*="review"], [class*="rating"], [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"])
  + :is(p, h2, h3, h4, ul, ol) {
  margin-top: 20px !important;
}

/* Codex nested text spacing fallback */
.nu22-body:has(+ .nu22-aside) > :is(p, h3, h4, ul, ol):last-child,
:is([class*="body"], [class*="content"], [class*="copy"], [class*="text"]):has(+ :is(aside, blockquote, article, .it-table-wrap, .it-list, .it-content-cta,
    [class*="table"], [class*="list"], [class*="card"], [class*="cards"], [class*="grid"], [class*="panel"],
    [class*="scroll"], [class*="cta"], [class*="row"], [class*="wrap"], [class*="faq"],
    [class*="review"], [class*="rating"], [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"]))
  > :is(p, h3, h4, ul, ol):last-child {
  margin-bottom: 20px !important;
}

/* Codex reliable prose spacing */
section :is(p, ul, ol):not(:last-child) {
  margin-bottom: 20px !important;
}

section :is(table, blockquote, details, article, aside, div, ul, ol) + :is(p, ul, ol) {
  margin-top: 20px !important;
}

/* Codex intro prose spacing */
section :is(header, [class*="intro"], [class*="head"], [class*="body"], [class*="content"], [class*="copy"], [class*="text"])
  > :is(p, ul, ol):last-child {
  margin-bottom: 20px !important;
}

/* Codex mobile compact block padding */
@media (max-width: 500px) {
  section :is(article, aside, blockquote, details, table, thead, tbody, tfoot, tr, th, td,
    [class*="card"], [class*="panel"], [class*="table"], [class*="list"], [class*="grid"], [class*="wrap"],
    [class*="box"], [class*="item"], [class*="tile"], [class*="review"], [class*="rating"],
    [class*="myth"], [class*="mito"], [class*="bonus"], [class*="promo"], [class*="verdict"],
    [class*="responsible"], [class*="legal"], [class*="faq"], [class*="cta"]) {
    padding: 10px !important;
  }
}
/* Codex fs32 row side padding reset */
.fs32-row {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Codex strong fs32 row side padding reset */
section .fs32-row {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Codex bk82 wrap side padding reset */
section .bk82-wrap,
.bk82-wrap.xg-visible {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Codex content list side padding reset */
main :is(ul, ol, .it-list) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Codex it odds grid padding reset */
.it-odds-grid {
  padding: 0 !important;
}
/* Codex it schedule cards padding reset */
.it-schedule-cards {
  padding: 0 !important;
}
/* Codex keep padding only on sections */
main section {
  padding: 20px !important;
}

main section :is(
  aside, details,
  .it-table-wrap, .it-list,
  [class*="grid"], [class*="wrap"], [class*="cards"], [class*="list"],
  [class*="block"], [class*="body"], [class*="head"], [class*="row"], [class*="card"]
) {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Codex verdict author text start */
.it-verdict-author {
  text-align: start !important;
  align-items: flex-start !important;
  justify-items: start !important;
}
/* Codex FAQ head spacing reset */
.it-faq-head {
  padding: 0 !important;
  margin-bottom: 0 !important;
}
/* Codex verdict head spacing reset */
.it-verdict-head {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Codex: normalize h3 vertical spacing */
h3 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

/* Codex: normalize content list spacing */
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) p + :where(ul, ol),
:where(main, section, article, .it-content, .it-intro, .it-section, .it-content-block) :where(ul, ol) + p {
  margin-top: 16px !important;
}
