/* ============================================================
   tongits go app - Base Stylesheet (visual-a5ec.css)
   Mobile-first gaming canvas (320-430px).
   All custom classes use the "gec7-" prefix.
   Palette: #A0522D / #FAF0E6 / #3A3A3A / #FFEFD5 / #A0522D
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --gec7-brown: #A0522D;
  --gec7-brown-deep: #7A3F22;
  --gec7-brown-soft: #B8643A;
  --gec7-linen: #FAF0E6;
  --gec7-charcoal: #3A3A3A;
  --gec7-charcoal-deep: #2A2522;
  --gec7-cream: #FFEFD5;
  --gec7-cream-soft: #F6E2C6;
  --gec7-gold: #E8B66A;
  --gec7-ink: #1F1A17;
  --gec7-muted: #C9B6A0;
  --gec7-shadow: 0 6px 22px rgba(0, 0, 0, .28);
  --gec7-radius: 14px;
  --gec7-radius-sm: 10px;
  --gec7-header-h: 58px;
  --gec7-bottomnav-h: 64px;
}

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

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

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  background: radial-gradient(circle at 50% -10%, #4a342a 0%, var(--gec7-charcoal-deep) 55%, var(--gec7-ink) 100%);
  color: var(--gec7-linen);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gec7-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; font-weight: 700; }
h1 { font-size: 26px; letter-spacing: -.3px; }
h2 { font-size: 21px; letter-spacing: -.2px; }
h3 { font-size: 17px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

/* ---- Page shell: keeps a phone canvas on wide screens ---- */
.gec7-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(58, 36, 26, .55) 0%, rgba(31, 26, 23, .92) 22%, var(--gec7-ink) 60%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, .55);
}

/* ============================================================
   HEADER  (compact brand bar)
   ============================================================ */
.gec7-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--gec7-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: linear-gradient(90deg, var(--gec7-brown-deep) 0%, var(--gec7-brown) 55%, var(--gec7-brown-deep) 100%);
  border-bottom: 2px solid var(--gec7-gold);
  box-shadow: 0 3px 14px rgba(0, 0, 0, .35);
}

.gec7-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.gec7-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid var(--gec7-cream);
  background: var(--gec7-cream);
  padding: 2px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

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

.gec7-brand-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--gec7-cream);
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.gec7-brand-tag {
  font-size: 10px;
  color: var(--gec7-cream-soft);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.gec7-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gec7-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.gec7-btn:active { transform: translateY(1px); }
.gec7-btn:hover { text-decoration: none; }

.gec7-btn-login {
  background: transparent;
  color: var(--gec7-cream);
  border: 1.5px solid var(--gec7-cream);
}
.gec7-btn-login:hover { background: rgba(255, 239, 213, .14); }

.gec7-btn-register {
  background: var(--gec7-cream);
  color: var(--gec7-brown-deep);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .25);
}
.gec7-btn-register:hover { filter: brightness(1.07); }

.gec7-menu-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 239, 213, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gec7-cream);
}
.gec7-menu-toggle svg { width: 20px; height: 20px; }

/* ============================================================
   Slide-down stacked overlay menu
   ============================================================ */
.gec7-menu {
  position: fixed;
  top: var(--gec7-header-h);
  left: 50%;
  transform: translate(-50%, -12px);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, rgba(42, 37, 34, .98) 0%, rgba(31, 26, 23, .98) 100%);
  border-top: 1px solid rgba(255, 239, 213, .15);
  border-bottom: 3px solid var(--gec7-brown);
  padding: 10px 12px 14px;
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
}
.gec7-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.gec7-menu-title {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--gec7-muted);
  text-transform: uppercase;
  margin: 6px 4px;
}
.gec7-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gec7-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--gec7-radius-sm);
  background: rgba(160, 82, 45, .18);
  border: 1px solid rgba(255, 239, 213, .08);
  color: var(--gec7-linen);
  font-size: 13px;
  font-weight: 600;
}
.gec7-menu-item:hover {
  background: rgba(160, 82, 45, .38);
  text-decoration: none;
}
.gec7-menu-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gec7-gold);
  flex-shrink: 0;
}

/* ============================================================
   HERO + CAROUSEL
   ============================================================ */
