/* ==========================================================================
   Classic Game Zone - classic-game-zone.cyou
   Mobile-first display stylesheet.
   Canvas: 320-430px phone frame, centered when the viewport is wider.
   All class names and custom properties carry the frame02ed0- prefix.
   Palette: #FF91A4 / #1B263B / #FFA500 / #FF8A80 / #0000CD
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --frame02ed0-bg: #1b263b;
  --frame02ed0-bg-deep: #121a2b;
  --frame02ed0-bg-raise: #223150;
  --frame02ed0-pink: #ff91a4;
  --frame02ed0-coral: #ff8a80;
  --frame02ed0-amber: #ffa500;
  --frame02ed0-royal: #0000cd;
  --frame02ed0-ink: #fff0f2;
  --frame02ed0-ink-soft: rgba(255, 240, 242, 0.74);
  --frame02ed0-ink-faint: rgba(255, 240, 242, 0.56);
  --frame02ed0-line: rgba(255, 145, 164, 0.3);
  --frame02ed0-line-strong: rgba(255, 145, 164, 0.55);
  --frame02ed0-radius-s: 8px;
  --frame02ed0-radius-m: 12px;
  --frame02ed0-header-h: 104px;
  --frame02ed0-dock-h: 64px;
  --frame02ed0-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--frame02ed0-font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--frame02ed0-ink);
  background: #0d1420;
}

body.frame02ed0-no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--frame02ed0-pink);
}

:focus-visible {
  outline: 2px solid var(--frame02ed0-amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.frame02ed0-icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The phone canvas: fixed 430px maximum, centered on wide screens */
.frame02ed0-canvas {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #1e2b44 0%,
    var(--frame02ed0-bg) 40%,
    var(--frame02ed0-bg-deep) 100%
  );
  box-shadow: 0 0 0 1px rgba(255, 145, 164, 0.14);
  overflow-x: hidden;
}

.frame02ed0-main {
  padding: calc(var(--frame02ed0-header-h) + 12px) 12px
    calc(var(--frame02ed0-dock-h) + 96px);
}

/* --------------------------------------------------------------------------
   3. Fixed top bar: centered identity row + action row
   -------------------------------------------------------------------------- */
.frame02ed0-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  max-width: 430px;
  margin: 0 auto;
  background: rgba(18, 26, 43, 0.96);
  border-bottom: 1px solid var(--frame02ed0-line);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.frame02ed0-header__id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px 5px;
}

.frame02ed0-header__logo {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  border: 1px solid var(--frame02ed0-line-strong);
  object-fit: cover;
  background: var(--frame02ed0-bg-deep);
}

.frame02ed0-header__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--frame02ed0-ink);
  white-space: nowrap;
}

.frame02ed0-header__name em {
  font-style: normal;
  color: var(--frame02ed0-pink);
}

.frame02ed0-header__acts {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 10px;
}

.frame02ed0-header__spacer {
  flex: 1;
}

/* --------------------------------------------------------------------------
   4. Buttons (compact dual-button CTA groups)
   -------------------------------------------------------------------------- */
.frame02ed0-btn {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border: 1px solid transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.16s ease, background-color 0.16s ease,
    border-color 0.16s ease, color 0.16s ease;
}

.frame02ed0-btn:active {
  transform: scale(0.94);
}

.frame02ed0-btn--ghost {
  background: transparent;
  border-color: var(--frame02ed0-line-strong);
  color: var(--frame02ed0-pink);
}

.frame02ed0-btn--solid {
  background: linear-gradient(
    135deg,
    var(--frame02ed0-amber) 0%,
    var(--frame02ed0-coral) 100%
  );
  color: #1b263b;
}

.frame02ed0-btn--royal {
  background: var(--frame02ed0-royal);
  border-color: rgba(255, 145, 164, 0.45);
  color: var(--frame02ed0-ink);
}

.frame02ed0-btn--block {
  width: 100%;
}

.frame02ed0-menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  min-width: 52px;
  padding: 4px 8px;
  background: transparent;
  border: 1px solid var(--frame02ed0-line);
  border-radius: 10px;
  color: var(--frame02ed0-ink-soft);
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.frame02ed0-menu-btn:active {
  transform: scale(0.94);
  border-color: var(--frame02ed0-amber);
}

