@charset "UTF-8";

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


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

.kz18-root {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid transparent;
    background-clip: padding-box;
  }
  .kz18-root::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(87deg, transparent 0%, var(--c-grad-start) 25%, var(--c-grad-end) 75%, transparent 100%);
    opacity: 0.6;
  }
  .kz18-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  @media (max-width: 768px) {
    .kz18-nav { display: none; }
    .kz18-btns-desktop { display: none !important; }
    .kz18-menu-btn { display: flex !important; }
  }
  .kz18-menu-btn { display: none; }
  .kz18-hrel { position: relative; background: transparent; }
  .kz18-mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .kz18-mrow { padding: 12px 0; border-top: 1px solid var(--c-border); }
  .kz18-mbtn { flex: 1; justify-content: center; }

.la77-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 332px;
  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.044);
  box-shadow: 0 18px 49px rgba(0,0,0,0.398);
  display: flex;
  align-items: center;
  justify-content: center;
}
.la77-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.la77-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(175deg, rgba(0,0,0,0.495) 0%, rgba(0,0,0,0.743) 100%);
  z-index: 1;
}
.la77-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 49px 28px;
  max-width: 730px;
}
.la77-title {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.515);
  letter-spacing: -0.01em;
}
.la77-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.915);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 555px;
  margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.354);
}
.la77-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 */
.la77-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 27px;
  border-radius: 981px;
  background: #ffffff;
  color: var(--c-bg);
  font-size: 13px; font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.101);
  box-shadow: 0 4px 14px rgba(0,0,0,0.146);
  transition: box-shadow .25s ease;
}
.la77-cta:hover {
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.153),
    0 8px 22px rgba(255,255,255,0.191),
    0 4px 14px rgba(0,0,0,0.258);
}
.la77-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .la77-card { min-height: 283px; }
  .la77-content { padding: 37px 20px; }
  .la77-title { font-size: 23px; }
  .la77-cta { padding: 11px 18px; font-size: 12px; }
}

.zf34-wrap { max-width: 962px; margin: 0 auto; }
  .zf34-title { color: var(--c-text); margin: 0 0 22px; }
  .zf34-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .zf34-panel {
    position: relative;
    margin: 27px 0;
    border-radius: 18px;
    background:
      linear-gradient(177deg,
        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 23px 61px -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;
  }
  .zf34-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;
  }
  .zf34-spec {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .zf34-spec th, .zf34-spec td {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.55;
    vertical-align: top;
    text-align: left;
  }
  .zf34-spec thead th {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.123em;
    color: var(--c-text);
    padding-top: 16px;
    padding-bottom: 16px;
    background: linear-gradient(132deg,
      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));
  }
  .zf34-spec thead th:first-child {
    color: var(--c-accent);
  }
  .zf34-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;
  }
  .zf34-spec tbody td { color: var(--c-text-muted); }
  .zf34-spec tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background-color .25s ease;
  }
  .zf34-spec tbody tr:last-child { border-bottom: none; }
  .zf34-spec tbody tr:hover {
    background: linear-gradient(90deg,
      color-mix(in srgb, var(--c-accent) 8%, transparent) 0%,
      color-mix(in srgb, var(--c-accent) 2%, transparent) 100%);
  }
  .zf34-spec tbody tr:hover th {
    border-left-color: var(--c-accent);
    color: var(--c-accent);
  }
  @media (max-width: 640px) {
    .zf34-spec th, .zf34-spec td { padding: 12px 16px; font-size: 14px; }
    .zf34-spec tbody th { padding-left: 13px; width: 42%; }
  }