.gec7-hero {
  position: relative;
  margin: 12px 10px 6px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gec7-shadow);
  border: 1px solid rgba(255, 239, 213, .14);
}
.gec7-carousel {
  position: relative;
  height: 190px;
}
.gec7-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  background-size: cover;
  background-position: center;
}
.gec7-slide.is-active { opacity: 1; }
.gec7-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .75) 100%);
}
.gec7-hero-cta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gec7-hero-headline {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
  margin: 0;
}
.gec7-hero-sub {
  color: var(--gec7-cream-soft);
  font-size: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .8);
  margin: 0;
}
.gec7-hero-btn {
  align-self: flex-start;
  background: var(--gec7-gold);
  color: var(--gec7-ink);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
}
.gec7-hero-btn:hover { text-decoration: none; filter: brightness(1.07); }

.gec7-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 5px;
}
.gec7-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 239, 213, .55);
  border: 0;
  padding: 0;
}
.gec7-dot.is-active { background: var(--gec7-gold); transform: scale(1.2); }

/* ============================================================
   Section primitives
   ============================================================ */
.gec7-section {
  padding: 14px 12px 8px;
}
.gec7-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gec7-section-bar {
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gec7-gold), var(--gec7-brown));
}
.gec7-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gec7-cream);
  margin: 0;
}
.gec7-section-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--gec7-muted);
  letter-spacing: .4px;
}

/* ---- Promo strip ---- */
.gec7-promo-strip {
  margin: 6px 10px 4px;
  padding: 10px 12px;
  border-radius: var(--gec7-radius);
  background: linear-gradient(90deg, var(--gec7-brown) 0%, var(--gec7-brown-soft) 100%);
  border: 1px solid var(--gec7-gold);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gec7-cream);
}
.gec7-promo-strip-text {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}
.gec7-promo-strip-cta {
  background: var(--gec7-cream);
  color: var(--gec7-brown-deep);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  font-weight: 800;
}

/* ---- Quick categories chips ---- */
.gec7-chips {
  display: flex;
  gap: 6px;
  padding: 8px 10px 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gec7-chips::-webkit-scrollbar { display: none; }
.gec7-chip {
  flex-shrink: 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 239, 213, .08);
  border: 1px solid rgba(255, 239, 213, .2);
  color: var(--gec7-cream-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
}
.gec7-chip.is-active {
  background: var(--gec7-brown);
  border-color: var(--gec7-gold);
  color: var(--gec7-cream);
}

/* ============================================================
   GAME GRID
   ============================================================ */
.gec7-cat-block { margin-top: 6px; }
.gec7-cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 12px 8px;
}
.gec7-cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gec7-brown) 0%, var(--gec7-brown-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gec7-cream);
  font-size: 13px;
  border: 1px solid var(--gec7-gold);
}
.gec7-cat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gec7-cream);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.gec7-cat-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--gec7-muted);
  background: rgba(255, 239, 213, .08);
  padding: 3px 9px;
  border-radius: 999px;
}

.gec7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 10px 6px;
}
@media (min-width: 375px) {
  .gec7-grid { gap: 10px; }
}

.gec7-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 4px 8px;
  border-radius: var(--gec7-radius-sm);
  background: linear-gradient(180deg, rgba(160, 82, 45, .22) 0%, rgba(31, 26, 23, .55) 100%);
  border: 1px solid rgba(255, 239, 213, .1);
  transition: transform .14s ease, border-color .14s ease;
  text-align: center;
  cursor: pointer;
}
.gec7-game:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: var(--gec7-gold);
}
.gec7-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 239, 213, .14);
  background: var(--gec7-charcoal-deep);
}
.gec7-game-name {
  font-size: 10.5px;
  color: var(--gec7-cream-soft);
  font-weight: 600;
  line-height: 1.2;
  min-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   Info / SEO content cards
   ============================================================ */
.gec7-card {
  margin: 10px 12px;
  padding: 14px 14px 12px;
  border-radius: var(--gec7-radius);
  background: linear-gradient(180deg, rgba(58, 58, 58, .85) 0%, rgba(31, 26, 23, .85) 100%);
  border: 1px solid rgba(255, 239, 213, .12);
  color: var(--gec7-linen);
}
.gec7-card h2 { color: var(--gec7-cream); }
.gec7-card h3 { color: var(--gec7-gold); margin-top: 6px; }
.gec7-card p, .gec7-card li { font-size: 14px; color: var(--gec7-linen); }
.gec7-card a { color: var(--gec7-gold); font-weight: 600; }

.gec7-card-list { list-style: none; padding: 0; }
.gec7-card-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-bottom: 1px dashed rgba(255, 239, 213, .12);
  font-size: 13px;
}
.gec7-card-list li:last-child { border-bottom: 0; }
.gec7-card-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--gec7-brown-soft);
  border-radius: 50%;
  border: 2px solid var(--gec7-gold);
}