.frame02ed0-menu-btn .frame02ed0-icon {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   5. Full-height menu layer
   -------------------------------------------------------------------------- */
.frame02ed0-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  max-width: 430px;
  margin: 0 auto;
  visibility: hidden;
  transition: visibility 0.28s ease;
}

.frame02ed0-menu.frame02ed0-is-open {
  visibility: visible;
}

.frame02ed0-menu__veil {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(10, 15, 26, 0.68);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.28s ease;
}

.frame02ed0-menu.frame02ed0-is-open .frame02ed0-menu__veil {
  opacity: 1;
}

.frame02ed0-menu__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 84%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px calc(18px + env(safe-area-inset-bottom, 0px));
  background: #141d30;
  border-right: 1px solid var(--frame02ed0-line-strong);
  box-shadow: 12px 0 32px rgba(0, 0, 0, 0.45);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.frame02ed0-menu.frame02ed0-is-open .frame02ed0-menu__panel {
  transform: none;
}

.frame02ed0-menu__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--frame02ed0-line);
}

.frame02ed0-menu__head img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--frame02ed0-line-strong);
  object-fit: cover;
}

.frame02ed0-menu__brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--frame02ed0-ink);
  flex: 1;
}

.frame02ed0-menu__shut {
  width: 40px;
  height: 40px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame02ed0-line);
  border-radius: 10px;
  background: transparent;
  color: var(--frame02ed0-ink-soft);
  cursor: pointer;
  transition: transform 0.16s ease;
}

.frame02ed0-menu__shut:active {
  transform: scale(0.9);
}

.frame02ed0-menu__shut .frame02ed0-icon {
  width: 18px;
  height: 18px;
}

.frame02ed0-menu__group {
  margin-top: 14px;
}

.frame02ed0-menu__label {
  margin: 0 0 6px 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frame02ed0-ink-faint);
}

.frame02ed0-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.frame02ed0-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--frame02ed0-radius-s);
  color: var(--frame02ed0-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.15s ease, background-color 0.15s ease,
    transform 0.15s ease;
}

.frame02ed0-menu__link:hover,
.frame02ed0-menu__link:focus-visible {
  border-color: var(--frame02ed0-line);
  background: rgba(255, 145, 164, 0.07);
}

.frame02ed0-menu__link:active {
  transform: scale(0.98);
}

.frame02ed0-menu__dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--frame02ed0-pink);
}

.frame02ed0-menu__foot {
  margin-top: auto;
  padding-top: 16px;
}

/* --------------------------------------------------------------------------
   6. Hero carousel
   -------------------------------------------------------------------------- */
.frame02ed0-hero {
  position: relative;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-m);
  overflow: hidden;
  background: var(--frame02ed0-bg-deep);
}

.frame02ed0-hero__stage {
  position: relative;
  aspect-ratio: 16 / 11;
}

.frame02ed0-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transform: translateX(6%) scale(1.02);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-decoration: none;
}

.frame02ed0-hero-slide.frame02ed0-is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.frame02ed0-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame02ed0-hero-slide__cap {
  position: relative;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 30px 14px 12px;
  background: linear-gradient(
    180deg,
    rgba(18, 26, 43, 0) 0%,
    rgba(18, 26, 43, 0.55) 45%,
    rgba(18, 26, 43, 0.94) 100%
  );
}

.frame02ed0-hero-slide__kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame02ed0-amber);
}

.frame02ed0-hero-slide__line {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.frame02ed0-hero-slide__cta {
  align-self: flex-start;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #1b263b;
  background: var(--frame02ed0-amber);
  border-radius: 999px;
  padding: 5px 12px;
}

.frame02ed0-hero__dots {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  gap: 6px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 26, 43, 0.55);
}

.frame02ed0-hero-dot {
  width: 22px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.frame02ed0-hero-dot:active {
  transform: scaleY(0.8);
}

.frame02ed0-hero-dot.frame02ed0-is-on {
  background: var(--frame02ed0-amber);
}

/* --------------------------------------------------------------------------
   7. Intro block and stat strip
   -------------------------------------------------------------------------- */
.frame02ed0-intro {
  margin-top: 18px;
}

.frame02ed0-intro__title {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--frame02ed0-ink);
}

