@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
  --c-primary: #0c0c0c;
  --c-secondary: #151515;
  --c-accent: #e62e00;
  --c-bg: #161f27;
  --c-surface: #2b2222;
  --c-text: #eee4af;
  --c-text-muted: #e0bc0b;
  --c-btn: #f2be02;
  --c-btn-text: #fbfbf4;
  --c-border: #262121;
  --c-grad-start: #0c0c0c;
  --c-grad-end: #221a1a;
  --c-logo-text: #ffffff;
}
.pp-logo-text { color: var(--c-logo-text) !important; font-size: 27px !important; font-family: 'Black Ops One', sans-serif !important; }
[class*="_logo"] { font-family: 'Black Ops One', sans-serif !important; color: #ffffff !important; }


/* ─── Logo Icon ─── */
.pp-logo-icon {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Black Ops One', sans-serif !important;
}

.zk40-logo-area { display: flex; align-items: center; gap: 10px; }
  .zk40-player-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.765rem;
    color: var(--c-text-muted);
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .zk40-nav { display: none; }
    .zk40-player-count { display: none; }
    .zk40-menu-btn { display: flex !important; }
    .zk40-cta-desktop { display: none; }
  }
  .zk40-menu-btn { display: none; }
  .zk40-sroot { position: sticky; top: 0; z-index: 100; }
  .zk40-mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .zk40-mrow { padding: 12px 0; border-top: 1px solid var(--c-border); }
  .zk40-mbtn-full { width: 100%; justify-content: center; }

.db66-hero {
  position: relative;
  min-height: 493px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.db66-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(182deg,
    rgb(0 0 0 / calc(.5 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.62 + var(--hi-offset, 0))) 100%);
}
.db66-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 670px;
  padding: 41px 24px;
}
.db66-title { color: #fff; margin: 0 0 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.394); }
.db66-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.837);
  line-height: 1.6;
  margin: 0 0 27px;
}
.db66-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter .2s, box-shadow .2s;
}
.db66-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
    0 12px 27px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
}
@media (max-width: 600px) { .db66-hero { min-height: 379px; } }

.es16-hero {
    background: linear-gradient(135deg, var(--c-bg) 0%, color-mix(in srgb, var(--c-primary) 20%, var(--c-bg)) 100%);
    position: relative; overflow: hidden;
  }
  .es16-pattern {
    position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 32px 32px;
  }
  .es16-grid {
    display: grid; grid-template-columns: 1fr 369px; gap: 48px;
    align-items: center; position: relative; z-index: 1;
  }
  .es16-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 20px;
    background: color-mix(in srgb, #ef4444 10%, transparent);
    border: 1px solid color-mix(in srgb, #ef4444 30%, transparent);
    font-size: 0.727rem; font-weight: 700; color: #ef4444;
    text-transform: uppercase; letter-spacing: 0.078em; margin-bottom: 18px;
  }
  .es16-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; flex-shrink: 0; }
  .es16-title { color: var(--c-text); margin-bottom: 14px; }
  .es16-accent { color: var(--c-accent); }
  .es16-desc { font-size: 0.987rem; color: var(--c-text-muted); line-height: 1.7; max-width: 448px; margin-bottom: 20px; }
  .es16-games {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
  }
  .es16-game-pill {
    padding: 6px 14px; border-radius: 20px;
    background: var(--c-surface); border: 1px solid var(--c-border);
    font-size: 0.765rem; font-weight: 600; color: var(--c-text);
  }
  .es16-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .es16-card {
    background: var(--c-surface); border: 1px solid var(--c-border);
    border-radius: 16px; box-shadow: 0 0 16px rgba(255,255,255,0.183), 0 0 4px rgba(255,255,255,0.132); overflow: hidden;
  }
  .es16-card-header {
    padding: 16px 22px; border-bottom: 1px solid var(--c-border);
    background: color-mix(in srgb, #ef4444 4%, var(--c-surface));
    display: flex; align-items: center; gap: 8px;
  }
  .es16-card-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }
  .es16-card-title { font-size: 0.751rem; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.079em; }
  .es16-card-body { padding: 23px; }
  .es16-tables { display: flex; flex-direction: column; gap: 12px; }
  .es16-table {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; background: color-mix(in srgb, var(--c-bg) 40%, var(--c-surface));
    border: 1px solid var(--c-border); border-radius: 10px;
  }
  .es16-table-name { font-size: 0.828rem; font-weight: 700; color: var(--c-text); }
  .es16-table-info { font-size: 0.711rem; color: var(--c-text-muted); }
  .es16-table-seats {
    font-size: 0.737rem; font-weight: 700; color: #22c55e;
    padding: 3px 8px; background: color-mix(in srgb, #22c55e 10%, transparent);
    border-radius: 10px;
  }
  .es16-card-footer { padding: 14px 22px; border-top: 1px solid var(--c-border); }
  @media (max-width: 880px) {
    .es16-grid { grid-template-columns: 1fr; }
    .es16-card { display: none; }
  }
  .es16-s1 { width: 100%; justify-content: center; }

.sx14-wrap { max-width: 962px; margin: 0 auto; }
  .sx14-title { color: var(--c-text); margin: 0 0 21px; }
  .sx14-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .sx14-panel {
    position: relative;
    margin: 27px 0;
    border-radius: 18px;
    background:
      linear-gradient(178deg,
        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 60px -27px color-mix(in srgb, var(--c-accent) 70%, transparent),
      0 0 0 1px color-mix(in srgb, var(--c-accent) 10%, transparent);
    overflow: hidden;
  }
  .sx14-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(89deg,
      transparent 0%,
      var(--c-accent) 50%,
      transparent 100%);
    opacity: 0.6;
    pointer-events: none;
  }
  .sx14-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .sx14-spec th, .sx14-spec td {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .sx14-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-text);
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(136deg,
      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));
  }
  .sx14-spec thead th:first-child {
    color: var(--c-accent);
  }
  .sx14-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 38%;
    border-left: 3px solid transparent;
    padding-left: 21px;
    transition: border-left-color .25s ease, color .25s ease;
  }
  .sx14-spec tbody td { color: var(--c-text-muted); }
  .sx14-spec tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background-color .25s ease;
  }
  .sx14-spec tbody tr:last-child { border-bottom: none; }
  .sx14-spec tbody tr:hover {
    background: linear-gradient(89deg,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 2%, transparent) 100%);
  }
  .sx14-spec tbody tr:hover th {
    border-left-color: var(--c-accent);
    color: var(--c-accent);
  }
  @media (max-width: 640px) {
    .sx14-spec th, .sx14-spec td { padding: 12px 16px; font-size: 13px; }
    .sx14-panel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .sx14-spec { table-layout: auto; min-width: 500px; }
    .sx14-spec tbody th { padding-left: 13px; width: auto; }
  }

