/* ============================================================ *
 * GGPoker design tokens and components (ggpoker-tokens-09709a.css)
 *
 * All custom classes, data attributes and CSS variables use the
 * "frame09709-" prefix so the stylesheet never collides with other
 * mobile assets. Palette anchors:
 *   #0F0F23 deep navy background
 *   #8B7355 bronze accent
 *   #006400 / #2E8B57 / #228B22 green felt family
 * Light text on dark canvas; high contrast for mobile readability.
 * ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --frame09709-bg-deep: #0F0F23;
  --frame09709-bg-soft: #161634;
  --frame09709-bg-card: #1c1c40;
  --frame09709-bg-elevated: #20223f;
  --frame09709-bg-zone: #181a35;

  --frame09709-bronze: #8B7355;
  --frame09709-bronze-soft: #b08f6c;
  --frame09709-gold: #c9a961;

  --frame09709-green-deep: #006400;
  --frame09709-green-sea: #2E8B57;
  --frame09709-green-forest: #228B22;

  --frame09709-text-primary: #f6f4ec;
  --frame09709-text-secondary: #c3c2d4;
  --frame09709-text-muted: #8c8ca4;
  --frame09709-text-on-action: #0a0a18;

  --frame09709-line: rgba(139, 115, 85, 0.28);
  --frame09709-line-soft: rgba(139, 115, 85, 0.14);
  --frame09709-glass: rgba(20, 22, 50, 0.86);

  --frame09709-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.32);
  --frame09709-shadow-strong: 0 14px 38px rgba(0, 0, 0, 0.55);

  --frame09709-radius-s: 8px;
  --frame09709-radius-m: 14px;
  --frame09709-radius-l: 22px;
  --frame09709-radius-pill: 999px;

  --frame09709-gap-xs: 6px;
  --frame09709-gap-s: 10px;
  --frame09709-gap-m: 16px;
  --frame09709-gap-l: 22px;
  --frame09709-gap-xl: 30px;

  --frame09709-header-h: 64px;
  --frame09709-bottomnav-h: 72px;

  --frame09709-canvas: 430px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, "Noto Sans",
    "PingFang TC", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--frame09709-text-primary);
  background-color: var(--frame09709-bg-deep);
  background-image:
    radial-gradient(900px 360px at 12% -8%, rgba(46, 139, 87, 0.18), transparent 60%),
    radial-gradient(720px 320px at 110% 6%, rgba(139, 115, 85, 0.16), transparent 65%),
    radial-gradient(800px 600px at 50% 120%, rgba(0, 100, 0, 0.18), transparent 70%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--frame09709-green-sea);
  text-decoration: none;
}

a:hover {
  color: var(--frame09709-bronze-soft);
}

button {
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--frame09709-text-primary);
}

p {
  margin: 0 0 var(--frame09709-gap-m) 0;
}

/* ---------- App frame: keep the mobile canvas on wider screens ---------- */
.frame09709-app {
  width: 100%;
  max-width: var(--frame09709-canvas);
  margin: 0 auto;
  background: linear-gradient(180deg, #11112a 0%, var(--frame09709-bg-deep) 38%, var(--frame09709-bg-deep) 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--frame09709-shadow-strong);
}

@media (min-width: 481px) {
  body {
    background-image:
      radial-gradient(1200px 480px at 30% -10%, rgba(46, 139, 87, 0.16), transparent 60%),
      radial-gradient(900px 400px at 90% 0%, rgba(139, 115, 85, 0.12), transparent 65%);
  }
}

.frame09709-no-scroll {
  overflow: hidden;
}

/* ---------- Skip link ---------- */
.frame09709-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--frame09709-green-forest);
  color: var(--frame09709-text-on-action);
  padding: 8px 14px;
  border-radius: var(--frame09709-radius-s);
  z-index: 200;
}

.frame09709-skip:focus {
  left: 12px;
  top: 12px;
}

