/* ============================================================
   b89.click — shell-compact-460ddd.css
   Mobile-first gaming portal stylesheet (single file)
   Class prefix:  frame0ddd6-
   Palette:       #FF7F50 (coral) / #262626 (base) / #FFA500 (accent)
   Breakpoint:    430 (wide mobile canvas tune-up)
   ============================================================ */

:root {
  --frame0ddd6-base:        #262626;
  --frame0ddd6-base-deep:   #1b1b1b;
  --frame0ddd6-base-soft:   #333333;
  --frame0ddd6-base-card:   #2f2f2f;
  --frame0ddd6-coral:       #FF7F50;
  --frame0ddd6-orange:      #FFA500;
  --frame0ddd6-ink:         #ffffff;
  --frame0ddd6-ink-soft:    #e8e8e8;
  --frame0ddd6-ink-mute:    #a4a4a4;
  --frame0ddd6-line:        rgba(255, 255, 255, 0.08);
  --frame0ddd6-line-strong: rgba(255, 127, 80, 0.38);
  --frame0ddd6-radius-card: 14px;
  --frame0ddd6-radius-btn:  10px;
  --frame0ddd6-radius-pill: 999px;
  --frame0ddd6-topbar-h:    56px;
  --frame0ddd6-bottomnav-h: 64px;
  --frame0ddd6-shell-max:   480px;
  --frame0ddd6-font:        "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---- Reset (prefix-scoped) ---- */
.frame0ddd6-reset *,
.frame0ddd6-reset *::before,
.frame0ddd6-reset *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #111111;
  color: var(--frame0ddd6-ink-soft);
  font-family: var(--frame0ddd6-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--frame0ddd6-coral); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; }

/* ---- Shell: centered mobile canvas ---- */
.frame0ddd6-shell {
  position: relative;
  max-width: var(--frame0ddd6-shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--frame0ddd6-base);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.45);
  overflow-x: hidden;
}

/* ============================================================
   Top bar — asymmetric brand header (sticky within shell)
   ============================================================ */
.frame0ddd6-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--frame0ddd6-topbar-h);
  padding: 0 12px;
  background: linear-gradient(180deg, #2d2d2d 0%, #232323 100%);
  border-bottom: 1px solid var(--frame0ddd6-line);
}

.frame0ddd6-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  min-width: 0;
  color: var(--frame0ddd6-ink);
}
.frame0ddd6-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--frame0ddd6-line-strong);
  background: #000;
  flex: none;
}
.frame0ddd6-brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--frame0ddd6-ink);
  line-height: 1;
  white-space: nowrap;
}
.frame0ddd6-brand-name span { color: var(--frame0ddd6-orange); }

.frame0ddd6-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
}
.frame0ddd6-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--frame0ddd6-radius-btn);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--frame0ddd6-ink);
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.frame0ddd6-btn:active { transform: scale(0.95); }
.frame0ddd6-btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.frame0ddd6-btn-register {
  background: linear-gradient(135deg, var(--frame0ddd6-coral), var(--frame0ddd6-orange));
  box-shadow: 0 5px 16px rgba(255, 127, 80, 0.38);
  color: #1c1c1c;
}
.frame0ddd6-menubtn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--frame0ddd6-ink);
}
.frame0ddd6-menubtn svg { width: 20px; height: 20px; display: block; }

/* ============================================================
   Side drawer + overlay
   ============================================================ */
.frame0ddd6-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 70;
}
.frame0ddd6-overlay.is-open { opacity: 1; visibility: visible; }

