/* ==========================================================================
   PT Gaming - interface-adaptive-3308c5.css
   Mobile-first stylesheet tuned for a 320-430px phone canvas.
   Palette anchors: #F5DEB3 (wheat text) / #BC8F8F (rose outline) /
   #006400 (solid green CTA) / #2C3E50 (deep slate canvas).
   Design brief: bold simple headings over light body text, low radius
   sectioned blocks, floating image game cards, step-progression rhythm,
   light press feedback and colour transitions only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens and base reset
   -------------------------------------------------------------------------- */

:root {
  --frame8c528-ink: #2C3E50;
  --frame8c528-ink-deep: #22303F;
  --frame8c528-ink-page: #16202B;
  --frame8c528-ink-raise: #34495E;
  --frame8c528-wheat: #F5DEB3;
  --frame8c528-wheat-dim: #D6C29B;
  --frame8c528-wheat-faint: #B9A67F;
  --frame8c528-rose: #BC8F8F;
  --frame8c528-rose-soft: #D5AFAF;
  --frame8c528-green: #006400;
  --frame8c528-green-hi: #2E8B2E;
  --frame8c528-line: rgba(245, 222, 179, 0.16);
  --frame8c528-line-strong: rgba(245, 222, 179, 0.30);
  --frame8c528-panel: rgba(245, 222, 179, 0.045);
  --frame8c528-panel-hi: rgba(245, 222, 179, 0.085);
  --frame8c528-radius: 4px;
  --frame8c528-radius-lg: 6px;
  --frame8c528-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
  --frame8c528-font-head: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --frame8c528-font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--frame8c528-ink-page);
  color: var(--frame8c528-wheat);
  font-family: var(--frame8c528-font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  color: var(--frame8c528-rose-soft);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--frame8c528-wheat);
}

ul,
ol,
dl,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.frame8c528-noscroll {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--frame8c528-wheat);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   2. Phone canvas shell - stays centred on wide screens
   -------------------------------------------------------------------------- */

.frame8c528-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--frame8c528-ink);
  overflow-x: hidden;
}

@media (min-width: 480px) {
  .frame8c528-shell {
    box-shadow: var(--frame8c528-shadow);
    border-left: 1px solid rgba(245, 222, 179, 0.08);
    border-right: 1px solid rgba(245, 222, 179, 0.08);
  }
}

/* --------------------------------------------------------------------------
   3. Skip link
   -------------------------------------------------------------------------- */

.frame8c528-skip {
  position: absolute;
  top: -48px;
  left: 10px;
  z-index: 120;
  padding: 9px 14px;
  background: var(--frame8c528-green);
  color: var(--frame8c528-wheat);
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--frame8c528-radius);
  transition: top 0.18s ease;
}

.frame8c528-skip:focus {
  top: 8px;
}

/* --------------------------------------------------------------------------
   4. Top bar - centred identity row plus a separate action row
   -------------------------------------------------------------------------- */

.frame8c528-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(34, 48, 63, 0.97);
  border-bottom: 1px solid var(--frame8c528-line);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.frame8c528-identrow {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: 54px;
  padding: 6px 10px 2px;
}

.frame8c528-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: var(--frame8c528-wheat);
}

.frame8c528-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--frame8c528-radius);
  border: 1px solid var(--frame8c528-line-strong);
  object-fit: cover;
  background: var(--frame8c528-ink-page);
}

.frame8c528-brandname {
  font-family: var(--frame8c528-font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.frame8c528-menubtn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  color: var(--frame8c528-wheat);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.frame8c528-menubtn:hover {
  border-color: var(--frame8c528-line-strong);
  background: var(--frame8c528-panel);
}

.frame8c528-menubtn:active {
  transform: scale(0.94);
}

.frame8c528-menubtn-ic {
  width: 22px;
  height: 22px;
}

.frame8c528-menubtn-ic .frame8c528-ica {
  fill: var(--frame8c528-wheat);
}

.frame8c528-menubtn-ic .frame8c528-icb {
  fill: var(--frame8c528-rose);
}

.frame8c528-identpad {
  width: 44px;
}

.frame8c528-actionrow {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  padding: 6px 10px 10px;
}

/* --------------------------------------------------------------------------
   5. Buttons - solid primary, outlined secondary
   -------------------------------------------------------------------------- */

.frame8c528-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--frame8c528-radius);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.12s ease;
}