/* ============================================================ *
 * Top asymmetric brand header
 * ============================================================ */
.frame09709-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--frame09709-header-h);
  display: flex;
  align-items: stretch;
  padding: 0 var(--frame09709-gap-m);
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.96) 0%, rgba(15, 15, 35, 0.84) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--frame09709-line);
}

.frame09709-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.frame09709-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 25%, #2a2c52 0%, #14152e 70%);
  border: 1px solid var(--frame09709-bronze);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12), inset 0 0 14px rgba(0, 100, 0, 0.35);
  flex-shrink: 0;
  overflow: hidden;
}

.frame09709-brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.frame09709-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.frame09709-brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--frame09709-text-primary);
}

.frame09709-brand-tag {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--frame09709-bronze-soft);
}

.frame09709-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.frame09709-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(139, 115, 85, 0.12);
  border: 1px solid var(--frame09709-line);
  display: grid;
  place-items: center;
  color: var(--frame09709-text-primary);
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease;
}

.frame09709-icon-btn:hover,
.frame09709-icon-btn:focus-visible {
  background: rgba(46, 139, 87, 0.22);
  border-color: var(--frame09709-green-sea);
  transform: scale(1.06);
  outline: none;
}

.frame09709-icon-btn svg {
  width: 22px;
  height: 22px;
}

.frame09709-btn-login {
  height: 36px;
  padding: 0 14px;
  border-radius: var(--frame09709-radius-pill);
  border: 1px solid var(--frame09709-bronze);
  color: var(--frame09709-text-primary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  background: rgba(139, 115, 85, 0.08);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
}

.frame09709-btn-login:hover,
.frame09709-btn-login:focus-visible {
  background: rgba(139, 115, 85, 0.24);
  transform: scale(1.05);
  outline: none;
}

.frame09709-btn-register {
  height: 36px;
  padding: 0 16px;
  border-radius: var(--frame09709-radius-pill);
  background: linear-gradient(135deg, #2E8B57 0%, #228B22 60%, #006400 100%);
  color: var(--frame09709-text-on-action);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 16px rgba(34, 139, 34, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.frame09709-btn-register:hover,
.frame09709-btn-register:focus-visible {
  transform: scale(1.06);
  filter: saturate(115%);
  outline: none;
}

/* ============================================================ *
 * Zoned menu overlay
 * ============================================================ */
.frame09709-menu-panel {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 18, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 120;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.frame09709-menu-panel.frame09709-menu-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s ease;
}

.frame09709-menu-sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: linear-gradient(180deg, #15162f 0%, #0F0F23 100%);
  border-left: 1px solid var(--frame09709-line);
  transform: translateX(110%);
  transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  padding: var(--frame09709-gap-m);
  display: flex;
  flex-direction: column;
  gap: var(--frame09709-gap-m);
}

.frame09709-menu-open .frame09709-menu-sheet {
  transform: translateX(0);
}

.frame09709-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--frame09709-gap-s);
  border-bottom: 1px solid var(--frame09709-line-soft);
}

.frame09709-menu-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--frame09709-text-primary);
}

.frame09709-menu-title span {
  color: var(--frame09709-green-sea);
}

.frame09709-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(139, 115, 85, 0.12);
  border: 1px solid var(--frame09709-line);
  display: grid;
  place-items: center;
  color: var(--frame09709-text-primary);
}

.frame09709-menu-close:hover {
  background: rgba(46, 139, 87, 0.2);
}

.frame09709-menu-close svg {
  width: 18px;
  height: 18px;
}

.frame09709-menu-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--frame09709-gap-s);
}