.frame02ed0-intro__title em {
  font-style: normal;
  color: var(--frame02ed0-pink);
}

.frame02ed0-intro p {
  margin: 0 0 10px;
  color: var(--frame02ed0-ink-soft);
  font-size: 14px;
}

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

.frame02ed0-stat {
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
  padding: 9px 4px;
  text-align: center;
}

.frame02ed0-stat b {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: var(--frame02ed0-amber);
}

.frame02ed0-stat span {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--frame02ed0-ink-faint);
}

/* --------------------------------------------------------------------------
   8. Game shelves: mixed lead card + compact tile grid
   -------------------------------------------------------------------------- */
.frame02ed0-shelf {
  margin-top: 24px;
}

.frame02ed0-shelf__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.frame02ed0-shelf__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
  color: var(--frame02ed0-ink);
}

.frame02ed0-chip {
  flex: none;
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--frame02ed0-pink);
  border: 1px solid var(--frame02ed0-line-strong);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

.frame02ed0-shelf__note {
  margin: 8px 0 12px;
  font-size: 13px;
  color: var(--frame02ed0-ink-soft);
}

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

.frame02ed0-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: var(--frame02ed0-bg-raise);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.frame02ed0-tile:active {
  transform: scale(0.95);
  border-color: var(--frame02ed0-amber);
}

.frame02ed0-tile__art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--frame02ed0-bg-deep);
}

.frame02ed0-tile__flag {
  order: -1;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1b263b;
  background: var(--frame02ed0-amber);
  border-radius: 4px;
  padding: 2px 6px;
}

.frame02ed0-tile__name {
  min-height: 28px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
  color: var(--frame02ed0-ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Lead card: spans two tracks for the large/small mix */
.frame02ed0-tile--lead {
  grid-column: span 2;
  gap: 7px;
  padding: 8px;
  border-color: var(--frame02ed0-line-strong);
  background: linear-gradient(160deg, #26365a 0%, var(--frame02ed0-bg-raise) 70%);
}

.frame02ed0-tile--lead .frame02ed0-tile__name {
  min-height: 30px;
  font-size: 12.5px;
  color: var(--frame02ed0-ink);
}

/* Five columns on the wider half of the phone range */
@media (min-width: 400px) {
  .frame02ed0-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* --------------------------------------------------------------------------
   9. Content panels (highlights, guide, answers, takeaways)
   -------------------------------------------------------------------------- */
.frame02ed0-panel {
  margin-top: 24px;
  padding: 16px 14px;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-m);
  background: var(--frame02ed0-bg-raise);
}

.frame02ed0-panel__title {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
  color: var(--frame02ed0-ink);
}

.frame02ed0-panel p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--frame02ed0-ink-soft);
}

.frame02ed0-panel p:last-child {
  margin-bottom: 0;
}

/* Category comparison rows */
.frame02ed0-compare {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.frame02ed0-compare__row {
  border: 1px solid var(--frame02ed0-line);
  border-left: 3px solid var(--frame02ed0-pink);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
  padding: 10px 12px;
}

.frame02ed0-compare__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.frame02ed0-compare__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--frame02ed0-ink);
}

.frame02ed0-compare__fit {
  flex: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--frame02ed0-amber);
}

.frame02ed0-compare__txt {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--frame02ed0-ink-soft);
}

/* Numbered guide steps */
.frame02ed0-steps {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  counter-reset: frame02ed0-step;
}

.frame02ed0-steps li {
  position: relative;
  counter-increment: frame02ed0-step;
  padding: 10px 12px 10px 44px;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
  font-size: 13px;
  color: var(--frame02ed0-ink-soft);
}

.frame02ed0-steps li::before {
  content: counter(frame02ed0-step);
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame02ed0-amber);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: var(--frame02ed0-amber);
}

/* Collapsible quick answers */
.frame02ed0-qa {
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
}

.frame02ed0-qa + .frame02ed0-qa {
  margin-top: 8px;
}