.frame8c528-btn-solid {
  background: var(--frame8c528-green);
  border-color: var(--frame8c528-green);
  color: var(--frame8c528-wheat);
}

.frame8c528-btn-solid:hover {
  background: var(--frame8c528-green-hi);
  border-color: var(--frame8c528-green-hi);
  color: #FFFFFF;
}

.frame8c528-btn-line {
  background: transparent;
  border-color: var(--frame8c528-rose);
  color: var(--frame8c528-wheat);
}

.frame8c528-btn-line:hover {
  border-color: var(--frame8c528-rose-soft);
  background: var(--frame8c528-panel);
}

.frame8c528-btn:active {
  transform: translateY(1px) scale(0.985);
}

/* --------------------------------------------------------------------------
   6. Full-height menu layer
   -------------------------------------------------------------------------- */

.frame8c528-menulayer {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}

.frame8c528-menu-on {
  visibility: visible;
  pointer-events: auto;
}

.frame8c528-menupanel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(84vw, 318px);
  background: var(--frame8c528-ink-deep);
  border-right: 1px solid var(--frame8c528-line-strong);
  display: flex;
  flex-direction: column;
  transform: translateX(-102%);
  transition: transform 0.26s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.frame8c528-menu-on .frame8c528-menupanel {
  transform: translateX(0);
}

.frame8c528-menuscrim {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(10, 16, 23, 0.66);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.frame8c528-menu-on .frame8c528-menuscrim {
  opacity: 1;
}

.frame8c528-menuhead {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--frame8c528-line);
}

.frame8c528-menuhead-logo {
  width: 30px;
  height: 30px;
  border-radius: var(--frame8c528-radius);
  border: 1px solid var(--frame8c528-line-strong);
  object-fit: cover;
}

.frame8c528-menuhead-name {
  flex: 1;
  font-family: var(--frame8c528-font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--frame8c528-wheat);
}

.frame8c528-menuclose {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  color: var(--frame8c528-wheat);
  transition: background-color 0.18s ease;
}

.frame8c528-menuclose:hover {
  background: var(--frame8c528-panel);
}

.frame8c528-menuclose:active {
  transform: scale(0.92);
}

.frame8c528-menuclose-ic {
  width: 16px;
  height: 16px;
  fill: var(--frame8c528-wheat);
}

.frame8c528-mgroup {
  margin: 16px 16px 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame8c528-rose);
}

.frame8c528-mlist {
  margin: 0 10px;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  background: var(--frame8c528-panel);
  overflow: hidden;
}

.frame8c528-mlist + .frame8c528-mlist {
  margin-top: 8px;
}

.frame8c528-mlink {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--frame8c528-wheat-dim);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--frame8c528-line);
  transition: background-color 0.18s ease, color 0.18s ease;
}

.frame8c528-mlink:last-child {
  border-bottom: 0;
}

.frame8c528-mlink:hover {
  background: var(--frame8c528-panel-hi);
  color: var(--frame8c528-wheat);
}

.frame8c528-mlink-on {
  background: var(--frame8c528-panel-hi);
  color: var(--frame8c528-wheat);
  box-shadow: inset 3px 0 0 var(--frame8c528-green-hi);
}

.frame8c528-menucta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: auto 14px 18px;
  padding-top: 16px;
}

/* --------------------------------------------------------------------------
   7. Main column spacing
   -------------------------------------------------------------------------- */

.frame8c528-main {
  padding: 14px 12px 0;
  /* room for the fixed bottom navigation plus the safe-area inset */
  padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.frame8c528-hero {
  background: var(--frame8c528-panel);
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius-lg);
  padding: 18px 14px 16px;
}