.frame09709-menu-cta button {
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.frame09709-menu-cta .frame09709-cta-register {
  background: linear-gradient(135deg, #228B22, #006400);
  color: var(--frame09709-text-on-action);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.frame09709-menu-cta .frame09709-cta-login {
  background: rgba(139, 115, 85, 0.16);
  color: var(--frame09709-text-primary);
  border: 1px solid var(--frame09709-bronze);
}

.frame09709-menu-zone {
  border: 1px solid var(--frame09709-line-soft);
  background: var(--frame09709-bg-zone);
  border-radius: var(--frame09709-radius-m);
  padding: var(--frame09709-gap-s) var(--frame09709-gap-m);
}

.frame09709-menu-zone-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frame09709-bronze-soft);
  margin-bottom: 6px;
}

.frame09709-menu-zone ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.frame09709-menu-zone a {
  display: block;
  padding: 8px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--frame09709-text-primary);
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.12s ease;
}

.frame09709-menu-zone a:hover {
  background: rgba(46, 139, 87, 0.18);
  transform: translateX(2px);
  color: var(--frame09709-text-primary);
}

/* ============================================================ *
 * Main wrapper and sections
 * ============================================================ */
.frame09709-main {
  padding: var(--frame09709-gap-m) var(--frame09709-gap-m) calc(var(--frame09709-bottomnav-h) + 80px);
}

.frame09709-section {
  margin-top: var(--frame09709-gap-xl);
}

.frame09709-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--frame09709-gap-m);
}

.frame09709-section-bar {
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--frame09709-green-sea), var(--frame09709-green-deep));
  flex-shrink: 0;
}

.frame09709-section-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--frame09709-text-primary);
}

.frame09709-section-sub {
  font-size: 12px;
  color: var(--frame09709-text-muted);
  margin-left: auto;
  font-weight: 600;
}

/* ============================================================ *
 * Hero H1 banner (page headline)
 * ============================================================ */
.frame09709-hero-banner {
  position: relative;
  padding: var(--frame09709-gap-l) var(--frame09709-gap-m);
  border-radius: var(--frame09709-radius-l);
  background:
    radial-gradient(circle at 80% 0%, rgba(46, 139, 87, 0.36), transparent 55%),
    radial-gradient(circle at 10% 110%, rgba(139, 115, 85, 0.3), transparent 60%),
    linear-gradient(135deg, #142a1c 0%, #0F1c2e 100%);
  border: 1px solid var(--frame09709-line);
  overflow: hidden;
  margin-bottom: var(--frame09709-gap-m);
}

.frame09709-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 12px);
  pointer-events: none;
}

.frame09709-hero-h1 {
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  position: relative;
}

.frame09709-hero-h1 .frame09709-h1-accent {
  color: var(--frame09709-green-sea);
}

.frame09709-hero-lede {
  font-size: 13px;
  color: var(--frame09709-text-secondary);
  margin: 0 0 14px;
  position: relative;
  max-width: 34ch;
}

.frame09709-hero-actions {
  display: flex;
  gap: 8px;
  position: relative;
  flex-wrap: wrap;
}

.frame09709-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--frame09709-radius-pill);
  background: rgba(201, 169, 97, 0.16);
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--frame09709-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-top: 10px;
  position: relative;
}

/* ============================================================ *
 * Carousel
 * ============================================================ */
.frame09709-carousel {
  position: relative;
  border-radius: var(--frame09709-radius-l);
  overflow: hidden;
  border: 1px solid var(--frame09709-line);
  background: #000;
}

.frame09709-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.frame09709-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: pointer;
}

.frame09709-carousel-slide.frame09709-slide-active {
  opacity: 1;
}

.frame09709-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame09709-carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--frame09709-gap-m);
  background: linear-gradient(180deg, rgba(7, 7, 18, 0) 30%, rgba(7, 7, 18, 0.78) 100%);
}

.frame09709-carousel-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--frame09709-gold);
  margin-bottom: 4px;
}

.frame09709-carousel-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.frame09709-carousel-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 10px;
  max-width: 30ch;
}