.vf17-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 369px;
  background: linear-gradient(134deg,
    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.117);
  box-shadow: 0 14px 45px rgba(0,0,0,0.437);
  display: flex;
  align-items: flex-end;
}
.vf17-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vf17-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(183deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.219) 35%, rgba(0,0,0,0.798) 75%, rgba(0,0,0,0.938) 100%);
  z-index: 1;
}
.vf17-content {
  position: relative; z-index: 2;
  padding: 35px 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.vf17-text { max-width: 737px; }
.vf17-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 990px;
  background: color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent);
  color: var(--c-accent, #f59e0b);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.118em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--c-accent, #f59e0b) 40%, transparent);
}
.vf17-title {
  font-size: 29px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.529);
}
.vf17-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.796);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.366);
}
.vf17-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 1018px;
  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 20px rgba(0,0,0,0.362);
  transition: box-shadow .25s ease, filter .18s;
}
.vf17-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);
}
.vf17-cta::after {
  content: '→';
  font-size: 16px;
}
@media (max-width: 768px) {
  .vf17-card { min-height: 335px; }
  .vf17-content {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .vf17-title { font-size: 22px; }
}

.hu59-wrap { max-width: 1057px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .hu59-intro { max-width: 814px; }
  .hu59-title { color: var(--c-text); margin: 0 0 14px; }
  .hu59-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .hu59-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .hu59-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 31px; }
  .hu59-tag { display: inline-block; font-size: 0.644rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.141em; margin-bottom: 10px; }
  .hu59-h3 { color: var(--c-text); margin: 0 0 12px; font-size: 1.071rem; font-weight: 700; }
  .hu59-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .hu59-row { grid-template-columns: 1fr; } }