.frame8c528-herokicker {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame8c528-rose);
  border-left: 3px solid var(--frame8c528-green-hi);
  padding-left: 8px;
  margin-bottom: 10px;
}

.frame8c528-herotitle {
  font-family: var(--frame8c528-font-head);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--frame8c528-wheat);
}

.frame8c528-herosub {
  margin: 12px 0 14px;
  color: var(--frame8c528-wheat-dim);
  font-size: 14.5px;
  overflow-wrap: break-word;
}

.frame8c528-herocta {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
}

.frame8c528-herostats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.frame8c528-stat {
  background: var(--frame8c528-ink-deep);
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  padding: 8px 4px;
  text-align: center;
}

.frame8c528-statnum {
  display: block;
  font-family: var(--frame8c528-font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--frame8c528-wheat);
}

.frame8c528-statlab {
  display: block;
  margin-top: 2px;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--frame8c528-wheat-faint);
}

/* --------------------------------------------------------------------------
   9. Promo carousel - stacked slides, dot markers
   -------------------------------------------------------------------------- */

.frame8c528-carousel {
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius-lg);
  overflow: hidden;
  background: var(--frame8c528-ink-deep);
}

.frame8c528-track {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  touch-action: pan-y;
}

.frame8c528-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--frame8c528-ink-deep);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.frame8c528-slide-on {
  opacity: 1;
  z-index: 2;
}

.frame8c528-slideimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame8c528-slidecap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(22, 32, 43, 0) 0%, rgba(22, 32, 43, 0.92) 78%);
  text-align: left;
}

.frame8c528-slidekick {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame8c528-rose-soft);
}

.frame8c528-slidetext {
  font-family: var(--frame8c528-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--frame8c528-wheat);
}

.frame8c528-slide:active .frame8c528-slideimg {
  transform: scale(0.99);
}

.frame8c528-slideimg {
  transition: transform 0.2s ease;
}

.frame8c528-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 4;
  display: flex;
  gap: 6px;
}

.frame8c528-dot {
  width: 26px;
  height: 18px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
}

.frame8c528-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(245, 222, 179, 0.4);
  transition: width 0.22s ease, background-color 0.22s ease;
}

.frame8c528-dot-on::before {
  width: 18px;
  background: var(--frame8c528-wheat);
}

/* --------------------------------------------------------------------------
   10. Category chip strip - horizontal scroll
   -------------------------------------------------------------------------- */

.frame8c528-chipstrip {
  display: flex;
  gap: 8px;
  margin: 14px 0 0;
  padding: 2px 2px 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.frame8c528-chipstrip::-webkit-scrollbar {
  display: none;
}

.frame8c528-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 13px;
  border: 1px solid var(--frame8c528-rose);
  border-radius: 3px;
  background: transparent;
  color: var(--frame8c528-wheat-dim);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.frame8c528-chip:hover {
  background: var(--frame8c528-panel-hi);
  color: var(--frame8c528-wheat);
}

.frame8c528-chip:active {
  transform: translateY(1px);
}

/* --------------------------------------------------------------------------
   11. Sections and section headers - step-progression numbering
   -------------------------------------------------------------------------- */

.frame8c528-section {
  margin-top: 22px;
  background: var(--frame8c528-panel);
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius-lg);
  padding: 16px 12px 14px;
}

.frame8c528-sechead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.frame8c528-secnum {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frame8c528-green);
  color: var(--frame8c528-wheat);
  border-radius: 3px;
  font-family: var(--frame8c528-font-head);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.frame8c528-sectitle {
  font-family: var(--frame8c528-font-head);
  font-size: 18.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--frame8c528-wheat);
  min-width: 0;
  overflow-wrap: break-word;
}

.frame8c528-secnote {
  margin: 10px 0 0;
  padding-left: 37px;
  color: var(--frame8c528-wheat-dim);
  font-size: 13.5px;
  overflow-wrap: break-word;
}

.frame8c528-secnote a {
  color: var(--frame8c528-rose-soft);
  border-bottom: 1px solid rgba(213, 175, 175, 0.45);
  font-weight: 600;
}

