@charset "UTF-8";

:root {
  --c-primary: #0e3f48;
  --c-secondary: #0c3740;
  --c-accent: #ff4c4b;
  --c-bg: #104a50;
  --c-surface: #13524f;
  --c-text: #ffffff;
  --c-text-muted: #c0c8cf;
  --c-btn: #ff4c4b;
  --c-btn-text: #ffffff;
  --c-border: #116067;
  --c-grad-start: #0e3f49;
  --c-grad-end: #104a55;
  --c-logo-text: #ffffff;
}
.en-logo-text { color: var(--c-logo-text) !important; }
[class*="_logo"] { color: #ffffff !important; }


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

.h24_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h24_nav a {
    color: color-mix(in srgb, var(--c-text) 70%, transparent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.153s, color 0.151s;
  }
  .h24_nav a:hover {
    background: color-mix(in srgb, var(--c-text) 7%, transparent);
    color: var(--c-text);
  }
  .h24_right-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .h24_bonus-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--c-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.147s;
  }
  .h24_bonus-badge:hover {
    background: color-mix(in srgb, var(--c-accent) 20%, transparent);
  }
  .h24_bonus-text {
    font-size: 0.784rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: 0.01em;
  }
  .h24_bonus-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--c-accent) 65%, transparent);
  }
  .h24_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 900px) {
    .h24_bonus-sub { display: none; }
  }
  @media (max-width: 768px) {
    .h24_nav { display: none; }
    .h24_cta-desktop { display: none !important; }
    .h24_menu-btn { display: flex !important; }
  }
  .h24_s1 { position: sticky; top: 0; z-index: 100; }
  .h24_s2 { display: flex; align-items: center; gap: 10px; }
  .h24_s3 { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h24_s4 { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h24_s5 { flex: 1; justify-content: center; }

.ic29-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 365px;
  background: linear-gradient(136deg,
    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: 1px solid rgba(255,255,255,0.074);
  box-shadow: 0 16px 50px rgba(0,0,0,0.398);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 37px;
}
.ic29-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ic29-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(91deg, rgba(0,0,0,0.513) 0%, rgba(0,0,0,0.208) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.ic29-frame {
  position: relative;
  z-index: 2;
  max-width: 612px;
  padding: 37px 44px;
  border-radius: 14px;
  border: 2px solid var(--c-accent, #f59e0b);
  background: rgba(0,0,0,0.21);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-align: center;
}
.ic29-title {
  font-size: 31px;
  font-weight: 900;
  color: var(--c-accent, #f59e0b);
  line-height: 1.12;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.443);
}
.ic29-amount {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.019em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.406);
}
.ic29-cta {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 1023px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.323);
  transition: box-shadow .25s ease, filter .18s;
}
.ic29-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.184),
    0 10px 27px rgba(34,197,94,0.468);
}
@media (max-width: 768px) {
  .ic29-card {
    min-height: 348px;
    padding: 23px;
    justify-content: center;
  }
  .ic29-overlay {
    background: linear-gradient(176deg, rgba(0,0,0,0.429) 0%, rgba(0,0,0,0.699) 100%);
  }
  .ic29-frame { padding: 24px 22px; max-width: 100%; }
  .ic29-title { font-size: 22px; }
  .ic29-amount { font-size: 14px; }
}