.frame0ddd6-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82vw, 320px);
  background: #1f1f1f;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--frame0ddd6-line);
}
.frame0ddd6-drawer.is-open { transform: translateX(0); }
.frame0ddd6-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--frame0ddd6-line);
}
.frame0ddd6-drawer-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--frame0ddd6-ink);
}
.frame0ddd6-drawer-title span { color: var(--frame0ddd6-orange); }
.frame0ddd6-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--frame0ddd6-ink);
  font-size: 20px;
  line-height: 1;
}
.frame0ddd6-drawer-nav {
  list-style: none;
  padding: 6px 0;
  overflow-y: auto;
  flex: 1;
}
.frame0ddd6-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  color: var(--frame0ddd6-ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  border-left: 3px solid transparent;
}
.frame0ddd6-drawer-nav a:active { background: rgba(255, 127, 80, 0.08); }
.frame0ddd6-drawer-nav a.is-active {
  color: var(--frame0ddd6-orange);
  border-left-color: var(--frame0ddd6-orange);
  background: rgba(255, 165, 0, 0.07);
}
.frame0ddd6-drawer-nav .frame0ddd6-drawer-ico {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--frame0ddd6-coral);
}
.frame0ddd6-drawer-cta {
  padding: 14px 16px 22px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--frame0ddd6-line);
}
.frame0ddd6-drawer-cta .frame0ddd6-btn {
  width: 100%;
  min-height: 42px;
  font-size: 14px;
}

/* ============================================================
   Main + sections (padding bottom clears fixed bottom nav)
   ============================================================ */
.frame0ddd6-main {
  padding: 14px 12px calc(var(--frame0ddd6-bottomnav-h) + 26px);
}
.frame0ddd6-section { margin: 24px 0; }
.frame0ddd6-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--frame0ddd6-line);
}
.frame0ddd6-section-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--frame0ddd6-ink);
  letter-spacing: 0.2px;
  line-height: 1.25;
}
.frame0ddd6-section-title em {
  font-style: normal;
  color: var(--frame0ddd6-orange);
}
.frame0ddd6-section-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--frame0ddd6-coral);
  white-space: nowrap;
}
.frame0ddd6-section-intro {
  margin: 0 0 11px;
  font-size: 13.5px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.6;
}

/* ============================================================
   Hero carousel
   ============================================================ */
.frame0ddd6-hero { margin: 2px 0 20px; }
.frame0ddd6-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  background: #000;
}
.frame0ddd6-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.frame0ddd6-slide {
  min-width: 100%;
  position: relative;
}
.frame0ddd6-slide-btn {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #000;
  position: relative;
  cursor: pointer;
  text-align: left;
}
.frame0ddd6-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.frame0ddd6-slide-cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}
.frame0ddd6-slide-cap b {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  max-width: 78%;
  line-height: 1.25;
}
.frame0ddd6-slide-cap .frame0ddd6-slide-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--frame0ddd6-radius-pill);
  background: linear-gradient(135deg, var(--frame0ddd6-coral), var(--frame0ddd6-orange));
  color: #1c1c1c;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.frame0ddd6-dots {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.frame0ddd6-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--frame0ddd6-radius-pill);
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}
.frame0ddd6-dot.is-active {
  background: var(--frame0ddd6-orange);
  width: 20px;
}

/* ============================================================
   Game grid + cards (compact floating tiles)
   ============================================================ */
.frame0ddd6-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.frame0ddd6-card {
  display: flex;
  flex-direction: column;
  background: var(--frame0ddd6-base-card);
  border-radius: var(--frame0ddd6-radius-card);
  overflow: hidden;
  border: 1px solid var(--frame0ddd6-line);
  text-align: center;
  position: relative;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  font: inherit;
  color: inherit;
  padding: 0;
  width: 100%;
}
.frame0ddd6-card:hover { border-color: var(--frame0ddd6-line-strong); }
.frame0ddd6-card:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.frame0ddd6-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
  border: 0;
}
.frame0ddd6-card-name {
  padding: 5px 4px 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.frame0ddd6-card-tag {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 1px 7px;
  font-size: 9.5px;
  font-weight: 800;
  border-radius: var(--frame0ddd6-radius-pill);
  background: var(--frame0ddd6-orange);
  color: #1c1c1c;
  letter-spacing: 0.4px;
}
.frame0ddd6-card-tag.frame0ddd6-card-tag-hot {
  background: var(--frame0ddd6-coral);
  color: #fff;
}

/* ============================================================
   Lede / Direct Answer module
   ============================================================ */
.frame0ddd6-lede {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.14), rgba(255, 165, 0, 0.04));
  border: 1px solid var(--frame0ddd6-line-strong);
  border-radius: 14px;
  padding: 14px 15px;
  margin: 2px 0 20px;
}
.frame0ddd6-lede h2 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 800;
  color: var(--frame0ddd6-ink);
  line-height: 1.3;
}
.frame0ddd6-lede p {
  margin: 0;
  color: var(--frame0ddd6-ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Generic prose */
.frame0ddd6-prose p {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.6;
}
.frame0ddd6-prose p:last-child { margin-bottom: 0; }

/* ============================================================
   Module cards (testimonials / payment / security / tricks / fact)
   ============================================================ */
.frame0ddd6-card-box {
  background: var(--frame0ddd6-base-card);
  border: 1px solid var(--frame0ddd6-line);
  border-radius: var(--frame0ddd6-radius-card);
  padding: 14px;
  margin-bottom: 12px;
}
.frame0ddd6-card-box:last-child { margin-bottom: 0; }
.frame0ddd6-card-box h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--frame0ddd6-ink);
}
.frame0ddd6-card-box p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.6;
}
.frame0ddd6-card-box p:last-child { margin-bottom: 0; }