.frame8c528-secnote a:hover {
  color: var(--frame8c528-wheat);
  border-bottom-color: var(--frame8c528-wheat);
}

@media (max-width: 359px) {
  .frame8c528-secnote {
    padding-left: 0;
  }
}

/* --------------------------------------------------------------------------
   12. Game grids - floating light image cards
   -------------------------------------------------------------------------- */

.frame8c528-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

@media (min-width: 390px) {
  .frame8c528-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
  }
}

.frame8c528-gcell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  min-width: 0;
  padding: 6px 5px 7px;
  background: rgba(245, 222, 179, 0.05);
  border: 1px solid rgba(245, 222, 179, 0.14);
  border-radius: var(--frame8c528-radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  transition: background-color 0.18s ease, border-color 0.18s ease,
    transform 0.14s ease, box-shadow 0.18s ease;
}

.frame8c528-gcell:hover {
  background: rgba(245, 222, 179, 0.09);
  border-color: rgba(245, 222, 179, 0.3);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.32);
}

.frame8c528-gcell:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.frame8c528-gimg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  background: var(--frame8c528-ink-deep);
}

.frame8c528-gname {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.5em;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--frame8c528-wheat-dim);
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   13. Prose modules - definition lists, tables, sub-questions
   -------------------------------------------------------------------------- */

.frame8c528-prose {
  margin-top: 12px;
  color: var(--frame8c528-wheat-dim);
  font-size: 14px;
  overflow-wrap: break-word;
}

.frame8c528-prose + .frame8c528-prose {
  margin-top: 10px;
}

.frame8c528-prose strong {
  color: var(--frame8c528-wheat);
  font-weight: 700;
}

.frame8c528-prose a {
  color: var(--frame8c528-rose-soft);
  border-bottom: 1px solid rgba(213, 175, 175, 0.45);
  font-weight: 600;
}

.frame8c528-prose a:hover {
  color: var(--frame8c528-wheat);
  border-bottom-color: var(--frame8c528-wheat);
}

.frame8c528-deflist {
  margin: 13px 0 0;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  background: var(--frame8c528-ink-deep);
  overflow: hidden;
}

.frame8c528-deflist > div {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--frame8c528-line);
}

.frame8c528-deflist > div:last-child {
  border-bottom: 0;
}

.frame8c528-deflist dt {
  flex: 0 0 34%;
  font-family: var(--frame8c528-font-head);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--frame8c528-wheat);
  text-transform: uppercase;
}

.frame8c528-deflist dd {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--frame8c528-wheat-dim);
}

.frame8c528-datatable {
  width: 100%;
  margin-top: 13px;
  border-collapse: collapse;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  overflow: hidden;
  font-size: 12.5px;
}

.frame8c528-datatable th {
  background: var(--frame8c528-ink-deep);
  color: var(--frame8c528-wheat);
  font-family: var(--frame8c528-font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--frame8c528-line-strong);
}

.frame8c528-datatable td {
  padding: 9px 10px;
  color: var(--frame8c528-wheat-dim);
  border-bottom: 1px solid var(--frame8c528-line);
  vertical-align: top;
}

.frame8c528-datatable tr:last-child td {
  border-bottom: 0;
}

.frame8c528-datatable td:first-child {
  color: var(--frame8c528-wheat);
  font-weight: 700;
  white-space: nowrap;
}

.frame8c528-h3sub {
  margin-top: 16px;
  font-family: var(--frame8c528-font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--frame8c528-wheat);
  padding-left: 10px;
  border-left: 3px solid var(--frame8c528-rose);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   14. Checklist module
   -------------------------------------------------------------------------- */

.frame8c528-checklist {
  margin-top: 13px;
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
  background: var(--frame8c528-ink-deep);
  overflow: hidden;
}

.frame8c528-checkitem {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 11px 12px;
  border-bottom: 1px solid var(--frame8c528-line);
}

.frame8c528-checkitem:last-child {
  border-bottom: 0;
}

.frame8c528-checkbox {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1.5px solid var(--frame8c528-rose);
  border-radius: 3px;
  background: rgba(0, 100, 0, 0.22);
}

.frame8c528-checkbox::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border-right: 2.5px solid var(--frame8c528-green-hi);
  border-bottom: 2.5px solid var(--frame8c528-green-hi);
  transform: rotate(43deg);
}