.mo38-hero {
    background: linear-gradient(151deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 8%, var(--c-bg)) 55%, var(--c-bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .mo38-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2l5.09 10.32L36.18 14l-8.09 7.88L30.18 33 20 27.54 9.82 33l2.09-11.12L3.82 14l11.09-1.68z' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 41px 39px;
    pointer-events: none;
  }
  .mo38-grid {
    display: grid;
    grid-template-columns: 1fr 376px;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .mo38-left { position: relative; z-index: 1; }
  .mo38-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 41px;
    background: color-mix(in srgb, var(--c-accent) 10%, var(--c-surface));
    border: 1px solid color-mix(in srgb, var(--c-accent) 25%, transparent);
    font-size: 12px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: 0.102em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .mo38-heading { margin-bottom: 16px; }
  .mo38-lead { max-width: 472px; margin-bottom: 24px; }
  .mo38-stats {
    display: flex;
    gap: 27px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .mo38-stat-item { display: flex; flex-direction: column; }
  .mo38-stat-val {
    font-size: 27px;
    font-weight: 900;
    color: var(--c-text);
    line-height: 1.1;
  }
  .mo38-stat-val span { color: var(--c-accent); }
  .mo38-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.049em;
    margin-top: 4px;
  }
  .mo38-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .mo38-right { position: relative; z-index: 1; }
  .mo38-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 3px 17px rgba(255,255,255,0.195), 0 0 2px rgba(255,255,255,0.118);
    overflow: hidden;
  }
  .mo38-card-header {
    padding: 18px 22px;
    background: color-mix(in srgb, var(--c-primary) 6%, var(--c-surface));
    border-bottom: 1px solid var(--c-border);
  }
  .mo38-card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--c-text);
  }
  .mo38-card-sub {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px;
  }
  .mo38-card-body { padding: 19px 23px; }
  .mo38-winners {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mo38-winner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    background: color-mix(in srgb, var(--c-bg) 40%, var(--c-surface));
  }
  .mo38-winner-rank {
    width: 33px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--c-accent) 10%, var(--c-surface));
    color: var(--c-accent);
  }
  .mo38-winner-info { flex: 1; min-width: 0; }
  .mo38-winner-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-text);
  }
  .mo38-winner-cat {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 1px;
  }
  .mo38-winner-score {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-accent);
    white-space: nowrap;
  }
  .mo38-card-footer {
    padding: 16px 22px;
    border-top: 1px solid var(--c-border);
  }
  @media (max-width: 880px) {
    .mo38-grid { grid-template-columns: 1fr; }
    .mo38-right { display: none; }
  }
  .mo38-s1 { width: 100%; justify-content: center; }

.ka30-wrap { max-width: 942px; margin: 0 auto; }
  .ka30-title { color: var(--c-text); margin: 0 0 22px; }
  .ka30-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .ka30-spec {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--c-surface);
    border: 1px solid color-mix(in srgb, var(--c-accent) 18%, var(--c-border));
    border-radius: 14px;
    overflow: hidden;
    margin: 26px 0;
    table-layout: fixed;
    box-shadow: 0 14px 39px -23px color-mix(in srgb, var(--c-accent) 45%, transparent);
  }
  .ka30-spec th, .ka30-spec td {
    padding: 16px 22px;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .ka30-spec thead th {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.121em;
    color: var(--c-text);
    background: linear-gradient(134deg,
      color-mix(in srgb, var(--c-accent) 18%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 6%, transparent) 100%);
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 30%, var(--c-border));
  }
  .ka30-spec thead th:first-child {
    color: var(--c-accent);
  }
  .ka30-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
    border-bottom: 1px solid var(--c-border);
  }
  .ka30-spec tbody th::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 18%, transparent);
    margin-right: 12px;
    vertical-align: 0.214em;
  }
  .ka30-spec tbody td {
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
  }
  .ka30-spec tbody tr:last-child th,
  .ka30-spec tbody tr:last-child td { border-bottom: none; }
  .ka30-spec tbody tr:hover td,
  .ka30-spec tbody tr:hover th {
    background: color-mix(in srgb, var(--c-accent) 4%, transparent);
  }
  @media (max-width: 640px) {
    .ka30-spec th, .ka30-spec td { padding: 12px 14px; font-size: 14px; }
    .ka30-spec tbody th { width: 42%; }
    .ka30-spec tbody th::before { width: 5px; height: 5px; margin-right: 9px; }
  }

.cr77-wrap { max-width: 956px; margin: 0 auto; }
  .cr77-title { color: var(--c-text); margin: 0 0 18px; }
  .cr77-intro { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 24px; max-width: 732px; }
  .cr77-row { display: grid; grid-template-columns: 195px 1fr; gap: 39px; padding: 22px 0; border-top: 1px solid var(--c-border); }
  .cr77-row:last-child { border-bottom: 1px solid var(--c-border); }
  .cr77-sh3 { color: var(--c-accent); margin: 0; font-size: 0.868rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; padding-top: 4px; }
  .cr77-col { min-width: 0; }
  .cr77-sp { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 10px; }
  .cr77-sp:last-child { margin-bottom: 0; }
  @media (max-width: 768px) { .cr77-row { grid-template-columns: 1fr; gap: 8px; } }