.frame02ed0-qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--frame02ed0-ink);
}

.frame02ed0-qa summary::-webkit-details-marker {
  display: none;
}

.frame02ed0-qa summary::after {
  content: "+";
  flex: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--frame02ed0-amber);
  transition: transform 0.2s ease;
}

.frame02ed0-qa[open] summary::after {
  content: "\2212";
  transform: rotate(360deg);
}

.frame02ed0-qa__body {
  padding: 0 12px 12px;
  font-size: 13px;
  color: var(--frame02ed0-ink-soft);
}

/* Takeaway chips */
.frame02ed0-takes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.frame02ed0-take {
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
  padding: 10px;
  font-size: 12.5px;
  color: var(--frame02ed0-ink-soft);
}

.frame02ed0-take strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  color: var(--frame02ed0-ink);
}

/* --------------------------------------------------------------------------
   10. Extended homepage footer (directory > brand > promotions > disclaimer)
   -------------------------------------------------------------------------- */
.frame02ed0-ext {
  margin-top: 28px;
  padding-top: 4px;
  border-top: 1px solid var(--frame02ed0-line-strong);
}

.frame02ed0-ext__label {
  margin: 14px 0 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frame02ed0-ink-faint);
}

.frame02ed0-ext-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.frame02ed0-ext-group__label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--frame02ed0-pink);
}

.frame02ed0-ext-group__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame02ed0-ext-group__list a {
  display: block;
  padding: 7px 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--frame02ed0-ink-soft);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 145, 164, 0.16);
}

.frame02ed0-ext-group__list a:last-child {
  border-bottom: 0;
}

.frame02ed0-ext-group__list a:active {
  color: var(--frame02ed0-amber);
}

.frame02ed0-ext-brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
}

.frame02ed0-ext-brand img {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  border: 1px solid var(--frame02ed0-line-strong);
  object-fit: cover;
}

.frame02ed0-ext-brand p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--frame02ed0-ink-soft);
}

.frame02ed0-ext-promo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.frame02ed0-ext-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--frame02ed0-ink-soft);
}

.frame02ed0-ext-disclaimer {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 145, 164, 0.2);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--frame02ed0-ink-faint);
}

/* --------------------------------------------------------------------------
   11. Common footer line + layered bottom dock
   -------------------------------------------------------------------------- */
.frame02ed0-foot {
  margin-top: 18px;
  padding: 4px 0 8px;
  text-align: center;
  font-size: 11.5px;
  color: var(--frame02ed0-ink-faint);
}

.frame02ed0-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  max-width: 430px;
  margin: 0 auto;
  background: rgba(13, 20, 32, 0.97);
  border-top: 1px solid var(--frame02ed0-line-strong);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Upper layer: thin accent strip above the icon row */
.frame02ed0-dock__strip {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--frame02ed0-royal) 0%,
    var(--frame02ed0-pink) 55%,
    var(--frame02ed0-amber) 100%
  );
}

.frame02ed0-dock__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: var(--frame02ed0-dock-h);
}

.frame02ed0-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  padding: 0 2px;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--frame02ed0-ink-faint);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, transform 0.15s ease;
}

.frame02ed0-dock__item:active {
  transform: scale(0.92);
}

.frame02ed0-dock__item .frame02ed0-icon {
  width: 22px;
  height: 22px;
}

/* Active role: filled icon + emphasized label */
.frame02ed0-dock__item.frame02ed0-is-active {
  color: var(--frame02ed0-amber);
  font-weight: 800;
}

.frame02ed0-dock__item.frame02ed0-is-active .frame02ed0-icon {
  fill: rgba(255, 165, 0, 0.22);
  stroke: var(--frame02ed0-amber);
}

.frame02ed0-dock__item--promo {
  color: var(--frame02ed0-pink);
}

/* --------------------------------------------------------------------------
   12. Reveal micro-motion (very subtle fade-lift)
   -------------------------------------------------------------------------- */
.frame02ed0-reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.frame02ed0-reveal.frame02ed0-is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .frame02ed0-reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   13. Help-page compositions
   -------------------------------------------------------------------------- */