/* ---- Testimonials ---- */
.frame0ddd6-testi-grid { display: grid; gap: 10px; }
.frame0ddd6-testi {
  background: var(--frame0ddd6-base-card);
  border: 1px solid var(--frame0ddd6-line);
  border-radius: 12px;
  padding: 12px 13px;
}
.frame0ddd6-testi-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.frame0ddd6-testi-av {
  width: 30px;
  height: 30px;
  border-radius: var(--frame0ddd6-radius-pill);
  background: linear-gradient(135deg, var(--frame0ddd6-coral), var(--frame0ddd6-orange));
  color: #1c1c1c;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.frame0ddd6-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--frame0ddd6-ink);
}
.frame0ddd6-testi-rate {
  margin-left: auto;
  color: var(--frame0ddd6-orange);
  font-size: 12px;
  letter-spacing: 1px;
}
.frame0ddd6-testi p {
  margin: 0;
  font-size: 12.5px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.55;
}

/* ---- Payment chips ---- */
.frame0ddd6-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.frame0ddd6-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--frame0ddd6-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frame0ddd6-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--frame0ddd6-ink-soft);
}
.frame0ddd6-chip i {
  width: 8px;
  height: 8px;
  border-radius: var(--frame0ddd6-radius-pill);
  background: var(--frame0ddd6-orange);
  display: inline-block;
  flex: none;
}

/* ---- Check list (security) ---- */
.frame0ddd6-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.frame0ddd6-list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 13px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.55;
  border-bottom: 1px dashed var(--frame0ddd6-line);
}
.frame0ddd6-list li:last-child { border-bottom: 0; }
.frame0ddd6-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--frame0ddd6-coral);
}

/* ---- Numbered tricks ---- */
.frame0ddd6-tricks {
  counter-reset: trick;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.frame0ddd6-tricks li {
  counter-increment: trick;
  position: relative;
  padding: 10px 0 10px 38px;
  border-bottom: 1px dashed var(--frame0ddd6-line);
  font-size: 13px;
  color: var(--frame0ddd6-ink-soft);
  line-height: 1.55;
}
.frame0ddd6-tricks li:last-child { border-bottom: 0; }
.frame0ddd6-tricks li::before {
  content: counter(trick);
  position: absolute;
  left: 0;
  top: 8px;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--frame0ddd6-coral), var(--frame0ddd6-orange));
  color: #1c1c1c;
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame0ddd6-tricks li b { color: var(--frame0ddd6-ink); font-weight: 700; }

/* ---- Fact cells ---- */
.frame0ddd6-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 4px;
}
.frame0ddd6-fact-cell {
  background: rgba(255, 165, 0, 0.07);
  border: 1px solid var(--frame0ddd6-line-strong);
  border-radius: 11px;
  padding: 10px 11px;
}
.frame0ddd6-fact-cell b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--frame0ddd6-orange);
  line-height: 1.15;
}
.frame0ddd6-fact-cell span {
  font-size: 11.5px;
  color: var(--frame0ddd6-ink-mute);
  display: block;
  margin-top: 3px;
}

/* ============================================================
   Expanded footer (compact groups)
   ============================================================ */