.im82-wrap { max-width: 1111px; margin: 0 auto; }
  .im82-intro { max-width: 772px; margin-bottom: 22px; }
  .im82-title { color: var(--c-text); margin: 0 0 12px; }
  .im82-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .im82-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid var(--c-border); scrollbar-width: thin; scrollbar-color: var(--c-accent) color-mix(in srgb, var(--c-border) 60%, transparent); }
  .im82-scroll::-webkit-scrollbar { height: 5px; }
  .im82-scroll::-webkit-scrollbar-track { background: color-mix(in srgb, var(--c-border) 60%, transparent); border-radius: 0 0 14px 14px; }
  .im82-scroll::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 5px; }
  .im82-table { width: 100%; min-width: 757px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .im82-table thead th { background: linear-gradient(133deg, var(--c-grad-start), var(--c-surface)); color: var(--c-text); text-align: left; padding: 18px 20px; font-size: 0.695rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.118em; border-bottom: 1px solid var(--c-border); vertical-align: bottom; }
  .im82-table thead th.im82-best { background: linear-gradient(132deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 60%, var(--c-grad-end))); color: var(--c-bg); padding-top: 14px; }
  .im82-best-badge { display: inline-block; background: var(--c-bg); color: var(--c-accent); font-size: 0.584rem; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.137em; margin-bottom: 8px; }
  .im82-best-title { display: block; }
  .im82-table tbody td { padding: 16px 20px; font-size: 14px; line-height: 1.55; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .im82-table tbody td.im82-best-cell { background: color-mix(in srgb, var(--c-accent) 8%, transparent); color: var(--c-text); font-weight: 600; border-left: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); border-right: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); }
  .im82-table tbody tr:last-child td { border-bottom: none; }
  .im82-table tbody tr:last-child td.im82-best-cell { border-bottom: 2px solid var(--c-accent); }
  .im82-table tbody td:first-child { color: var(--c-text); font-weight: 700; }
  .im82-num { color: var(--c-accent); font-weight: 800; font-variant-numeric: tabular-nums; }
  .im82-best-cell .im82-num { color: var(--c-bg); background: var(--c-accent); padding: 2px 8px; border-radius: 4px; }

.gz80-wrap { max-width: 634px; margin: 0 auto; }
  .gz80-title { color: var(--c-text); margin: 0 0 19px; }
  .gz80-p { font-size: 16px; line-height: 1.9; color: var(--c-text-muted); margin: 0 0 18px; }
  .gz80-p:last-child { margin-bottom: 0; }

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

  .rk18-panel {
    border-radius: 16px;
    padding: 26px 27px 28px;
    margin-bottom: 18px;
    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 51px -29px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff;
  }
  .rk18-panel:last-of-type { margin-bottom: 0; }

  .rk18-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .rk18-h3-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.782); margin: 0 0 22px; }
  .rk18-h3-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.788); margin: 22px 0 0; }

  .rk18-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: rk18-step; }
  .rk18-step {
    counter-increment: rk18-step;
    display: flex; align-items: center; gap: 14px;
    padding: 0;
  }
  .rk18-step::before {
    content: counter(rk18-step);
    flex: 0 0 auto;
    width: 51px; height: 49px;
    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.021em;
  }
  .rk18-step-text {
    flex: 1;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.047);
    border: 1px solid rgba(255,255,255,0.054);
    color: rgba(255,255,255,0.932);
    font-size: 13px; line-height: 1.5; font-weight: 600;
  }

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

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

.dx74-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 330px;
  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.092);
  box-shadow: 0 18px 50px rgba(0,0,0,0.421);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dx74-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dx74-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(185deg, rgba(0,0,0,0.494) 0%, rgba(0,0,0,0.666) 100%);
  z-index: 1;
}
.dx74-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 49px 28px;
  max-width: 714px;
}
.dx74-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.494);
  letter-spacing: -0.01em;
}
.dx74-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.861);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 531px;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.44);
}
.dx74-cta-row {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Variant 01 signature: clean white pills (full radius) with soft white halo on hover */
.dx74-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 1015px;
  background: #ffffff;
  color: var(--c-bg);
  font-size: 13px; font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.116);
  box-shadow: 0 4px 14px rgba(0,0,0,0.162);
  transition: box-shadow .25s ease;
}
.dx74-cta:hover {
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.16),
    0 8px 22px rgba(255,255,255,0.264),
    0 4px 14px rgba(0,0,0,0.194);
}
.dx74-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .dx74-card { min-height: 281px; }
  .dx74-content { padding: 36px 21px; }
  .dx74-title { font-size: 24px; }
  .dx74-cta { padding: 11px 18px; font-size: 12px; }
}