.so57-wrap { max-width: 904px; margin: 0 auto; }
  .so57-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 27px 30px 30px;
    box-shadow: 0 16px 43px -22px rgba(0,0,0,0.316);
  }
  .so57-title { color: var(--c-text); margin: 0 0 14px; }
  .so57-intro { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 22px; }

  .so57-panel {
    border-radius: 16px;
    padding: 26px 26px 29px;
    margin-bottom: 17px;
    background: linear-gradient(138deg,
      color-mix(in srgb, var(--c-accent) 12%, 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;
  }
  .so57-panel:last-of-type { margin-bottom: 0; }

  .so57-h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .so57-h3-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.819); margin: 0 0 22px; }
  .so57-h3-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.735); margin: 22px 0 0; }

  .so57-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: so57-step; }
  .so57-step {
    counter-increment: so57-step;
    display: flex; align-items: center; gap: 14px;
    padding: 0;
  }
  .so57-step::before {
    content: counter(so57-step);
    flex: 0 0 auto;
    width: 51px; height: 51px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 2px solid var(--c-accent);
    color: var(--c-accent);
    font-size: 16px; font-weight: 800;
    letter-spacing: 0;
  }
  .so57-step-text {
    flex: 1;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.938);
    font-size: 13px; line-height: 1.5; font-weight: 600;
  }

  .so57-cta-wrap { margin-top: 24px; }
  .so57-cta {
    display: inline-block; padding: 12px 29px; border-radius: 1014px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 12px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.098em;
    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;
  }
  .so57-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 29px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 640px) {
    .so57-outer { padding: 22px 18px; border-radius: 14px; }
    .so57-panel { padding: 20px 16px; border-radius: 12px; }
    .so57-h3 { font-size: 16px; }
    .so57-step { gap: 10px; }
    .so57-step::before { width: 42px; height: 41px; font-size: 14px; }
    .so57-step-text { padding: 10px 14px; font-size: 12px; }
  }

.rg20-wrap { max-width: 724px; margin: 0 auto; text-align: center; }
  .rg20-title { color: var(--c-text); margin: 0 0 22px; }
  .rg20-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; text-align: left; }
  .rg20-p:last-child { margin-bottom: 0; }

.vl83-wrap { max-width: 1001px; margin: 0 auto; }
  .vl83-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 30px 31px;
    box-shadow: 0 16px 45px -21px rgba(0,0,0,0.279);
  }
  .vl83-title { color: var(--c-text); margin: 0 0 12px; }
  .vl83-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .vl83-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 18px;
  }
  .vl83-card {
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(133deg,
      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;
  }
  .vl83-card-h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .vl83-card-p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
    margin: 0;
  }

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

  .vl83-panel {
    border-radius: 14px;
    padding: 22px 24px 24px;
    background: linear-gradient(138deg,
      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;
  }
  .vl83-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .vl83-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.749); margin: 0 0 16px; }
  .vl83-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.801); margin: 16px 0 0; }

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

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

  .vl83-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 19px;
    table-layout: fixed;
  }
  .vl83-table th, .vl83-table td {
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    vertical-align: top;
  }
  .vl83-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);
  }
  .vl83-table tbody td {
    color: var(--c-text-muted);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent);
  }
  .vl83-table tbody tr:nth-child(even) td {
    background: color-mix(in srgb, var(--c-text) 3%, transparent);
  }
  .vl83-table tbody tr:last-child td { border-bottom: none; }

  .vl83-cta-wrap { margin-top: 18px; }
  .vl83-cta {
    display: inline-block; padding: 12px 31px; border-radius: 1026px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.098em;
    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;
  }
  .vl83-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) {
    .vl83-cards { grid-template-columns: 1fr; }
    .vl83-bullets { grid-template-columns: 1fr; }
    .vl83-table th, .vl83-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .vl83-outer { padding: 22px 18px; border-radius: 14px; }
    .vl83-panel { padding: 17px 16px; border-radius: 12px; }
    .vl83-card { padding: 16px 16px 18px; }
  }