.frame09709-carousel-cta {
  align-self: flex-start;
  height: 34px;
  padding: 0 16px;
  border-radius: var(--frame09709-radius-pill);
  background: linear-gradient(135deg, #228B22, #006400);
  color: var(--frame09709-text-on-action);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.12s ease;
}

.frame09709-carousel-cta:hover {
  transform: scale(1.06);
  color: var(--frame09709-text-on-action);
}

.frame09709-carousel-prev,
.frame09709-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 7, 18, 0.5);
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.18s ease, transform 0.12s ease;
  z-index: 4;
}

.frame09709-carousel-prev:hover,
.frame09709-carousel-next:hover {
  background: rgba(46, 139, 87, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.frame09709-carousel-prev {
  left: 8px;
}

.frame09709-carousel-next {
  right: 8px;
}

.frame09709-carousel-prev svg,
.frame09709-carousel-next svg {
  width: 18px;
  height: 18px;
}

.frame09709-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.frame09709-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  transition: width 0.22s ease, background 0.22s ease;
}

.frame09709-carousel-dot.frame09709-dot-active {
  width: 22px;
  border-radius: 6px;
  background: var(--frame09709-green-sea);
}

/* ============================================================ *
 * Game grid
 * ============================================================ */
.frame09709-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--frame09709-gap-s);
}

@media (min-width: 360px) {
  .frame09709-game-grid {
    gap: 12px;
  }
}

@media (min-width: 380px) {
  .frame09709-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.frame09709-game-card {
  position: relative;
  display: block;
  text-align: center;
  padding: 0;
  background: transparent;
  border-radius: var(--frame09709-radius-m);
  transition: transform 0.14s ease;
  cursor: pointer;
}

.frame09709-game-card:hover,
.frame09709-game-card:focus-visible {
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.frame09709-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--frame09709-line);
  background: linear-gradient(180deg, #20223f, #16162e);
  box-shadow: var(--frame09709-shadow-soft);
}

.frame09709-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.frame09709-game-card:hover .frame09709-game-thumb img {
  transform: scale(1.08);
}

.frame09709-game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.frame09709-game-flag {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--frame09709-radius-pill);
  background: linear-gradient(135deg, #c9a961, #8B7355);
  color: #1a1206;
  z-index: 2;
}

.frame09709-game-name {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--frame09709-text-secondary);
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 28px;
}

.frame09709-game-card:hover .frame09709-game-name {
  color: var(--frame09709-text-primary);
}

/* ============================================================ *
 * Info / module cards
 * ============================================================ */
.frame09709-prose {
  font-size: 14px;
  line-height: 1.7;
  color: var(--frame09709-text-secondary);
}

.frame09709-prose p {
  margin-bottom: 12px;
}

.frame09709-prose strong {
  color: var(--frame09709-text-primary);
}

.frame09709-prose a {
  color: var(--frame09709-green-sea);
  font-weight: 700;
  border-bottom: 1px dashed rgba(46, 139, 87, 0.5);
  padding-bottom: 1px;
}

.frame09709-prose a:hover {
  color: var(--frame09709-bronze-soft);
  border-bottom-color: var(--frame09709-bronze-soft);
}

.frame09709-inline-action {
  display: inline;
  padding: 0;
  color: var(--frame09709-green-sea);
  font-weight: 800;
  border-bottom: 1px dashed rgba(46, 139, 87, 0.55);
  text-align: left;
}

.frame09709-inline-action:hover,
.frame09709-inline-action:focus-visible {
  color: var(--frame09709-bronze-soft);
  outline: 2px solid rgba(46, 139, 87, 0.55);
  outline-offset: 2px;
}

.frame09709-card {
  background: linear-gradient(180deg, var(--frame09709-bg-card) 0%, var(--frame09709-bg-soft) 100%);
  border: 1px solid var(--frame09709-line-soft);
  border-radius: var(--frame09709-radius-l);
  padding: var(--frame09709-gap-l) var(--frame09709-gap-m);
  box-shadow: var(--frame09709-shadow-soft);
}