.ln34-wrap { max-width: 1130px; margin: 0 auto; display: flex; flex-direction: column; gap: 23px; }
  .ln34-intro { max-width: 864px; }
  .ln34-title { color: var(--c-text); margin: 0 0 14px; }
  .ln34-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .ln34-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ln34-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 28px 32px; }
  .ln34-h3 { color: var(--c-accent); margin: 0 0 14px; font-size: 1.029rem; font-weight: 700; }
  .ln34-p { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; }
  .ln34-p:last-child { margin-bottom: 0; }
  .ln34-list { margin: 0; padding-left: 18px; font-size: 15px; line-height: 1.75; color: var(--c-text-muted); }
  .ln34-list li { margin-bottom: 8px; }
  .ln34-list li:last-child { margin-bottom: 0; }
  .ln34-bottom { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 31px 37px; }
  .ln34-bh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.099rem; font-weight: 700; }
  .ln34-bp { font-size: 14px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 22px; }
  .ln34-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 41px; }
  .ln34-h4 { color: var(--c-text); margin: 0 0 8px; font-size: 0.701rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.119em; }
  .ln34-cp { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .ln34-row { grid-template-columns: 1fr; } .ln34-grid { grid-template-columns: 1fr; gap: 18px; } }

.pa69-wrap { max-width: 1051px; margin: 0 auto; display: flex; flex-direction: column; gap: 23px; }
  .pa69-intro { max-width: 796px; }
  .pa69-title { color: var(--c-text); margin: 0 0 14px; }
  .pa69-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .pa69-row { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }
  .pa69-col { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 29px; }
  .pa69-col-pros { border-color: color-mix(in srgb, var(--c-accent) 35%, var(--c-border)); }
  .pa69-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.673rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.144em; padding: 6px 12px; border-radius: 6px; margin: 0 0 18px; }
  .pa69-label-cons { background: color-mix(in srgb, var(--c-text-muted) 14%, transparent); color: var(--c-text); }
  .pa69-label-pros { background: color-mix(in srgb, var(--c-accent) 16%, transparent); color: var(--c-accent); }
  .pa69-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .pa69-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.55; color: var(--c-text-muted); }
  .pa69-ico { flex-shrink: 0; width: 20px; height: 21px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin-top: 1px; }
  .pa69-ico-pro { background: var(--c-accent); color: var(--c-bg); }
  .pa69-ico-con { background: color-mix(in srgb, var(--c-text-muted) 28%, transparent); color: var(--c-text-muted); }
  .pa69-ico svg { width: 12px; height: 12px; }
  @media (max-width: 768px) { .pa69-row { grid-template-columns: 1fr; } }

.gu21-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 369px;
  background: linear-gradient(134deg,
    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.107);
  box-shadow: 0 16px 51px rgba(0,0,0,0.457);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}
.gu21-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gu21-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.492) 0%, rgba(0,0,0,0.101) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.gu21-glass {
  position: relative;
  z-index: 2;
  max-width: 451px;
  padding: 32px 32px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary, #1e3a8a) 70%, rgba(0,0,0,0.425));
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 36px rgba(0,0,0,0.455);
}
.gu21-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.gu21-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.806);
  line-height: 1.5;
  margin: 0 0 24px;
}
.gu21-cta {
  display: inline-block;
  padding: 13px 35px;
  border-radius: 990px;
  background: var(--c-accent, #3b82f6);
  color: var(--c-bg, #fff);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 21px rgba(0,0,0,0.279);
  transition: box-shadow .25s ease, filter .18s;
}
.gu21-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #3b82f6) 22%, transparent),
    0 10px 27px color-mix(in srgb, var(--c-accent, #3b82f6) 38%, transparent);
}
@media (max-width: 768px) {
  .gu21-card {
    min-height: 335px;
    padding: 24px;
    justify-content: center;
  }
  .gu21-overlay {
    background: linear-gradient(176deg, rgba(0,0,0,0.367) 0%, rgba(0,0,0,0.75) 100%);
  }
  .gu21-glass { padding: 24px 21px; max-width: 100%; }
  .gu21-title { font-size: 22px; }
}

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

  .ce89-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; counter-reset: vp04c; }
  .ce89-card {
    counter-increment: vp04c;
    position: relative;
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(139deg,
      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;
    overflow: hidden;
  }
  .ce89-card::before {
    content: counter(vp04c);
    position: absolute; top: 12px; right: 16px;
    font-size: 27px; font-weight: 900; line-height: 1;
    color: color-mix(in srgb, var(--c-accent) 70%, transparent);
    letter-spacing: -0.02em;
  }
  .ce89-card-h3 { color: #fff; font-size: 15px; font-weight: 800; line-height: 1.3; margin: 0 0 10px; padding-right: 37px; }
  .ce89-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.779); margin: 0; }

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

  .ce89-panel {
    border-radius: 14px; padding: 22px 24px 24px;
    background: linear-gradient(135deg,
      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 19px 51px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 22px;
  }
  .ce89-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .ce89-panel-lead { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.775); margin: 0 0 16px; }
  .ce89-panel-foot { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.773); margin: 16px 0 0; }

  .ce89-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }
  .ce89-bullet { display: flex; align-items: center; gap: 12px; }
  .ce89-bullet-icon {
    flex: 0 0 14px; width: 14px; height: 14px;
    background: var(--c-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 22%, transparent);
  }
  .ce89-bullet-text { flex: 1; color: rgba(255,255,255,0.922); font-size: 13px; line-height: 1.4; font-weight: 500; }

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

  .ce89-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;
  }
  .ce89-table th, .ce89-table td { padding: 14px 17px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .ce89-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);
  }
  .ce89-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .ce89-table tbody tr:last-child td { border-bottom: none; }
  .ce89-table tbody td:first-child {
    color: var(--c-text); font-weight: 600;
    border-left: 3px solid transparent;
    padding-left: 17px;
    transition: border-left-color .25s ease;
  }
  .ce89-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 6%, transparent); }
  .ce89-table tbody tr:hover td:first-child { border-left-color: var(--c-accent); }

  .ce89-cta-wrap { margin-top: 18px; }
  .ce89-cta {
    display: inline-block; padding: 12px 30px; border-radius: 1011px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; 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;
  }
  .ce89-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: 768px) {
    .ce89-cards { grid-template-columns: 1fr; }
    .ce89-bullets { grid-template-columns: 1fr; }
    .ce89-table th, .ce89-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .ce89-outer { padding: 23px 18px; border-radius: 14px; }
    .ce89-panel { padding: 18px 16px; border-radius: 12px; }
  }