/* ---- Testimonials ---- */
.gec7-testi {
  display: grid;
  gap: 8px;
  padding: 0 12px;
}
.gec7-testi-item {
  padding: 11px 12px;
  border-radius: var(--gec7-radius-sm);
  background: rgba(160, 82, 45, .15);
  border-left: 3px solid var(--gec7-gold);
}
.gec7-testi-name {
  font-size: 13px;
  color: var(--gec7-cream);
  font-weight: 700;
}
.gec7-testi-stars { color: var(--gec7-gold); font-size: 12px; }
.gec7-testi-text { font-size: 12.5px; color: var(--gec7-linen); margin-top: 4px; }

/* ---- FAQ ---- */
.gec7-faq { padding: 0 12px; }
.gec7-faq-item {
  margin-bottom: 8px;
  border-radius: var(--gec7-radius-sm);
  background: rgba(255, 239, 213, .06);
  border: 1px solid rgba(255, 239, 213, .1);
  overflow: hidden;
}
.gec7-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--gec7-cream);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.gec7-faq-q .gec7-faq-icon { transition: transform .2s; color: var(--gec7-gold); font-size: 18px; }
.gec7-faq-item.is-open .gec7-faq-q .gec7-faq-icon { transform: rotate(45deg); }
.gec7-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 14px;
  color: var(--gec7-linen);
  font-size: 13px;
}
.gec7-faq-item.is-open .gec7-faq-a { max-height: 320px; padding: 0 14px 12px; }

/* ============================================================
   Extended footer (brand + promo actions + directory + disclaimer)
   ============================================================ */
.gec7-ext-footer {
  margin: 16px 10px 8px;
  padding: 16px 14px;
  border-radius: var(--gec7-radius);
  background: linear-gradient(180deg, rgba(42, 37, 34, .9) 0%, rgba(20, 16, 14, .95) 100%);
  border: 1px solid rgba(255, 239, 213, .12);
}
.gec7-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.gec7-ext-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--gec7-gold);
  padding: 2px;
  background: var(--gec7-cream);
}
.gec7-ext-brand-text { flex: 1; }
.gec7-ext-brand-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--gec7-cream);
  text-transform: uppercase;
}
.gec7-ext-brand-tag {
  font-size: 11px;
  color: var(--gec7-muted);
}

.gec7-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.gec7-ext-promo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--gec7-radius-sm);
  background: linear-gradient(90deg, var(--gec7-brown) 0%, var(--gec7-brown-deep) 100%);
  border: 1px solid rgba(232, 182, 106, .35);
  color: var(--gec7-cream);
  font-size: 12px;
  font-weight: 700;
}
.gec7-ext-promo:hover { text-decoration: none; filter: brightness(1.08); }
.gec7-ext-promo-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gec7-gold);
  color: var(--gec7-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.gec7-directory-title {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--gec7-muted);
  text-transform: uppercase;
  margin: 4px 0 6px;
}
.gec7-directory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-bottom: 12px;
}
.gec7-directory a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 239, 213, .05);
  border: 1px solid rgba(255, 239, 213, .08);
  color: var(--gec7-linen);
  font-size: 12.5px;
  font-weight: 600;
}
.gec7-directory a:hover { background: rgba(160, 82, 45, .25); text-decoration: none; }
.gec7-directory-arrow { margin-left: auto; color: var(--gec7-gold); font-size: 14px; }

.gec7-disclaimer {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(160, 82, 45, .14);
  border: 1px dashed rgba(232, 182, 106, .4);
  font-size: 11px;
  color: var(--gec7-muted);
  line-height: 1.5;
}

/* ============================================================
   Compact footer copyright
   ============================================================ */
.gec7-foot {
  text-align: center;
  padding: 10px 14px calc(var(--gec7-bottomnav-h) + 14px);
  font-size: 11px;
  color: var(--gec7-muted);
}

/* ============================================================
   MOBILE BOTTOM NAV  (outlined functional bar)
   ============================================================ */