.frame09709-h2 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin-bottom: var(--frame09709-gap-s);
}

.frame09709-h2 .frame09709-h2-mark {
  color: var(--frame09709-green-sea);
}

.frame09709-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--frame09709-gold);
  margin: var(--frame09709-gap-m) 0 6px;
  letter-spacing: 0.2px;
}

.frame09709-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--frame09709-gap-s);
  margin-top: var(--frame09709-gap-m);
}

.frame09709-feature {
  padding: var(--frame09709-gap-s);
  border-radius: var(--frame09709-radius-m);
  background: rgba(46, 139, 87, 0.08);
  border: 1px solid rgba(46, 139, 87, 0.22);
}

.frame09709-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #228B22, #006400);
  color: var(--frame09709-text-on-action);
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.frame09709-feature-icon svg {
  width: 16px;
  height: 16px;
}

.frame09709-feature-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--frame09709-text-primary);
  margin-bottom: 3px;
}

.frame09709-feature-text {
  font-size: 12px;
  color: var(--frame09709-text-muted);
  line-height: 1.45;
}

.frame09709-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--frame09709-gap-s);
}

.frame09709-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--frame09709-text-secondary);
}

.frame09709-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--frame09709-green-sea), var(--frame09709-green-deep));
  transform: rotate(45deg);
}

.frame09709-step-list {
  counter-reset: frame09709-step;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--frame09709-gap-s);
}

.frame09709-step-list li {
  counter-increment: frame09709-step;
  position: relative;
  padding-left: 38px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--frame09709-text-secondary);
  min-height: 30px;
}

.frame09709-step-list li::before {
  content: counter(frame09709-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(139, 115, 85, 0.18);
  border: 1px solid var(--frame09709-bronze);
  color: var(--frame09709-text-primary);
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.frame09709-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: var(--frame09709-gap-m);
}

.frame09709-fact {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(139, 115, 85, 0.08);
  border: 1px solid var(--frame09709-line-soft);
}

.frame09709-fact-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--frame09709-bronze-soft);
}

.frame09709-fact-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--frame09709-text-primary);
  margin-top: 2px;
}

/* ============================================================ *
 * Extended footer (homepage specific)
 * ============================================================ */
.frame09709-ext-footer {
  margin-top: var(--frame09709-gap-xl);
  padding: var(--frame09709-gap-l) var(--frame09709-gap-m);
  border-radius: var(--frame09709-radius-l);
  border: 1px solid var(--frame09709-line);
  background:
    radial-gradient(circle at 90% 0%, rgba(46, 139, 87, 0.18), transparent 60%),
    linear-gradient(180deg, #14152e 0%, #0F0F23 100%);
}

.frame09709-ext-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: var(--frame09709-gap-m);
  border-bottom: 1px solid var(--frame09709-line-soft);
  margin-bottom: var(--frame09709-gap-m);
}

.frame09709-ext-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: #0a0a1a;
  border: 1px solid var(--frame09709-bronze);
  padding: 4px;
}

.frame09709-ext-brand-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--frame09709-text-secondary);
}

.frame09709-ext-brand-text strong {
  color: var(--frame09709-text-primary);
  font-size: 13px;
}

.frame09709-ext-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: var(--frame09709-gap-m);
}

.frame09709-ext-directory a {
  font-size: 12px;
  font-weight: 600;
  color: var(--frame09709-text-secondary);
  padding: 6px 0;
  border-bottom: 1px dashed var(--frame09709-line-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame09709-ext-directory a:hover {
  color: var(--frame09709-green-sea);
  border-bottom-color: var(--frame09709-green-sea);
}

.frame09709-ext-directory svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--frame09709-bronze-soft);
}

.frame09709-ext-promo-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--frame09709-gold);
  margin-bottom: 10px;
}

.frame09709-ext-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: var(--frame09709-gap-m);
}