.aj60-wrap { max-width: 707px; margin: 0 auto; }
  .aj60-title { color: var(--c-text); margin: 0 0 23px; }
  .aj60-first { font-size: 16px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .aj60-first::first-letter { initial-letter: 2; -webkit-initial-letter: 2; font-size: 3.422rem; font-weight: 800; color: var(--c-accent); float: left; line-height: 0.9; padding: 6px 12px 0 0; margin-top: 4px; }
  .aj60-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .aj60-p:last-child { margin-bottom: 0; }

.pi13-root { background: var(--c-bg); }
  /* This variant keeps 3 rows as requested — capped a bit narrower than
     the 2-row siblings (1180 → 900) so the overall block height stays
     close to the Trending (pg01) benchmark instead of towering over the
     rest of the page. */
  .pi13-inner { max-width: 923px; margin: 0 auto; }
  .pi13-head  { margin: 0 0 18px; text-align: center; }
  /* Inherit from framework `h2` token. */
  .pi13-title { margin: 0 0 6px; }
  .pi13-sub   { margin: 0 auto; font-size: 14px; line-height: 1.55; color: var(--c-text-muted); max-width: 545px; }

  /* 6 cols × 3 rows = 18 cells, 18 tiles → zero gaps. Flat grid, no anchors. */
  .pi13-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    aspect-ratio: 6 / 3;
    gap: 10px;
  }

  /* ── "Spotlight Focus" hover effect ─────────────────────────────────
     No scale, no translate, no zoom — all motion is via filter + border.
     The :has() selector lets a hover on ANY child dim all its siblings,
     so the hovered tile looks like it's in a spotlight. On top of that:
       • accent ring + ambient glow on the hovered tile
       • a thin vertical accent scan-line slides across it
       • the focused image brightens slightly (no transform, no zoom)
     Supported by Safari 15.4+, Chrome 105+, Firefox 121+ — safe in 2026. */
  .pp-mb-pg-tile {
    position: relative;
    background: var(--c-bg);
    border-radius: 10px;
    overflow: hidden;
    transition:
      filter 0.342s ease,
      opacity 0.351s ease,
      box-shadow 0.353s ease;
  }
  .pp-mb-pg-tile::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.074);
    pointer-events: none; z-index: 2;
    transition: box-shadow 0.34s ease;
  }
  /* Scan-line: a thin accent-coloured vertical stripe parked just off the
     left edge. On hover it glides across to the right edge and fades out. */
  .pp-mb-pg-tile::before {
    content: ''; position: absolute;
    top: 0; bottom: 0; left: -8%;
    width: 8%;
    background: linear-gradient(88deg,
      transparent,
      color-mix(in srgb, var(--c-accent) 70%, transparent),
      transparent);
    pointer-events: none; z-index: 1; opacity: 0;
    transition: left 0.689s cubic-bezier(.16,.84,.3,1), opacity 0.2s ease;
    mix-blend-mode: screen;
  }
  .pp-mb-pg-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: filter 0.302s ease;
  }

  /* When ANY tile is hovered, ALL siblings dim. */
  .pi13-grid:has(.pp-mb-pg-tile:hover) .pp-mb-pg-tile:not(:hover) {
    filter: saturate(0.35) brightness(0.55);
    opacity: 0.7;
  }

  /* The hovered tile itself: accent ring + ambient glow, slightly brighter
     image, scan-line plays across. */
  .pp-mb-pg-tile:hover {
    box-shadow:
      0 0 0 2px color-mix(in srgb, var(--c-accent) 85%, transparent),
      0 0 22px color-mix(in srgb, var(--c-accent) 40%, transparent),
      0 10px 22px rgba(0,0,0,0.57);
  }
  .pp-mb-pg-tile:hover::after { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.204); }
  .pp-mb-pg-tile:hover::before { left: 100%; opacity: 1; }
  .pp-mb-pg-tile:hover .pp-mb-pg-img { filter: brightness(1.1) saturate(1.15) contrast(1.04); }

  @media (max-width: 960px) {
    .pi13-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(5, 1fr); aspect-ratio: 4 / 5; }
    .pi13-grid > .pp-mb-pg-tile:nth-child(n+21) { display: none; } /* leave all visible up to 20 */
  }
  @media (max-width: 600px) {
    .pi13-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(6, 1fr); aspect-ratio: 3 / 6; gap: 8px; }
  }