.cv83-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 372px;
  background: linear-gradient(138deg,
    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: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 14px 44px rgba(0,0,0,0.417);
  display: flex;
  align-items: flex-end;
}
.cv83-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cv83-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(175deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.21) 35%, rgba(0,0,0,0.826) 75%, rgba(0,0,0,0.904) 100%);
  z-index: 1;
}
.cv83-content {
  position: relative; z-index: 2;
  padding: 36px 43px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cv83-text { max-width: 728px; }
.cv83-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 1024px;
  background: color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent);
  color: var(--c-accent, #f59e0b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--c-accent, #f59e0b) 40%, transparent);
}
.cv83-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.508);
}
.cv83-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.828);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.393);
}
.cv83-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 970px;
  background: var(--c-accent, #22c55e);
  color: var(--c-bg, var(--c-bg));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 21px rgba(0,0,0,0.366);
  transition: box-shadow .25s ease, filter .18s;
}
.cv83-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #22c55e) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #22c55e) 38%, transparent);
}
.cv83-cta::after {
  content: '→';
  font-size: 16px;
}
@media (max-width: 768px) {
  .cv83-card { min-height: 330px; }
  .cv83-content {
    padding: 23px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cv83-title { font-size: 22px; }
}

.dh59-root { background: var(--c-bg); }
  .dh59-inner { max-width: 1164px; margin: 0 auto; }
  .dh59-head  { margin: 0 0 16px; }
  /* Inherit from framework `h2` token. */
  .dh59-title { margin: 0 0 6px; }
  .dh59-sub   { margin: 0; font-size: 14px; line-height: 1.55; color: var(--c-text-muted); max-width: 637px; }

  /* Compact 2-row layout — matches Trending (pg01) height so Popular Slots
     stays consistent across variants. 6 cols × 2 rows = 12 cells. One
     2×2 anchor top-left (4 cells) + 8 small = 12 → zero gaps. */
  .dh59-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    aspect-ratio: 3 / 1;
    gap: 10px;
    grid-template-areas:
      "b1 b1 s1 s2 s3 s4"
      "b1 b1 s5 s6 s7 s8";
  }
  .dh59-grid > .en-mb-pg-tile:nth-child(1) { grid-area: b1; }
  .dh59-grid > .en-mb-pg-tile:nth-child(2) { grid-area: s1; }
  .dh59-grid > .en-mb-pg-tile:nth-child(3) { grid-area: s2; }
  .dh59-grid > .en-mb-pg-tile:nth-child(4) { grid-area: s3; }
  .dh59-grid > .en-mb-pg-tile:nth-child(5) { grid-area: s4; }
  .dh59-grid > .en-mb-pg-tile:nth-child(6) { grid-area: s5; }
  .dh59-grid > .en-mb-pg-tile:nth-child(7) { grid-area: s6; }
  .dh59-grid > .en-mb-pg-tile:nth-child(8) { grid-area: s7; }
  .dh59-grid > .en-mb-pg-tile:nth-child(9) { grid-area: s8; }

  /* Hover style: "Shine Sweep" — a diagonal white glint slides across
     the art on hover, like chrome catching light. Combined with a gentle
     lift and an accent underline inside the ring. Feels editorial. */
  .en-mb-pg-tile {
    position: relative; background: var(--c-bg);
    border-radius: 12px; overflow: hidden;
    transition:
      transform 0.277s cubic-bezier(.16,.84,.3,1),
      box-shadow 0.286s;
  }
  .en-mb-pg-tile::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.0);
    pointer-events: none; z-index: 2;
    transition: box-shadow 0.282s;
  }
  /* The glint: a thin skewed white band parked off-screen left, sweeping
     all the way past the right edge on hover. 0.728s feels snappy but not
     hasty; easing keeps it smooth on big anchor tiles. */
  .en-mb-pg-tile::before {
    content: ''; position: absolute;
    top: -10%; bottom: -10%; left: -60%; width: 40%;
    background: linear-gradient(113deg, transparent, rgba(255,255,255,0.238), transparent);
    transform: skewX(-18deg);
    pointer-events: none; z-index: 1;
    transition: left 0.764s cubic-bezier(.16,.84,.3,1);
  }
  .en-mb-pg-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.486s cubic-bezier(.16,.84,.3,1), filter 0.305s;
  }
  .en-mb-pg-tile:hover {
    transform: translateY(-4px);
    box-shadow:
      0 16px 33px rgba(0,0,0,0.584),
      0 0 0 1px color-mix(in srgb, var(--c-accent) 60%, transparent);
  }
  .en-mb-pg-tile:hover::before { left: 120%; }
  .en-mb-pg-tile:hover::after { box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--c-accent) 65%, transparent); }
  .en-mb-pg-tile:hover .en-mb-pg-img { transform: scale(1.06); filter: brightness(1.08) saturate(1.1); }

  @media (max-width: 900px) {
    .dh59-grid {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 1fr);
      aspect-ratio: 4 / 3;
      grid-template-areas:
        "b1 b1 s1 s2"
        "b1 b1 s3 s4"
        "s5 s6 s7 s8";
    }
  }
  @media (max-width: 600px) {
    .dh59-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 1fr;
      aspect-ratio: auto;
      grid-template-areas: none;
      gap: 8px;
    }
    .dh59-grid > .en-mb-pg-tile { grid-area: auto !important; aspect-ratio: 1 / 1; }
  }