.frame02ed0-help-hero {
  margin-top: 18px;
  padding: 18px 14px;
  border: 1px solid var(--frame02ed0-line-strong);
  border-radius: var(--frame02ed0-radius-m);
  background:
    linear-gradient(135deg, rgba(0, 0, 205, 0.34), rgba(255, 145, 164, 0.08)),
    var(--frame02ed0-bg-raise);
}

.frame02ed0-help-hero h1 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.16;
  color: #ffffff;
}

.frame02ed0-help-hero p {
  margin: 0 0 11px;
  color: var(--frame02ed0-ink-soft);
  font-size: 13.5px;
}

.frame02ed0-help-hero p:last-child {
  margin-bottom: 0;
}

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

.frame02ed0-review-meter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 0;
}

.frame02ed0-review-meter__cell {
  min-height: 72px;
  padding: 9px 6px;
  border-top: 3px solid var(--frame02ed0-amber);
  border-right: 1px solid var(--frame02ed0-line);
  border-bottom: 1px solid var(--frame02ed0-line);
  border-left: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.62);
  text-align: center;
}

.frame02ed0-review-meter__cell strong {
  display: block;
  color: var(--frame02ed0-amber);
  font-size: 15px;
}

.frame02ed0-review-meter__cell span {
  display: block;
  margin-top: 3px;
  color: var(--frame02ed0-ink-faint);
  font-size: 10px;
  line-height: 1.3;
}

.frame02ed0-review-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.frame02ed0-review-list__row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--frame02ed0-line);
}

.frame02ed0-review-list__row:last-child {
  border-bottom: 0;
}

.frame02ed0-review-list__label {
  color: var(--frame02ed0-pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.frame02ed0-review-list__row p {
  margin: 0;
  color: var(--frame02ed0-ink-soft);
  font-size: 13px;
}

.frame02ed0-callout {
  margin: 12px 0;
  padding: 12px;
  border-left: 3px solid var(--frame02ed0-amber);
  background: rgba(255, 165, 0, 0.08);
  color: var(--frame02ed0-ink-soft);
  font-size: 13px;
}

.frame02ed0-callout strong {
  color: var(--frame02ed0-ink);
}

.frame02ed0-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.frame02ed0-timeline__step {
  position: relative;
  padding: 12px 12px 12px 48px;
  border: 1px solid var(--frame02ed0-line);
  border-radius: var(--frame02ed0-radius-s);
  background: linear-gradient(90deg, rgba(0, 0, 205, 0.2), rgba(18, 26, 43, 0.5));
}

.frame02ed0-timeline__step::before {
  content: attr(data-step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--frame02ed0-pink);
  color: var(--frame02ed0-bg-deep);
  font-size: 12px;
  font-weight: 900;
}

.frame02ed0-timeline__step h3 {
  margin: 0 0 4px;
  color: var(--frame02ed0-ink);
  font-size: 14px;
}

.frame02ed0-timeline__step p {
  margin: 0;
  color: var(--frame02ed0-ink-soft);
  font-size: 12.8px;
}

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

.frame02ed0-verify-grid__item {
  padding: 10px;
  border: 1px dashed var(--frame02ed0-line-strong);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(18, 26, 43, 0.5);
  color: var(--frame02ed0-ink-soft);
  font-size: 12px;
}

.frame02ed0-verify-grid__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--frame02ed0-amber);
  font-size: 12.5px;
}

.frame02ed0-inline-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0;
  padding: 10px;
  border: 1px solid var(--frame02ed0-line-strong);
  border-radius: var(--frame02ed0-radius-s);
  background: rgba(0, 0, 205, 0.2);
}

.frame02ed0-inline-promo span {
  color: var(--frame02ed0-ink-soft);
  font-size: 12.5px;
}

.frame02ed0-inline-promo .frame02ed0-btn {
  flex: none;
  min-height: 40px;
  padding: 0 10px;
  font-size: 11px;
}

@media (max-width: 350px) {
  .frame02ed0-review-meter__cell {
    min-height: 78px;
    padding-left: 3px;
    padding-right: 3px;
  }

  .frame02ed0-review-list__row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 7px;
  }
}