.frame0ddd6-extfooter {
  margin: 28px 0 6px;
  padding: 16px 14px;
  background: #1f1f1f;
  border: 1px solid var(--frame0ddd6-line);
  border-radius: 16px;
}
.frame0ddd6-ext-group { margin-bottom: 16px; }
.frame0ddd6-ext-group:last-child { margin-bottom: 0; }
.frame0ddd6-ext-title {
  margin: 0 0 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--frame0ddd6-orange);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.frame0ddd6-ext-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  list-style: none;
}
.frame0ddd6-ext-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--frame0ddd6-ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  padding: 3px 0;
}
.frame0ddd6-ext-links a::before {
  content: "›";
  color: var(--frame0ddd6-coral);
  font-weight: 800;
}
.frame0ddd6-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.frame0ddd6-ext-promos button {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--frame0ddd6-coral), var(--frame0ddd6-orange));
  color: #1c1c1c;
  font-size: 12.5px;
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
}
.frame0ddd6-ext-promos button svg { width: 16px; height: 16px; flex: none; }
.frame0ddd6-ext-brand p {
  margin: 0;
  font-size: 12.5px;
  color: var(--frame0ddd6-ink-mute);
  line-height: 1.55;
}
.frame0ddd6-ext-disclaim {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--frame0ddd6-line);
  font-size: 11.5px;
  color: var(--frame0ddd6-ink-mute);
  line-height: 1.55;
}

/* ---- Slim footer ---- */
.frame0ddd6-footer {
  padding: 14px 14px 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--frame0ddd6-ink-mute);
  border-top: 1px solid var(--frame0ddd6-line);
  line-height: 1.6;
}
.frame0ddd6-footer a {
  color: var(--frame0ddd6-ink-mute);
  margin: 0 4px;
}
.frame0ddd6-footer a:hover { color: var(--frame0ddd6-coral); }

/* ============================================================
   Bottom nav — full-width nav wheel (fixed, clamped to shell)
   ============================================================ */
.frame0ddd6-bottomnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--frame0ddd6-shell-max);
  height: var(--frame0ddd6-bottomnav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, #2b2b2b, #191919);
  border-top: 1px solid var(--frame0ddd6-line);
  z-index: 65;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.frame0ddd6-bottomnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--frame0ddd6-ink-mute);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 2px;
  text-decoration: none;
  position: relative;
  min-height: 44px;
  background: transparent;
}
.frame0ddd6-bottomnav-item svg { width: 22px; height: 22px; display: block; }
.frame0ddd6-bottomnav-item.is-active { color: var(--frame0ddd6-orange); }
.frame0ddd6-bottomnav-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 3px;
  border-radius: 0 0 var(--frame0ddd6-radius-pill) var(--frame0ddd6-radius-pill);
  background: var(--frame0ddd6-orange);
}
.frame0ddd6-bottomnav-item.frame0ddd6-bottomnav-promo {
  color: var(--frame0ddd6-coral);
}
.frame0ddd6-bottomnav-item.frame0ddd6-bottomnav-promo svg {
  filter: drop-shadow(0 0 6px rgba(255, 127, 80, 0.45));
}
.frame0ddd6-bottomnav-item.frame0ddd6-bottomnav-promo .frame0ddd6-bottomnav-label {
  font-weight: 800;
}

/* Visually hidden helper */
.frame0ddd6-vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Wide mobile canvas tune-up (430 breakpoint — literal 430)
   ============================================================ */
@media (min-width: 430px) {
  .frame0ddd6-slide-img { aspect-ratio: 16 / 8; }
  .frame0ddd6-card-name { font-size: 12px; }
  .frame0ddd6-grid { gap: 11px; }
  .frame0ddd6-main { padding-left: 14px; padding-right: 14px; }
  .frame0ddd6-section-title { font-size: 18px; }
}

@media (min-width: 760px) {
  body { background: #0d0d0d; }
  .frame0ddd6-shell { box-shadow: 0 0 120px rgba(0, 0, 0, 0.6); }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--frame0ddd6-orange);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { transition: none !important; animation: none !important; }
  .frame0ddd6-track { transition: none !important; }
}