.tv62-wrap { max-width: 1189px; margin: 0 auto; }
  .tv62-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
  .tv62-line { flex: 1; height: 1px; background: linear-gradient(92deg, transparent, var(--c-border), transparent); }
  .tv62-title { font-size: 0.798rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--c-text-muted); margin: 0; }
  .tv62-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
  .tv62-row .en-mb-prov-tile { aspect-ratio: 4 / 3; background: color-mix(in oklab, var(--c-accent) 11%, var(--c-bg)); border: 1px solid color-mix(in oklab, var(--c-accent) 26%, var(--c-surface)); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 5px; }
  .tv62-row .en-mb-prov-img { max-width: 95%; max-height: 90%; object-fit: contain; }
  @media (max-width: 900px) { .tv62-row { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 600px) { .tv62-row { grid-template-columns: repeat(3, 1fr); } }

.ss77-wrap { max-width: 1125px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
  .ss77-intro { max-width: 855px; }
  .ss77-title { color: var(--c-text); margin: 0 0 14px; }
  .ss77-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .ss77-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ss77-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 27px 32px; }
  .ss77-h3 { color: var(--c-accent); margin: 0 0 14px; font-size: 1.043rem; font-weight: 700; }
  .ss77-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; }
  .ss77-p:last-child { margin-bottom: 0; }
  .ss77-list { margin: 0; padding-left: 18px; font-size: 15px; line-height: 1.75; color: var(--c-text-muted); }
  .ss77-list li { margin-bottom: 8px; }
  .ss77-list li:last-child { margin-bottom: 0; }
  .ss77-bottom { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 30px 36px; }
  .ss77-bh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.098rem; font-weight: 700; }
  .ss77-bp { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 22px; }
  .ss77-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 39px; }
  .ss77-h4 { color: var(--c-text); margin: 0 0 8px; font-size: 0.702rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.123em; }
  .ss77-cp { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .ss77-row { grid-template-columns: 1fr; } .ss77-grid { grid-template-columns: 1fr; gap: 18px; } }

.tq92-wrap { max-width: 1051px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .tq92-intro { max-width: 836px; }
  .tq92-title { color: var(--c-text); margin: 0 0 14px; }
  .tq92-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .tq92-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .tq92-col { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 24px 28px; }
  .tq92-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--c-border); }
  .tq92-num { font-size: 1.962rem; font-weight: 800; line-height: 1; letter-spacing: 0; font-variant-numeric: tabular-nums; }
  .tq92-num-pro { color: var(--c-accent); }
  .tq92-num-con { color: var(--c-text); }
  .tq92-headline { display: flex; flex-direction: column; gap: 2px; }
  .tq92-label { font-size: 0.692rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.137em; color: var(--c-text); margin: 0; }
  .tq92-sub { font-size: 0.744rem; color: var(--c-text-muted); }
  .tq92-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .tq92-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--c-text-muted); }
  .tq92-item svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
  .tq92-item-pro svg { color: var(--c-accent); }
  .tq92-item-con svg { color: var(--c-text-muted); }
  @media (max-width: 768px) { .tq92-row { grid-template-columns: 1fr; } }

.cf46-wrap { max-width: 763px; margin: 0 auto; }
  .cf46-title { color: var(--c-text); margin: 0 0 19px; }
  .cf46-lead { font-size: 18px; line-height: 1.7; color: var(--c-text); font-weight: 500; margin: 0 0 20px; }
  .cf46-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .cf46-p:last-child { margin-bottom: 0; }