.ve54-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 373px;
  background: linear-gradient(135deg,
    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.114);
  box-shadow: 0 14px 45px rgba(0,0,0,0.355);
  display: flex;
  align-items: flex-end;
}
.ve54-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ve54-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(176deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.164) 35%, rgba(0,0,0,0.769) 75%, rgba(0,0,0,0.943) 100%);
  z-index: 1;
}
.ve54-content {
  position: relative; z-index: 2;
  padding: 36px 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.ve54-text { max-width: 725px; }
.ve54-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 1027px;
  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.117em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--c-accent, #f59e0b) 40%, transparent);
}
.ve54-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.456);
}
.ve54-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.788);
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.449);
}
.ve54-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 981px;
  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.333);
  transition: box-shadow .25s ease, filter .18s;
}
.ve54-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #22c55e) 22%, transparent),
    0 10px 29px color-mix(in srgb, var(--c-accent, #22c55e) 38%, transparent);
}
.ve54-cta::after {
  content: '→';
  font-size: 16px;
}
@media (max-width: 768px) {
  .ve54-card { min-height: 333px; }
  .ve54-content {
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ve54-title { font-size: 21px; }
}

.ej26-hero {
  position: relative;
  min-height: 486px;
  display: flex;
  align-items: center;
  background: var(--c-bg) center/cover no-repeat;
  overflow: hidden;
}
.ej26-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgb(0 0 0 / calc(.95 + var(--hi-offset, 0))) 0%,
    rgb(0 0 0 / calc(.93 + var(--hi-offset, 0))) 28%,
    rgb(0 0 0 / calc(.75 + var(--hi-offset, 0))) 52%,
    transparent 100%);
}
.ej26-content {
  position: relative; z-index: 1;
  max-width: 528px;
  padding: 39px 0;
}
.ej26-title { color: #fff; margin: 0 0 22px; text-shadow: 0 2px 10px rgba(0,0,0,0.382); }
.ej26-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.ej26-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.893);
  font-weight: 500;
}
.ej26-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.ej26-cta {
  display: inline-block;
  padding: 13px 34px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 14px; font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter .2s;
}
.ej26-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: 768px) {
  .ej26-overlay { background: rgba(0,0,0,0.734); }
}

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

  .ld65-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; }
  .ld65-card {
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(178deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    color: #fff;
  }
  .ld65-card-h3 { color: var(--c-accent); font-size: 14px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.058em; }
  .ld65-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.808); margin: 0; }

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

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

  .ld65-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ld65-bullet { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.109); }
  .ld65-bullet-icon {
    flex: 0 0 28px; width: 29px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent); color: var(--c-bg);
  }
  .ld65-bullet-icon svg { width: 14px; height: 14px; }
  .ld65-bullet-text { flex: 1; color: rgba(255,255,255,0.885); font-size: 13px; line-height: 1.4; font-weight: 600; }

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

  .ld65-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;
  }
  .ld65-table th, .ld65-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .ld65-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--c-bg);
    background: var(--c-accent);
    padding-top: 12px; padding-bottom: 12px;
  }
  .ld65-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .ld65-table tbody tr:last-child td { border-bottom: none; }
  .ld65-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--c-text) 3%, transparent); }
  .ld65-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 7%, transparent); }

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