.hv95-wrap { max-width: 1145px; margin: 0 auto; }
  .hv95-intro { max-width: 742px; margin-bottom: 22px; }
  .hv95-title { color: var(--c-text); margin: 0 0 10px; }
  .hv95-lead { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .hv95-feat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px; }
  .hv95-feat-row .pp-mb-prov-tile { aspect-ratio: 5 / 2; background: var(--c-bg); border: 2px solid color-mix(in srgb, var(--c-accent) 35%, var(--c-border)); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 10px; box-shadow: 0 4px 18px -10px color-mix(in srgb, var(--c-accent) 50%, transparent); }
  .hv95-feat-row .pp-mb-prov-img { max-width: 97%; max-height: 92%; object-fit: contain; }
  .hv95-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .hv95-grid .pp-mb-prov-tile { aspect-ratio: 16 / 9; background: color-mix(in oklab, var(--c-accent) 14%, var(--c-bg)); border: 1px solid color-mix(in oklab, var(--c-accent) 32%, var(--c-surface)); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 4px; }
  .hv95-grid .pp-mb-prov-img { max-width: 97%; max-height: 92%; object-fit: contain; }
  @media (max-width: 900px) { .hv95-feat-row { grid-template-columns: 1fr; } .hv95-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 600px) { .hv95-grid { grid-template-columns: repeat(3, 1fr); } }

.gk88-wrap { max-width: 957px; margin: 0 auto; }
  .gk88-title { color: var(--c-text); margin: 0 0 24px; }
  .gk88-cols { column-count: 2; column-gap: 47px; }
  .gk88-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; break-inside: avoid; }
  .gk88-p:last-child { margin-bottom: 0; }
  @media (max-width: 768px) { .gk88-cols { column-count: 1; } }