.av20-wrap { max-width: 1086px; margin: 0 auto; }
  .av20-intro { max-width: 747px; margin-bottom: 22px; }
  .av20-title { color: var(--c-text); margin: 0 0 12px; }
  .av20-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .av20-scroll { overflow-x: auto; }
  .av20-table { width: 100%; min-width: 733px; border-collapse: separate; border-spacing: 0 8px; }
  .av20-table thead th { background: linear-gradient(91deg, 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.693rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.121em; text-align: left; }
  .av20-table thead th:first-child { border-radius: 12px 0 0 12px; }
  .av20-table thead th:last-child { border-radius: 0 12px 12px 0; }
  .av20-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); }
  .av20-table tbody td:first-child { border-left: 1px solid var(--c-border); border-radius: 12px 0 0 12px; }
  .av20-table tbody td:last-child { border-right: 1px solid var(--c-border); border-radius: 0 12px 12px 0; }
  .av20-table tbody tr.av20-active td { background: linear-gradient(90deg, color-mix(in srgb, var(--c-accent) 14%, var(--c-surface)), var(--c-surface) 80%); border-color: color-mix(in srgb, var(--c-accent) 30%, var(--c-border)); }
  .av20-rank { display: inline-flex; align-items: center; gap: 12px; }
  .av20-badge { width: 38px; height: 37px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: var(--c-bg); font-weight: 800; font-size: 0.956rem; flex-shrink: 0; }
  .av20-badge-bronze { background: #a0785a; }
  .av20-badge-silver { background: #8a8e94; }
  .av20-badge-gold { background: #c5a03f; }
  .av20-badge-plat { background: #6a7b8b; }
  .av20-badge-diamond { background: linear-gradient(131deg, 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); }
  .av20-rank-name { display: block; font-size: 0.999rem; font-weight: 800; color: var(--c-text); }
  .av20-rank-vol { display: block; font-size: 11px; color: var(--c-text-muted); margin-top: 2px; }
  .av20-pct { font-weight: 800; color: var(--c-accent); font-size: 1.004rem; font-variant-numeric: tabular-nums; }
  .av20-here { display: inline-block; font-size: 0.608rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.16em; padding: 3px 9px; border: 1px solid var(--c-accent); border-radius: 983px; }

.mf13-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 350px;
  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: 1px solid rgba(255,255,255,0.119);
  box-shadow: 0 14px 45px rgba(0,0,0,0.405);
  display: flex;
  align-items: flex-end;
}
.mf13-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.mf13-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(185deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.108) 35%, rgba(0,0,0,0.692) 70%, rgba(0,0,0,0.912) 100%);
  z-index: 1;
}
.mf13-content {
  position: relative; z-index: 2;
  padding: 39px 44px;
  width: 100%;
}
.mf13-title {
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.543);
}
.mf13-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.819);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 603px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.444);
}
.mf13-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* Variant 04 signature: dark glass pills. Hover halo borrows the brand
   accent so the glow tints to whatever colour the site uses. */