.frame8c528-checkbody {
  min-width: 0;
}

.frame8c528-checktitle {
  display: block;
  font-family: var(--frame8c528-font-head);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--frame8c528-wheat);
}

.frame8c528-checkdesc {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--frame8c528-wheat-dim);
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   15. Step summary module
   -------------------------------------------------------------------------- */

.frame8c528-steps {
  margin-top: 13px;
  counter-reset: frame8c528-step;
}

.frame8c528-step {
  position: relative;
  counter-increment: frame8c528-step;
  padding: 0 0 14px 38px;
  border-left: 2px solid var(--frame8c528-line-strong);
  margin-left: 12px;
}

.frame8c528-step:last-child {
  padding-bottom: 2px;
}

.frame8c528-step::before {
  content: counter(frame8c528-step, decimal-leading-zero);
  position: absolute;
  left: -14px;
  top: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--frame8c528-ink-deep);
  border: 1.5px solid var(--frame8c528-green-hi);
  border-radius: 3px;
  color: var(--frame8c528-wheat);
  font-family: var(--frame8c528-font-head);
  font-size: 11px;
  font-weight: 800;
}

.frame8c528-steptitle {
  display: block;
  font-family: var(--frame8c528-font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--frame8c528-wheat);
}

.frame8c528-stepdesc {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--frame8c528-wheat-dim);
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   16. Homepage extended footer - directory, brand, promo desk, disclaimer
   -------------------------------------------------------------------------- */

.frame8c528-homefoot {
  margin-top: 24px;
  border-top: 2px solid var(--frame8c528-line-strong);
  padding: 4px 12px 0;
}

.frame8c528-hfhead {
  margin-top: 16px;
  font-family: var(--frame8c528-font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--frame8c528-wheat);
}

.frame8c528-hfnote {
  margin-top: 6px;
  font-size: 13px;
  color: var(--frame8c528-wheat-faint);
}

.frame8c528-dirlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.frame8c528-diritem {
  display: block;
  min-width: 0;
  padding: 9px 10px;
  background: var(--frame8c528-panel);
  border: 1px solid var(--frame8c528-line);
  border-left: 3px solid var(--frame8c528-rose);
  border-radius: 3px;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.frame8c528-diritem:hover {
  background: var(--frame8c528-panel-hi);
  border-left-color: var(--frame8c528-wheat);
}

.frame8c528-dirname {
  display: block;
  font-family: var(--frame8c528-font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--frame8c528-wheat);
}

.frame8c528-dirdesc {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--frame8c528-wheat-faint);
}

.frame8c528-hfbrand {
  margin-top: 20px;
  padding: 13px 12px;
  background: var(--frame8c528-panel);
  border: 1px solid var(--frame8c528-line);
  border-radius: var(--frame8c528-radius);
}

.frame8c528-hflabel {
  margin: 0 0 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frame8c528-rose);
}

.frame8c528-hfbrandtext {
  margin: 0;
  font-size: 13px;
  color: var(--frame8c528-wheat-dim);
  overflow-wrap: break-word;
}

.frame8c528-promogrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.frame8c528-promoact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 11px 11px 12px;
  border-radius: var(--frame8c528-radius);
  text-align: left;
}

.frame8c528-promoact-solid {
  background: var(--frame8c528-green);
  border: 1px solid var(--frame8c528-green-hi);
  color: var(--frame8c528-wheat);
}

.frame8c528-promoact-solid:hover {
  background: var(--frame8c528-green-hi);
  color: #FFFFFF;
}

.frame8c528-promoact-line {
  background: transparent;
  border: 1.5px solid var(--frame8c528-rose);
  color: var(--frame8c528-wheat);
}