.gec7-bottomnav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--gec7-bottomnav-h);
  background: linear-gradient(180deg, rgba(31, 26, 23, .97) 0%, rgba(15, 11, 9, .99) 100%);
  border-top: 2px solid var(--gec7-brown);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.gec7-bottomnav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--gec7-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2px;
  background: transparent;
  border: 0;
  padding: 6px 2px 4px;
  transition: transform .16s ease, color .16s ease;
}
.gec7-bottomnav-item:hover { text-decoration: none; }
.gec7-bottomnav-item svg {
  width: 22px;
  height: 22px;
  transition: transform .16s ease;
}
.gec7-bottomnav-item.is-active {
  color: var(--gec7-cream);
}
.gec7-bottomnav-item.is-active svg {
  transform: translateY(-3px);
  filter: drop-shadow(0 4px 6px rgba(232, 182, 106, .55));
}
.gec7-bottomnav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--gec7-gold);
}
.gec7-bottomnav-item:active svg { transform: translateY(-1px); }
.gec7-bottomnav-label { line-height: 1; }
.gec7-bottomnav-item.is-active .gec7-bottomnav-label { color: var(--gec7-gold); }

/* Highlight promo buttons distinctly */
.gec7-bottomnav-item--promo {
  color: var(--gec7-cream-soft);
}

/* ============================================================
   Utility
   ============================================================ */
.gec7-container { padding-bottom: 12px; }
.gec7-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Long-form guide layouts ---- */
.gec7-guide-main { padding-bottom: 72px; }
.gec7-guide-hero { margin: 12px 12px 16px; padding: 20px 16px; border-radius: 18px; background: linear-gradient(135deg, rgba(160,82,45,.9), rgba(42,37,34,.96)); border: 1px solid var(--gec7-gold); box-shadow: var(--gec7-shadow); }
.gec7-guide-kicker { color: var(--gec7-gold); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; }
.gec7-guide-hero h1 { color: #fff; margin-top: 7px; }
.gec7-guide-hero p { color: var(--gec7-cream-soft); font-size: 14px; margin-bottom: 0; }
.gec7-guide-nav { margin: 0 12px 14px; padding: 12px 14px; border-left: 4px solid var(--gec7-gold); background: rgba(255,239,213,.07); border-radius: 8px; }
.gec7-guide-nav strong { display:block; color: var(--gec7-cream); margin-bottom: 5px; }
.gec7-guide-nav a { display: inline-block; margin: 3px 10px 3px 0; font-size: 12px; }
.gec7-guide-block { margin: 12px; padding: 16px 15px; border-radius: 12px; background: linear-gradient(180deg, rgba(58,58,58,.9), rgba(31,26,23,.94)); border: 1px solid rgba(255,239,213,.12); }
.gec7-guide-block h2 { color: var(--gec7-cream); font-size: 20px; }
.gec7-guide-block h3 { color: var(--gec7-gold); margin-top: 14px; }
.gec7-guide-block p, .gec7-guide-block li { color: var(--gec7-linen); font-size: 14px; }
.gec7-guide-block li { margin-bottom: 7px; }
.gec7-step-list { list-style: none; padding: 0; counter-reset: gec7steps; }
.gec7-step-list li { counter-increment: gec7steps; padding: 10px 10px 10px 42px; position: relative; border-bottom: 1px solid rgba(255,239,213,.1); }
.gec7-step-list li::before { content: counter(gec7steps); position:absolute; left:0; top:8px; width:27px; height:27px; border-radius:50%; display:grid; place-items:center; color:var(--gec7-ink); background:var(--gec7-gold); font-weight:800; }
.gec7-callout { padding: 12px; border-radius: 9px; background: rgba(160,82,45,.22); border: 1px dashed rgba(232,182,106,.55); color: var(--gec7-cream-soft); font-size: 13px; }
.gec7-compare { width:100%; border-collapse: collapse; font-size: 12px; margin: 10px 0; }
.gec7-compare th, .gec7-compare td { padding: 8px 6px; border-bottom: 1px solid rgba(255,239,213,.13); text-align:left; vertical-align:top; }
.gec7-compare th { color:var(--gec7-gold); }
.gec7-action-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.gec7-action-row a { padding:9px 13px; border-radius:999px; background:var(--gec7-brown); color:var(--gec7-cream); font-size:12px; font-weight:800; }