.zq68-wrap { max-width: 1077px; margin: 0 auto; }
  .zq68-intro { max-width: 763px; margin-bottom: 22px; }
  .zq68-title { color: var(--c-text); margin: 0 0 12px; }
  .zq68-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .zq68-scroll { overflow-x: auto; border-radius: 14px; box-shadow: 0 6px 28px -12px color-mix(in srgb, var(--c-accent) 35%, transparent); border: 1px solid color-mix(in srgb, var(--c-accent) 20%, var(--c-border)); }
  .zq68-table { width: 100%; min-width: 730px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .zq68-table thead th { background: linear-gradient(131deg, var(--c-accent) 0%, color-mix(in srgb, var(--c-accent) 55%, var(--c-grad-end)) 100%); color: var(--c-bg); text-align: left; padding: 16px 20px; font-size: 0.705rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.123em; border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent); }
  .zq68-table thead th:first-child { padding-left: 23px; }
  .zq68-table tbody td { padding: 16px 20px; font-size: 15px; line-height: 1.5; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .zq68-table tbody tr:last-child td { border-bottom: none; }
  .zq68-table tbody tr:hover { background: color-mix(in srgb, var(--c-accent) 5%, transparent); }
  .zq68-table tbody td:first-child { color: var(--c-text); font-weight: 700; border-left: 3px solid transparent; padding-left: 19px; }
  .zq68-table tbody tr:hover td:first-child { border-left-color: var(--c-accent); }

.ui10-header { text-align: center; }
.ui10-title { margin-top: 8px; }
.ui10-lead { margin-top: 10px; max-width: 550px; margin-left: auto; margin-right: auto; }
.ui10-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 37px; max-width: 900px; margin-left: auto; margin-right: auto; align-items: start; }
.ui10-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;
}
.ui10-item:hover { border-left-color: color-mix(in srgb, var(--c-accent) 50%, transparent); }
.ui10-item.kh-faq-open {
  border-left-color: var(--c-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--c-accent) 5%, transparent);
}
.ui10-q {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; cursor: pointer; list-style: none; user-select: none;
}
.ui10-q::-webkit-details-marker { display: none; }
.ui10-qtext { flex: 1; font-size: 14px; font-weight: 600; color: var(--c-text); line-height: 1.4; }
.ui10-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;
}
.ui10-item.kh-faq-open .ui10-plus { transform: rotate(46deg); color: var(--c-accent); }
.ui10-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);
}
.ui10-cta {
  margin-top: 28px; max-width: 873px; 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;
}
.ui10-cta-text { font-size: 14px; font-weight: 600; color: var(--c-text); }
.ui10-cta-sub { font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
@media (max-width: 640px) { .ui10-grid { grid-template-columns: 1fr; } }

.kn69-wrap { padding: 1.023rem 0; }
  .kn69-inner { display: flex; align-items: center; gap: 0; }
  .kn69-line { flex: 1; height: 1px; }
  .kn69-line-left  { background: linear-gradient(to right, transparent, var(--c-accent)); }
  .kn69-line-right { background: linear-gradient(to left,  transparent, var(--c-accent)); }
  .kn69-center {
    display: flex;
    align-items: center;
    gap: 0.756rem;
    padding: 0 1.021rem;
    flex-shrink: 0;
  }
  .kn69-stars { display: flex; gap: 0.197rem; }
  .kn69-star { font-size: 0.96rem; line-height: 1; }

/* ── 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. */
  .sd14-root { background: var(--c-bg); }
  .sd14-top {
    display: flex; align-items: center;
    gap: 10px 20px; flex-wrap: wrap;
    padding: 14px 0;
    min-height: 44px;
  }
  .sd14-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. */
  .sd14-nav:empty { display: none; }
  .sd14-nav a { font-size: 0.795rem; color: var(--c-text-muted); text-decoration: none; transition: color 0.205s; }
  .sd14-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 .kh-pay-logo. */
  .sd14-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
  .sd14-pay:empty { display: none; }
  .sd14-pay .kh-pay-logo {
    height: 20px;
    max-width: 51px;
    padding: 4px 8px;
    border-radius: 5px;
  }

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

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

.lm79-header { text-align: center; margin-bottom: 1.995rem; }
  .lm79-scroll-wrap { overflow-x: auto; padding-bottom: 0.978rem; cursor: grab; }
  .lm79-scroll-wrap::-webkit-scrollbar { height: 4px; }
  .lm79-scroll-wrap::-webkit-scrollbar-track { background: var(--c-border); border-radius: 2px; }
  .lm79-scroll-wrap::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 2px; }
  .lm79-track { display: flex; gap: 1.253rem; width: max-content; padding: 0.255rem 0; }
  .lm79-card { width: 293px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 1.532rem; display: flex; flex-direction: column; gap: 0.862rem; flex-shrink: 0; transition: transform 0.2s, border-color 0.194s; }
  .lm79-card:hover { transform: translateY(-4px); border-color: var(--c-accent); }
  .lm79-top { display: flex; align-items: center; justify-content: space-between; }
  .lm79-avatar { width: 45px; height: 44px; 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.795rem; color: var(--c-accent); }
  .lm79-stars { color: #f59e0b; font-size: 0.963rem; }
  .lm79-name { font-weight: 700; font-size: 0.866rem; color: var(--c-text); }
  .lm79-role { font-size: 0.691rem; color: var(--c-text-muted); }
  .lm79-text { font-size: 0.888rem; color: var(--c-text-muted); line-height: 1.6; flex: 1; }
  .lm79-bottom { display: flex; align-items: center; justify-content: space-between; }
  .lm79-date { font-size: 0.715rem; color: var(--c-text-muted); }
  .lm79-platform { font-size: 0.693rem; color: var(--c-accent); font-weight: 600; }
  .lm79-scroll-hint { text-align: center; margin-top: 0.996rem; font-size: 0.767rem; color: var(--c-text-muted); }
  .lm79-s1 { display: flex; align-items: center; gap: 10px; }
  .lm79-s2 { background: color-mix(in srgb,#60a5fa 15%,var(--c-surface)); color: #60a5fa; }
  .lm79-s3 { border-color: color-mix(in srgb,var(--c-accent) 40%,transparent); }
  .lm79-s4 { background: color-mix(in srgb,#f59e0b 15%,var(--c-surface)); color: #f59e0b; }
  .lm79-s5 { background: color-mix(in srgb,#ec4899 15%,var(--c-surface)); color: #ec4899; }
  .lm79-s6 { background: color-mix(in srgb,#10b981 15%,var(--c-surface)); color: #10b981; }
  .lm79-s7 { background: color-mix(in srgb,#8b5cf6 15%,var(--c-surface)); color: #8b5cf6; }
  .lm79-s8 { background: color-mix(in srgb,#06b6d4 15%,var(--c-surface)); color: #06b6d4; }

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