.ae58-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 353px;
  background: linear-gradient(137deg,
    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.076);
  box-shadow: 0 18px 50px rgba(0,0,0,0.41);
  display: flex;
  align-items: center;
}
.ae58-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ae58-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.887) 0%, rgba(0,0,0,0.637) 35%, rgba(0,0,0,0.191) 70%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.ae58-content {
  position: relative; z-index: 2;
  padding: 47px 50px;
  max-width: 615px;
}
.ae58-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.505);
}
.ae58-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.827);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 490px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.ae58-cta-row {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
/* Variant 02 signature: clean solid-accent rectangular buttons,
   icon on the left, bold uppercase text. Hover halo borrows the brand
   accent so the glow always matches the button colour. */
.ae58-cta {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 12px;
  background: var(--c-accent, #f59e0b);
  color: var(--c-bg, var(--c-bg));
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.041em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .25s ease, filter .18s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.282);
}
.ae58-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.303);
}
.ae58-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .ae58-card { min-height: 314px; }
  .ae58-overlay {
    background: linear-gradient(181deg, rgba(0,0,0,0.501) 0%, rgba(0,0,0,0.884) 100%);
  }
  .ae58-content { padding: 32px 24px; max-width: 100%; }
  .ae58-title { font-size: 26px; }
  .ae58-cta-row { flex-wrap: wrap; }
  .ae58-cta { padding: 13px 16px; font-size: 12px; }
}

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

  .lj66-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 14px; margin: 0 0 18px; align-items: stretch; }
  .lj66-primary {
    border-radius: 14px;
    padding: 25px 28px;
    background: linear-gradient(136deg,
      color-mix(in srgb, var(--c-accent) 38%, var(--c-bg)) 0%,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent);
    color: #fff;
    display: flex; flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 51px -28px color-mix(in srgb, var(--c-accent) 60%, transparent);
  }
  .lj66-primary-h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.3; margin: 0 0 12px; }
  .lj66-primary-p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.836); margin: 0; font-weight: 500; }

  .lj66-side { display: flex; flex-direction: column; gap: 10px; }
  .lj66-row {
    flex: 1;
    border-radius: 12px;
    padding: 16px 20px;
    background: linear-gradient(139deg,
      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 color-mix(in srgb, var(--c-accent) 32%, transparent);
    color: #fff;
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 12px 31px -22px color-mix(in srgb, var(--c-accent) 45%, transparent);
  }
  .lj66-row-h3 { color: #fff; font-size: 15px; font-weight: 800; line-height: 1.3; margin: 0 0 6px; }
  .lj66-row-p { font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.756); margin: 0; }

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

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

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

.oy65-header { text-align: center; }
.oy65-title { margin-top: 8px; }
.oy65-lead { margin-top: 10px; max-width: 548px; margin-left: auto; margin-right: auto; }
.oy65-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 37px; max-width: 903px; margin-left: auto; margin-right: auto; align-items: start; }
.oy65-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 3px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.oy65-item:hover { border-left-color: color-mix(in srgb, var(--c-accent) 50%, transparent); }
.oy65-item.pp-faq-open {
  border-left-color: var(--c-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--c-accent) 5%, transparent);
}
.oy65-q {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; cursor: pointer; list-style: none; user-select: none;
}
.oy65-q::-webkit-details-marker { display: none; }
.oy65-qtext { flex: 1; font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.4; }
.oy65-icon, .oy65-plus {
  width: 18px; height: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted); font-size: 16px; font-weight: 300;
  transition: transform .2s, color .2s;
}
.oy65-item.pp-faq-open .oy65-icon,
.oy65-item.pp-faq-open .oy65-plus { transform: rotate(180deg); color: var(--c-accent); }
.oy65-body {
  padding: 12px 18px 16px 18px; font-size: 13px; line-height: 1.7;
  color: var(--c-text-muted); border-top: 1px solid var(--c-border);
}
.oy65-cta {
  margin-top: 28px; max-width: 915px; margin-left: auto; margin-right: auto;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 10px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.oy65-cta-text { font-size: 14px; font-weight: 600; color: var(--c-text); }
.oy65-cta-sub { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
@media (max-width: 640px) { .oy65-grid { grid-template-columns: 1fr; } }

.bh11-header { text-align: center; margin-bottom: 2.442rem; }
  .bh11-masonry { columns: 3; column-gap: 1.218rem; }
  .bh11-card { break-inside: avoid; margin-bottom: 1.26rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 1.252rem; display: flex; flex-direction: column; gap: 0.633rem; }
  .bh11-card-large { padding: 1.7rem; }
  .bh11-card-accent { border-color: color-mix(in srgb, var(--c-accent) 40%, transparent); background: color-mix(in srgb, var(--c-accent) 4%, var(--c-surface)); }
  .bh11-top { display: flex; align-items: center; gap: 10px; }
  .bh11-avatar { width: 43px; height: 43px; border-radius: 50%; background: color-mix(in srgb, var(--c-accent) 20%, var(--c-surface)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.814rem; color: var(--c-accent); flex-shrink: 0; }
  .bh11-name { font-weight: 700; font-size: 0.871rem; color: var(--c-text); }
  .bh11-role { font-size: 0.691rem; color: var(--c-text-muted); }
  .bh11-stars { color: #f59e0b; }
  .bh11-stars-sm { font-size: 0.876rem; }
  .bh11-stars-lg { font-size: 1.126rem; }
  .bh11-text { color: var(--c-text-muted); line-height: 1.65; }
  .bh11-text-sm { font-size: 0.807rem; }
  .bh11-text-lg { font-size: 0.917rem; }
  .bh11-highlight { color: var(--c-accent); font-weight: 700; }
  .bh11-meta { font-size: 0.688rem; color: var(--c-text-muted); display: flex; align-items: center; justify-content: space-between; }
  .bh11-verified { color: #22c55e; font-weight: 600; font-size: 0.7rem; }
  @media (max-width: 880px) { .bh11-masonry { columns: 2; } }
  @media (max-width: 600px) { .bh11-masonry { columns: 1; } }
  .bh11-s1 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; width: 54px; height: 53px; font-size: 0.99rem; }
  .bh11-s2 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .bh11-s3 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .bh11-s4 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; width: 49px; height: 49px; }
  .bh11-s5 { background: color-mix(in srgb,#06b6d4 15%,var(--c-surface)); color: #06b6d4; }
  .bh11-s6 { background: color-mix(in srgb,#ec4899 15%,var(--c-surface)); color: #ec4899; }
  .bh11-s7 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; }

.ft12_footer { background: var(--c-primary); border-top: 1px solid var(--c-border); }
/* Top row — single "command bar": [logo] [nav+extra links] [payments] [18+].
   Payments migrated up from the bottom row so the entire actionable
   surface (links + payments + compliance badge) lives on one line; the
   bottom row shrinks to pure copyright + "play responsibly" text.
   `margin-left: auto` on the payments block pushes it (and the 18+
   badge right after it) to the right edge while the nav grows to fill
   whatever gap is left between logo and that group. */
.ft12_top { display: flex; align-items: center; gap: 0.493rem 1.284rem; padding: 14px 0; flex-wrap: wrap; }

/* Nav — primary multipage links followed by legal/extra links, both
   inline with pipe separators. `:empty` collapses the whole row on
   landing sites without any of those placeholders producing links. */
.ft12_nav { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
.ft12_nav:empty { display: none; }
.ft12_nav a { color: var(--c-text-muted); font-size: 0.782rem; text-decoration: none; padding: 0.244rem 0.738rem; border-right: 1px solid var(--c-border); transition: color 0.198s; white-space: nowrap; }
.ft12_nav a:first-child { padding-left: 0; }
.ft12_nav a:last-child { border-right: none; }
.ft12_nav a:hover { color: var(--c-accent); }

/* Payments inline with the nav row — smaller than default so they read
   as a compliance strip rather than a marketing showcase. Scoped
   override of .pp-pay-logo: height trimmed from 22→16 px, padding
   squeezed so ten pill badges still fit next to a full nav bar. */
.ft12_pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
.ft12_pay:empty { display: none; }
.ft12_pay .pp-pay-logo {
  height: 20px;
  max-width: 51px;
  padding: 4px 8px;
  border-radius: 5px;
}

.ft12_badge_row { display: flex; gap: 0.495rem; align-items: center; flex-shrink: 0; }

/* Bottom row — now just a thin compliance line (copyright +
   "play responsibly"). Centre-aligned for balance regardless of how
   wide the text happens to be after brand substitution. */
.ft12_bottom {
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 6px 20px; flex-wrap: wrap;
}
.ft12_legal { color: var(--c-text-muted); font-size: 0.723rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .ft12_top { gap: 0.5rem 0.771rem; }
  .ft12_pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  .ft12_badge_row { margin-left: auto; }
}
@media (max-width: 600px) {
  .ft12_top { flex-direction: column; align-items: flex-start; }
  .ft12_pay { justify-content: flex-start; }
  .ft12_badge_row { margin-left: 0; }
  .ft12_nav { flex: 1 1 100%; }
}

/* ── 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"] .pp-btn,
  body [class*="actions-desktop"] .pp-btn,
  body [class*="btns-desktop"] .pp-btn,
  body [class*="cta-wrap"] .pp-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;
  }
}

/* ── so11-scroll: styled horizontal scrollbar for overflow tables ── */
.so11-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  border-radius: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-accent) rgba(255,255,255,0.07);
}
.so11-scroll::-webkit-scrollbar { height: 4px; }
.so11-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 4px; }
.so11-scroll::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 4px; box-shadow: 0 0 8px color-mix(in srgb, var(--c-accent) 55%, transparent); }
.so11-scroll::-webkit-scrollbar-thumb:hover { background: color-mix(in srgb, var(--c-accent) 80%, #fff); }