.frame09709-ext-promo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(46, 139, 87, 0.1);
  border: 1px solid rgba(46, 139, 87, 0.3);
  color: var(--frame09709-text-primary);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: transform 0.12s ease, background 0.16s ease;
}

.frame09709-ext-promo-btn:hover,
.frame09709-ext-promo-btn:focus-visible {
  background: rgba(46, 139, 87, 0.22);
  transform: scale(1.04);
  color: var(--frame09709-text-primary);
  outline: none;
}

.frame09709-ext-promo-btn svg {
  width: 16px;
  height: 16px;
  color: var(--frame09709-green-sea);
  flex-shrink: 0;
}

.frame09709-ext-disclaimer {
  font-size: 11px;
  line-height: 1.55;
  color: var(--frame09709-text-muted);
  padding-top: var(--frame09709-gap-s);
  border-top: 1px solid var(--frame09709-line-soft);
}

/* ============================================================ *
 * Common footer
 * ============================================================ */
.frame09709-footer {
  padding: var(--frame09709-gap-m);
  text-align: center;
  border-top: 1px solid var(--frame09709-line);
  background: rgba(10, 10, 24, 0.7);
}

.frame09709-footer-copy {
  font-size: 11px;
  color: var(--frame09709-text-muted);
  letter-spacing: 0.4px;
}

.frame09709-footer-copy strong {
  color: var(--frame09709-bronze-soft);
}

/* ============================================================ *
 * Mobile bottom navigation rail
 * ============================================================ */
.frame09709-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.frame09709-bottomnav-rail {
  pointer-events: auto;
  width: 100%;
  max-width: var(--frame09709-canvas);
  height: var(--frame09709-bottomnav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.92) 0%, rgba(7, 7, 18, 0.98) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--frame09709-line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.frame09709-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  color: var(--frame09709-text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 6px 2px 4px;
  transition: color 0.18s ease, transform 0.12s ease;
}

.frame09709-nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.16s ease;
}

.frame09709-nav-item:hover,
.frame09709-nav-item:focus-visible {
  color: var(--frame09709-text-primary);
  transform: translateY(-1px);
  outline: none;
}

.frame09709-nav-item:hover svg {
  transform: scale(1.1);
}

.frame09709-nav-current {
  color: var(--frame09709-text-on-action) !important;
}

.frame09709-nav-current::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--frame09709-green-sea), var(--frame09709-green-forest));
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.45);
  z-index: -1;
}

.frame09709-nav-current svg {
  transform: scale(1.06);
}

.frame09709-nav-current .frame09709-nav-label {
  color: #fff;
}

/* ============================================================ *
 * Back to top
 * ============================================================ */
.frame09709-back-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--frame09709-bottomnav-h) + 14px);
  z-index: 70;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B7355, #c9a961);
  color: #1a1206;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--frame09709-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.frame09709-back-top.frame09709-back-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.frame09709-back-top:hover {
  transform: scale(1.1);
}

.frame09709-back-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================ *
 * Utility helpers
 * ============================================================ */
.frame09709-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.frame09709-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--frame09709-radius-pill);
  background: rgba(46, 139, 87, 0.14);
  border: 1px solid rgba(46, 139, 87, 0.32);
  color: var(--frame09709-green-sea);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.frame09709-eyebrow svg {
  width: 12px;
  height: 12px;
}

.frame09709-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.frame09709-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--frame09709-radius-pill);
  background: rgba(139, 115, 85, 0.12);
  border: 1px solid var(--frame09709-line-soft);
  color: var(--frame09709-text-secondary);
  font-weight: 600;
}

/* Larger screens keep the mobile canvas; no desktop widening. */
@media (min-width: 481px) {
  .frame09709-bottomnav-rail {
    border-left: 1px solid var(--frame09709-line);
    border-right: 1px solid var(--frame09709-line);
  }
}

/* Reduce motion preference. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