.frame8c528-promoact-line:hover {
  background: var(--frame8c528-panel-hi);
}

.frame8c528-promoact:active {
  transform: translateY(1px) scale(0.985);
}

.frame8c528-promoname {
  font-family: var(--frame8c528-font-head);
  font-size: 13.5px;
  font-weight: 800;
}

.frame8c528-promodesc {
  font-size: 11.5px;
  line-height: 1.4;
  opacity: 0.85;
}

.frame8c528-disclaimer {
  margin-top: 14px;
  padding: 12px;
  background: rgba(188, 143, 143, 0.08);
  border: 1px solid rgba(188, 143, 143, 0.35);
  border-radius: var(--frame8c528-radius);
}

.frame8c528-disclaimertext {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--frame8c528-wheat-dim);
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   17. Common footer and fixed bottom navigation
   -------------------------------------------------------------------------- */

.frame8c528-foot {
  margin-top: 8px;
  padding: 14px 12px 10px;
  border-top: 1px solid var(--frame8c528-line);
  text-align: center;
}

.frame8c528-copy {
  font-size: 11.5px;
  color: var(--frame8c528-wheat-faint);
  letter-spacing: 0.02em;
}

.frame8c528-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  min-height: 62px;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(22, 32, 43, 0.97);
  border-top: 1px solid var(--frame8c528-line-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.frame8c528-bnitem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 48px;
  padding: 4px 2px;
  background: transparent;
  border: 0;
  color: var(--frame8c528-wheat-faint);
  text-decoration: none;
  transition: color 0.18s ease;
}

.frame8c528-bnic {
  width: 24px;
  height: 24px;
}

.frame8c528-bnitem .frame8c528-ica {
  fill: var(--frame8c528-wheat-faint);
  transition: fill 0.2s ease;
}

.frame8c528-bnitem .frame8c528-icb {
  fill: var(--frame8c528-rose);
  transition: fill 0.2s ease, transform 0.24s ease;
  transform-origin: 50% 50%;
}

.frame8c528-bnlab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.frame8c528-bnitem:hover {
  color: var(--frame8c528-wheat-dim);
}

.frame8c528-bnitem:hover .frame8c528-ica {
  fill: var(--frame8c528-wheat-dim);
}

.frame8c528-bnitem:active .frame8c528-icb {
  transform: scale(0.72);
}

/* Active page: icon fill swap plus a small state morph. */
.frame8c528-bnon {
  color: var(--frame8c528-wheat);
}

.frame8c528-bnon .frame8c528-ica {
  fill: var(--frame8c528-wheat);
}

.frame8c528-bnon .frame8c528-icb {
  fill: var(--frame8c528-green-hi);
  transform: scale(0.8);
}

/* Centre raised promo role */
.frame8c528-bncta {
  margin-top: -20px;
  min-height: 58px;
}

.frame8c528-bncta::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--frame8c528-green);
  border: 2px solid var(--frame8c528-wheat);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.frame8c528-bncta:hover::before {
  background: var(--frame8c528-green-hi);
}

.frame8c528-bncta:active::before {
  transform: translateX(-50%) scale(0.92);
}

.frame8c528-bncta .frame8c528-bnic {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.frame8c528-bncta .frame8c528-ica {
  fill: var(--frame8c528-wheat);
}

.frame8c528-bncta .frame8c528-icb {
  fill: var(--frame8c528-ink-deep);
}

.frame8c528-bncta .frame8c528-bnlab {
  position: relative;
  z-index: 2;
  margin-top: 1px;
  color: var(--frame8c528-wheat);
}

/* --------------------------------------------------------------------------
   18. Small-screen fine tuning
   -------------------------------------------------------------------------- */

@media (max-width: 359px) {
  .frame8c528-herotitle {
    font-size: 22px;
  }

  .frame8c528-grid {
    gap: 6px;
  }

  .frame8c528-gname {
    font-size: 10.5px;
  }

  .frame8c528-dirlist,
  .frame8c528-promogrid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   19. Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