.mf13-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 986px;
  background: rgba(0,0,0,0.543);
  border: 1px solid rgba(255,255,255,0.192);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .25s ease;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.mf13-cta:hover {
  background: rgba(0,0,0,0.691);
  border-color: color-mix(in srgb, var(--c-accent, #4ade80) 70%, transparent);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #4ade80) 18%, transparent),
    0 8px 22px color-mix(in srgb, var(--c-accent, #4ade80) 24%, transparent);
}
.mf13-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .mf13-card { min-height: 327px; }
  .mf13-content { padding: 28px 22px; }
  .mf13-title { font-size: 22px; }
  .mf13-cta { padding: 11px 16px; font-size: 12px; }
}

.ds32-wrap { max-width: 744px; margin: 0 auto; }
.ds32-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.ds32-item:hover { border-color: color-mix(in srgb, var(--c-accent) 40%, transparent); }
.ds32-item.en-faq-open { border-color: color-mix(in srgb, var(--c-accent) 60%, transparent); }
.ds32-item.en-faq-open .ds32-q { background: color-mix(in srgb, var(--c-accent) 6%, var(--c-surface)); }
.ds32-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--c-surface);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  list-style: none;
  gap: 16px;
  user-select: none;
  transition: background .18s;
}
.ds32-q::-webkit-details-marker { display: none; }
.ds32-icon {
  width: 23px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  transition: transform .25s, background .18s;
}
.ds32-icon svg { display: block; flex-shrink: 0; }
.ds32-item.en-faq-open .ds32-icon { transform: rotate(45deg); background: var(--c-accent); color: var(--c-bg); }
.ds32-a {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}
.ds32-a a { color: var(--c-accent); text-decoration: underline; }
.ds32-header { text-align: center; margin-bottom: 37px; }
.ds32-title { margin-top: 8px; }
.ds32-lead { margin-top: 12px; }

.og89-wrap { max-width: 968px; margin: 0 auto; }
  .og89-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 29px 30px 30px;
    box-shadow: 0 16px 43px -22px rgba(0,0,0,0.296);
  }
  .og89-title { color: var(--c-text); margin: 0 0 14px; }
  .og89-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .og89-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 18px; }
  .og89-card {
    border-radius: 12px;
    padding: 22px 24px 24px;
    background: linear-gradient(132deg,
      color-mix(in srgb, var(--c-accent) 32%, var(--c-bg)) 0%,
      color-mix(in srgb, var(--c-accent) 10%, var(--c-bg)) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    box-shadow: 0 14px 37px -22px color-mix(in srgb, var(--c-accent) 50%, transparent);
    color: #fff;
  }
  .og89-card-h3 { color: #fff; font-size: 16px; font-weight: 800; line-height: 1.3; margin: 0 0 12px; }
  .og89-card-p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.84); margin: 0; font-weight: 600; }

  .og89-foot { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }

  @media (max-width: 768px) {
    .og89-cards { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .og89-outer { padding: 22px 18px; border-radius: 14px; }
    .og89-card { padding: 18px 18px 20px; }
  }

.yh46-header { text-align: center; margin-bottom: 2.445rem; }
  .yh46-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.481rem; }
  .yh46-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
  .yh46-card-head { background: color-mix(in srgb, var(--c-accent) 8%, var(--c-surface)); padding: 1.539rem; display: flex; flex-direction: column; align-items: center; gap: 0.766rem; border-bottom: 1px solid var(--c-border); }
  .yh46-avatar { width: 70px; height: 74px; 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: 1.528rem; font-weight: 800; color: var(--c-accent); border: 3px solid var(--c-accent); }
  .yh46-expert-name { font-size: 1.045rem; font-weight: 800; color: var(--c-text); text-align: center; }
  .yh46-expert-title { font-size: 0.764rem; color: var(--c-accent); font-weight: 600; text-align: center; }
  .yh46-expert-creds { font-size: 0.709rem; color: var(--c-text-muted); text-align: center; line-height: 1.5; }
  .yh46-overall-verdict { display: flex; align-items: center; gap: 8px; }
  .yh46-verdict-score { font-size: 1.795rem; font-weight: 900; color: var(--c-accent); }
  .yh46-verdict-label { font-size: 0.755rem; color: var(--c-text-muted); }
  .yh46-card-body { padding: 1.263rem; }
  .yh46-verdict-text { font-size: 0.852rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 0.974rem; font-style: italic; }
  .yh46-scores { display: flex; flex-direction: column; gap: 0.493rem; }
  .yh46-score-row { display: flex; align-items: center; justify-content: space-between; }
  .yh46-score-label { font-size: 0.765rem; color: var(--c-text-muted); }
  .yh46-score-bar-wrap { flex: 1; margin: 0 0.636rem; height: 6px; background: var(--c-border); border-radius: 3px; overflow: hidden; }
  .yh46-score-bar { height: 100%; background: var(--c-accent); border-radius: 3px; }
  .yh46-score-num { font-size: 0.76rem; font-weight: 700; color: var(--c-text); min-width: 27px; text-align: right; }
  @media (max-width: 880px) { .yh46-grid { grid-template-columns: 1fr; } }
  .yh46-s1 { color: #f59e0b; font-size: 0.879rem; }
  .yh46-s2 { background: color-mix(in srgb,#8b5cf6 8%,var(--c-surface)); }
  .yh46-s3 { background: color-mix(in srgb,#8b5cf6 20%,var(--c-surface)); color: #8b5cf6; border-color: #8b5cf6; }
  .yh46-s4 { color: #8b5cf6; }
  .yh46-s5 { width: 90%; background: #8b5cf6; }
  .yh46-s6 { width: 88%; background: #8b5cf6; }
  .yh46-s7 { width: 85%; background: #8b5cf6; }
  .yh46-s8 { width: 92%; background: #8b5cf6; }
  .yh46-s9 { background: color-mix(in srgb,#10b981 8%,var(--c-surface)); }
  .yh46-s10 { background: color-mix(in srgb,#10b981 20%,var(--c-surface)); color: #10b981; border-color: #10b981; }
  .yh46-s11 { color: #10b981; }
  .yh46-s12 { width: 100%; background: #10b981; }
  .yh46-s13 { width: 96%; background: #10b981; }
  .yh46-s14 { width: 92%; background: #10b981; }
  .yh46-s15 { width: 88%; background: #10b981; }

.jk82-wrap { padding: 0.74rem 0; }
  .jk82-band {
    height: 2px;
    background: linear-gradient(
      92deg,
      transparent 0%,
      color-mix(in srgb, var(--c-accent) 40%, transparent) 20%,
      var(--c-accent) 50%,
      color-mix(in srgb, var(--c-accent) 40%, transparent) 80%,
      transparent 100%
    );
    border-radius: 2px;
  }

/* Trimmed — card padding 20/28, tile aspect 7/2 so badges sit in a
     slim card roughly 60 % of the previous height. The caption column
     no longer forces the card to match its natural height because we
     dropped the 5/3 tall tiles. */
  .qy72-root { padding: 29px 0; }
  .qy72-wrap { max-width: 1061px; margin: 0 auto; }
  .qy72-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 20px 28px; display: grid; grid-template-columns: minmax(203px, 256px) 1fr; gap: 27px; align-items: center; }
  .qy72-title { margin: 0 0 6px; font-size: 1.071rem; }
  .qy72-sub { font-size: 13px; line-height: 1.55; color: var(--c-text-muted); margin: 0; }
  .qy72-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .qy72-grid .en-mb-trust-tile { aspect-ratio: 7 / 2; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 8px 12px; }
  .qy72-grid .en-mb-trust-img { max-width: 82%; max-height: 80%; object-fit: contain; }
  @media (max-width: 768px) { .qy72-card { grid-template-columns: 1fr; gap: 16px; padding: 18px 18px; } .qy72-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .qy72-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Layout contract ───────────────────────────────────────────────
     Two rows:
       Row 1 (top) — [logo] [nav + extra links] [compact payments → right]
       Row 2 (bottom) — [© brand · play responsibly · 18+] centred
     Payments live in row 1 and push to the right via `margin-left:auto`
     so the logo anchors the left, the nav fills the middle, and the
     payment strip caps the row on the right. Bottom row is pure
     compliance/brand copy — small + centred. */
  .ig96-root { background: var(--c-bg); }
  .ig96-top {
    display: flex; align-items: center;
    gap: 10px 20px; flex-wrap: wrap;
    padding: 14px 0;
    min-height: 44px;
  }
  .ig96-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
  /* `:empty` hides the nav when a landing (single-page) site produced
     no FOOTER_NAV_LINKS / FOOTER_EXTRA_LINKS output — avoids the ugly
     centred gap between logo and payments. */
  .ig96-nav:empty { display: none; }
  .ig96-nav a { font-size: 0.794rem; color: var(--c-text-muted); text-decoration: none; transition: color 0.2s; }
  .ig96-nav a:hover { color: var(--c-accent); }

  /* Compact payments pinned to the right edge of the top row. Same
     sizing recipe as footer_12 so the two dense variants look like
     siblings: 20 px tall icon, 4/8 padding, 50 px max-width. Scoped
     override of .en-pay-logo. */
  .ig96-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
  .ig96-pay:empty { display: none; }
  .ig96-pay .en-pay-logo {
    height: 20px;
    max-width: 50px;
    padding: 4px 8px;
    border-radius: 5px;
  }

  .ig96-bottom {
    display: flex; align-items: center; justify-content: center;
    gap: 10px 21px; flex-wrap: wrap;
    padding: 10px 0;
    border-top: 1px solid var(--c-border);
    font-size: 0.765rem; color: var(--c-text-muted);
  }
  .ig96-copy { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }

  @media (max-width: 768px) {
    .ig96-pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  }
  @media (max-width: 600px) {
    .ig96-top { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ig96-nav { flex: 1 1 100%; }
    .ig96-pay { justify-content: flex-start; }
  }

/* ── 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"] .en-btn,
  body [class*="actions-desktop"] .en-btn,
  body [class*="btns-desktop"] .en-btn,
  body [class*="cta-wrap"] .en-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: 11px !important;
  }
}
