/* ==========================================================================
   fb775 site stylesheet.
   All custom classes and CSS variables use the frame661b0- prefix so the
   rules never collide with vendor CSS loaded by embedded widgets.
   Mobile canvas is 320-430px; on wider screens the canvas stays centered.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --frame661b0-color-violet: #9400D3;
  --frame661b0-color-magenta: #8B008B;
  --frame661b0-color-tomato: #FF6347;
  --frame661b0-color-amber: #FFB347;
  --frame661b0-color-fog: #A9A9A9;
  --frame661b0-color-bg: #0C0C0C;
  --frame661b0-color-bg-raised: #15121b;
  --frame661b0-color-bg-card: #1c1630;
  --frame661b0-color-bg-elevated: #261c3d;
  --frame661b0-color-line: rgba(255, 255, 255, 0.08);
  --frame661b0-color-line-strong: rgba(255, 255, 255, 0.16);
  --frame661b0-color-text: #f4eefb;
  --frame661b0-color-text-muted: #b7acc6;
  --frame661b0-color-text-dim: #8a8095;
  --frame661b0-shadow-card: 0 10px 22px rgba(0, 0, 0, 0.45);
  --frame661b0-shadow-float: 0 18px 40px rgba(0, 0, 0, 0.55);
  --frame661b0-shadow-glow: 0 0 0 1px rgba(148, 0, 211, 0.35), 0 14px 30px rgba(148, 0, 211, 0.25);
  --frame661b0-radius-sm: 10px;
  --frame661b0-radius-md: 16px;
  --frame661b0-radius-lg: 22px;
  --frame661b0-radius-pill: 999px;
  --frame661b0-space-1: 6px;
  --frame661b0-space-2: 10px;
  --frame661b0-space-3: 14px;
  --frame661b0-space-4: 18px;
  --frame661b0-space-5: 24px;
  --frame661b0-space-6: 32px;
  --frame661b0-canvas-max: 430px;
  --frame661b0-header-h: 62px;
  --frame661b0-bottomnav-h: 70px;
  --frame661b0-tap-min: 44px;
  --frame661b0-ease-lift: cubic-bezier(0.2, 0.75, 0.35, 1);
}

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

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

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at 50% -20%, #1a0e2c 0%, #0C0C0C 55%);
  color: var(--frame661b0-color-text);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--frame661b0-color-amber);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover,
a:focus {
  color: var(--frame661b0-color-tomato);
}

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

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

ul, ol {
  padding-left: 1.15rem;
}

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

/* ---- Mobile canvas wrapper ---------------------------------------------- */
.frame661b0-canvas {
  position: relative;
  width: 100%;
  max-width: var(--frame661b0-canvas-max);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(148, 0, 211, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(139, 0, 139, 0.18) 0%, transparent 40%),
    #0C0C0C;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  padding-bottom: calc(var(--frame661b0-bottomnav-h) + 22px);
}

/* ---- Skip link ---------------------------------------------------------- */
.frame661b0-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--frame661b0-color-amber);
  color: #0C0C0C;
  padding: 10px 16px;
  border-radius: 0 0 var(--frame661b0-radius-sm) 0;
  z-index: 200;
}

.frame661b0-skip:focus {
  left: 0;
  z-index: 300;
}

/* ---- Top header (tab-style top bar) ------------------------------------- */
.frame661b0-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(28, 22, 48, 0.96) 0%, rgba(12, 12, 12, 0.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--frame661b0-color-line-strong);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.frame661b0-header-row {
  display: flex;
  align-items: center;
  gap: var(--frame661b0-space-2);
  padding: 8px 12px;
  min-height: var(--frame661b0-header-h);
}

/* Brand area: logo image + name. Logo is a real image, not text/CSS. */
.frame661b0-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.frame661b0-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--frame661b0-color-violet), var(--frame661b0-color-magenta));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 10px rgba(148, 0, 211, 0.35);
  flex: 0 0 auto;
}

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

.frame661b0-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(90deg, #fff 30%, var(--frame661b0-color-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.frame661b0-brand-tag {
  font-size: 10px;
  color: var(--frame661b0-color-text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Header action cluster */
.frame661b0-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.frame661b0-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--frame661b0-radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 0.18s var(--frame661b0-ease-lift), box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.frame661b0-btn:focus-visible {
  outline-offset: 3px;
}

.frame661b0-btn-register {
  background: linear-gradient(135deg, var(--frame661b0-color-tomato), var(--frame661b0-color-amber));
  color: #1a0a06;
  box-shadow: 0 6px 14px rgba(255, 99, 71, 0.35);
}

.frame661b0-btn-register:hover,
.frame661b0-btn-register:focus {
  color: #1a0a06;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 99, 71, 0.45);
}

.frame661b0-btn-login {
  background: transparent;
  color: var(--frame661b0-color-text);
  border-color: var(--frame661b0-color-line-strong);
}

.frame661b0-btn-login:hover,
.frame661b0-btn-login:focus {
  color: var(--frame661b0-color-amber);
  transform: translateY(-2px);
  border-color: var(--frame661b0-color-amber);
}

/* Menu trigger button */
.frame661b0-btn-menu {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 12px;
  background: rgba(148, 0, 211, 0.18);
  border: 1px solid rgba(148, 0, 211, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s var(--frame661b0-ease-lift), background 0.18s ease;
}

.frame661b0-btn-menu:hover,
.frame661b0-btn-menu:focus {
  background: rgba(148, 0, 211, 0.32);
  transform: translateY(-1px);
}

.frame661b0-btn-menu.frame661b0-is-active {
  transform: translateY(-2px);
  background: rgba(255, 99, 71, 0.25);
}

.frame661b0-btn-menu svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ---- Layered dropdown menu ---------------------------------------------- */
.frame661b0-menu {
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(var(--frame661b0-header-h) + 6px);
  z-index: 120;
  background: linear-gradient(180deg, rgba(38, 28, 61, 0.98) 0%, rgba(20, 16, 30, 0.98) 100%);
  border: 1px solid var(--frame661b0-color-line-strong);
  border-radius: var(--frame661b0-radius-md);
  box-shadow: var(--frame661b0-shadow-float);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s var(--frame661b0-ease-lift), visibility 0.2s;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.frame661b0-menu.frame661b0-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.frame661b0-menu-section + .frame661b0-menu-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--frame661b0-color-line);
}

.frame661b0-menu-label {
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame661b0-color-amber);
  padding: 4px 8px 6px;
}

.frame661b0-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.frame661b0-menu-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 10px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  min-height: 50px;
  transition: transform 0.16s var(--frame661b0-ease-lift), background 0.16s ease, border-color 0.16s ease;
}

.frame661b0-menu-link:hover,
.frame661b0-menu-link:focus {
  background: rgba(148, 0, 211, 0.18);
  border-color: rgba(148, 0, 211, 0.4);
  transform: translateY(-2px);
  color: var(--frame661b0-color-text);
}

.frame661b0-menu-link-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.frame661b0-menu-link-meta {
  font-size: 11px;
  color: var(--frame661b0-color-text-muted);
}

.frame661b0-menu-link.frame661b0-is-active {
  background: rgba(255, 179, 71, 0.14);
  border-color: rgba(255, 179, 71, 0.5);
}

/* ---- Main + sectioning -------------------------------------------------- */
.frame661b0-main {
  padding: 0 0 var(--frame661b0-space-5);
}

.frame661b0-section {
  padding: var(--frame661b0-space-5) 14px var(--frame661b0-space-4);
}

.frame661b0-section-alt {
  background:
    linear-gradient(180deg, rgba(148, 0, 211, 0.10) 0%, rgba(12, 12, 12, 0) 60%);
}

.frame661b0-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--frame661b0-space-3);
}

.frame661b0-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--frame661b0-color-amber);
  padding: 4px 10px;
  border-radius: var(--frame661b0-radius-pill);
  background: rgba(255, 179, 71, 0.10);
  border: 1px solid rgba(255, 179, 71, 0.30);
  margin-bottom: 8px;
}

.frame661b0-section-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.frame661b0-section-sub {
  font-size: 13px;
  color: var(--frame661b0-color-text-muted);
  margin-top: 4px;
}

.frame661b0-link-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--frame661b0-color-amber);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---- Hero / carousel ---------------------------------------------------- */
.frame661b0-hero {
  padding: var(--frame661b0-space-4) 14px 6px;
}

.frame661b0-h1 {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.frame661b0-hero-lede {
  font-size: 13.5px;
  color: var(--frame661b0-color-text-muted);
  margin-bottom: var(--frame661b0-space-3);
}

.frame661b0-carousel {
  position: relative;
  border-radius: var(--frame661b0-radius-lg);
  overflow: hidden;
  box-shadow: var(--frame661b0-shadow-card);
  border: 1px solid var(--frame661b0-color-line-strong);
}

.frame661b0-carousel-viewport {
  overflow: hidden;
  border-radius: var(--frame661b0-radius-lg);
}

.frame661b0-carousel-track {
  display: flex;
  transition: transform 0.42s var(--frame661b0-ease-lift);
  will-change: transform;
}

.frame661b0-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #15121b;
}

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

.frame661b0-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.65) 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.frame661b0-slide-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.frame661b0-slide-text {
  font-size: 12.5px;
  color: #f1e8d6;
  margin-top: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.frame661b0-slide-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--frame661b0-color-tomato), var(--frame661b0-color-amber));
  color: #1a0a06;
  border-radius: var(--frame661b0-radius-pill);
  font-size: 12.5px;
  font-weight: 800;
  align-self: flex-start;
  transition: transform 0.16s var(--frame661b0-ease-lift), box-shadow 0.16s ease;
}

.frame661b0-slide-cta:hover,
.frame661b0-slide-cta:focus {
  color: #1a0a06;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 99, 71, 0.4);
}

.frame661b0-carousel-prev,
.frame661b0-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.16s ease, transform 0.16s ease;
}

.frame661b0-carousel-prev:hover,
.frame661b0-carousel-next:hover {
  background: rgba(148, 0, 211, 0.7);
  transform: translateY(-50%) scale(1.06);
}

.frame661b0-carousel-prev { left: 8px; }
.frame661b0-carousel-next { right: 8px; }

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

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

.frame661b0-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  transition: background 0.16s ease, transform 0.16s ease, width 0.2s ease;
}

.frame661b0-carousel-dot.frame661b0-is-active {
  background: var(--frame661b0-color-amber);
  width: 22px;
  border-radius: var(--frame661b0-radius-pill);
}

/* ---- Quick action row under hero --------------------------------------- */
.frame661b0-quickrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px 14px var(--frame661b0-space-4);
}

.frame661b0-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  background: linear-gradient(180deg, rgba(38, 28, 61, 0.7), rgba(20, 16, 30, 0.7));
  border: 1px solid var(--frame661b0-color-line);
  border-radius: var(--frame661b0-radius-md);
  color: #fff;
  text-align: center;
  min-height: var(--frame661b0-tap-min);
  transition: transform 0.16s var(--frame661b0-ease-lift), border-color 0.16s ease;
}

.frame661b0-quick:hover,
.frame661b0-quick:focus {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255, 179, 71, 0.5);
}

.frame661b0-quick svg {
  width: 22px;
  height: 22px;
  color: var(--frame661b0-color-amber);
}

.frame661b0-quick-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ---- Category chips (visual markers, not tab filters) ------------------ */
.frame661b0-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 14px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.frame661b0-chips::-webkit-scrollbar { display: none; }

.frame661b0-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--frame661b0-radius-pill);
  background: rgba(148, 0, 211, 0.16);
  border: 1px solid rgba(148, 0, 211, 0.35);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.16s var(--frame661b0-ease-lift), background 0.16s ease;
}

.frame661b0-chip:hover,
.frame661b0-chip:focus {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(148, 0, 211, 0.32);
}

/* ---- Game grid (compact 4-5 columns) ----------------------------------- */
.frame661b0-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.frame661b0-game-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.16s var(--frame661b0-ease-lift);
}

.frame661b0-game-card:hover,
.frame661b0-game-card:focus {
  color: #fff;
  transform: translateY(-3px);
}

.frame661b0-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--frame661b0-radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #2a1d44, #160f24);
  border: 1px solid var(--frame661b0-color-line-strong);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

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

.frame661b0-game-card:hover .frame661b0-game-thumb img {
  transform: scale(1.06);
}

.frame661b0-game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(148, 0, 211, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.frame661b0-game-card:hover .frame661b0-game-thumb::after,
.frame661b0-game-card:focus .frame661b0-game-thumb::after {
  opacity: 1;
}

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

/* ---- Content modules (Game Tricks, Features, etc.) --------------------- */
.frame661b0-modules {
  padding: var(--frame661b0-space-3) 14px var(--frame661b0-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--frame661b0-space-4);
}

.frame661b0-card {
  background: linear-gradient(180deg, rgba(38, 28, 61, 0.6), rgba(20, 16, 30, 0.85));
  border: 1px solid var(--frame661b0-color-line-strong);
  border-radius: var(--frame661b0-radius-md);
  padding: var(--frame661b0-space-4);
  box-shadow: var(--frame661b0-shadow-card);
}

.frame661b0-card h2 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.frame661b0-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--frame661b0-color-amber);
  margin-top: 14px;
  margin-bottom: 6px;
}

.frame661b0-card p {
  font-size: 13.5px;
  color: var(--frame661b0-color-text);
  margin-bottom: 8px;
}

.frame661b0-card p:last-child {
  margin-bottom: 0;
}

.frame661b0-card ul,
.frame661b0-card ol {
  font-size: 13.5px;
  color: var(--frame661b0-color-text);
  padding-left: 1.2rem;
}

.frame661b0-card li {
  margin-bottom: 6px;
}

.frame661b0-card li::marker {
  color: var(--frame661b0-color-amber);
}

/* Inline promo link inside body copy */
.frame661b0-inline-link {
  color: var(--frame661b0-color-amber);
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 179, 71, 0.5);
}

.frame661b0-inline-link:hover,
.frame661b0-inline-link:focus {
  color: var(--frame661b0-color-tomato);
  border-bottom-color: var(--frame661b0-color-tomato);
}

/* ---- Features grid ------------------------------------------------------ */
.frame661b0-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.frame661b0-feature {
  padding: 12px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(148, 0, 211, 0.10);
  border: 1px solid rgba(148, 0, 211, 0.30);
}

.frame661b0-feature-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame661b0-feature-title svg {
  width: 16px;
  height: 16px;
  color: var(--frame661b0-color-amber);
}

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

/* ---- Tricks grid ------------------------------------------------------- */
.frame661b0-trick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.frame661b0-trick {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--frame661b0-color-tomato);
}

.frame661b0-trick-num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame661b0-color-tomato), var(--frame661b0-color-amber));
  color: #1a0a06;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame661b0-trick-body {
  flex: 1 1 auto;
}

.frame661b0-trick-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.frame661b0-trick-text {
  font-size: 12.5px;
  color: var(--frame661b0-color-text-muted);
  line-height: 1.5;
}

/* ---- Term list --------------------------------------------------------- */
.frame661b0-term-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.frame661b0-term {
  padding: 10px 12px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--frame661b0-color-line);
}

.frame661b0-term-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--frame661b0-color-amber);
  margin-bottom: 3px;
}

.frame661b0-term-desc {
  font-size: 12.5px;
  color: var(--frame661b0-color-text-muted);
  line-height: 1.5;
}

/* ---- Partner strip ----------------------------------------------------- */
.frame661b0-partners {
  padding: var(--frame661b0-space-3) 14px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.frame661b0-partners::-webkit-scrollbar { display: none; }

.frame661b0-partner {
  flex: 0 0 auto;
  width: 70px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--frame661b0-color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.frame661b0-partner img {
  max-height: 30px;
  max-width: 60px;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.85);
}

/* ---- Extended site footer (index-only directory) ----------------------- */
.frame661b0-extended {
  margin: 0 10px var(--frame661b0-space-4);
  background: linear-gradient(180deg, rgba(28, 22, 48, 0.95), rgba(12, 12, 12, 0.95));
  border: 1px solid var(--frame661b0-color-line-strong);
  border-radius: var(--frame661b0-radius-lg);
  padding: var(--frame661b0-space-4);
}

.frame661b0-extended-block + .frame661b0-extended-block {
  margin-top: var(--frame661b0-space-4);
  padding-top: var(--frame661b0-space-4);
  border-top: 1px dashed var(--frame661b0-color-line);
}

.frame661b0-extended-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--frame661b0-color-amber);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.frame661b0-extended-title svg {
  width: 15px;
  height: 15px;
}

.frame661b0-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.frame661b0-directory a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--frame661b0-color-text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--frame661b0-color-line);
  transition: color 0.16s ease, transform 0.16s ease;
}

.frame661b0-directory a:hover,
.frame661b0-directory a:focus {
  color: var(--frame661b0-color-amber);
  transform: translateX(2px);
}

.frame661b0-directory svg {
  width: 14px;
  height: 14px;
  color: var(--frame661b0-color-violet);
  flex: 0 0 auto;
}

.frame661b0-promo-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.frame661b0-promo-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(148, 0, 211, 0.16);
  border: 1px solid rgba(148, 0, 211, 0.35);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  min-height: var(--frame661b0-tap-min);
  transition: transform 0.16s var(--frame661b0-ease-lift), background 0.16s ease;
}

.frame661b0-promo-tile:hover,
.frame661b0-promo-tile:focus {
  color: #fff;
  transform: translateY(-2px);
  background: rgba(255, 99, 71, 0.22);
}

.frame661b0-promo-tile svg {
  width: 18px;
  height: 18px;
  color: var(--frame661b0-color-amber);
  flex: 0 0 auto;
}

.frame661b0-brand-blurb {
  font-size: 12.5px;
  color: var(--frame661b0-color-text-muted);
  line-height: 1.55;
}

.frame661b0-disclaimer {
  font-size: 11.5px;
  color: var(--frame661b0-color-text-dim);
  line-height: 1.5;
  padding: 10px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(255, 99, 71, 0.07);
  border: 1px dashed rgba(255, 99, 71, 0.30);
}

/* ---- General footer (copyright + bottom nav) --------------------------- */
.frame661b0-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(20, 16, 30, 0.96), rgba(12, 12, 12, 0.99));
  border-top: 1px solid var(--frame661b0-color-line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.frame661b0-footer-meta {
  padding: 10px 14px 8px;
  text-align: center;
  font-size: 11px;
  color: var(--frame661b0-color-text-dim);
  border-bottom: 1px solid var(--frame661b0-color-line);
}

.frame661b0-footer-meta strong {
  color: var(--frame661b0-color-amber);
  font-weight: 800;
}

/* ---- Bottom navigation (full-width rail, 5 roles) ---------------------- */
.frame661b0-bottomnav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  min-height: var(--frame661b0-bottomnav-h);
  padding: 4px 4px calc(env(safe-area-inset-bottom, 0px) + 4px);
  background: linear-gradient(180deg, rgba(28, 22, 48, 0.96), rgba(12, 12, 12, 0.99));
}

.frame661b0-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  color: var(--frame661b0-color-text-muted);
  text-decoration: none;
  position: relative;
  border-radius: var(--frame661b0-radius-sm);
  min-height: var(--frame661b0-tap-min);
  transition: transform 0.18s var(--frame661b0-ease-lift), color 0.18s ease;
}

.frame661b0-nav-link:hover,
.frame661b0-nav-link:focus {
  color: #fff;
  transform: translateY(-3px);
}

.frame661b0-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--frame661b0-color-line);
  transition: transform 0.18s var(--frame661b0-ease-lift), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.frame661b0-nav-icon svg {
  width: 20px;
  height: 20px;
}

.frame661b0-nav-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
}

.frame661b0-nav-link.frame661b0-is-active .frame661b0-nav-icon {
  background: linear-gradient(135deg, var(--frame661b0-color-tomato), var(--frame661b0-color-amber));
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(255, 99, 71, 0.45);
  transform: translateY(-4px);
}

.frame661b0-nav-link.frame661b0-is-active {
  color: #fff;
}

.frame661b0-nav-link.frame661b0-is-active .frame661b0-nav-label {
  color: var(--frame661b0-color-amber);
}

/* Promo nav items get a warmer accent treatment */
.frame661b0-nav-link[data-role="promo"] .frame661b0-nav-icon {
  background: rgba(255, 99, 71, 0.12);
  border-color: rgba(255, 99, 71, 0.4);
  color: var(--frame661b0-color-tomato);
}

.frame661b0-nav-link[data-role="promo"]:hover .frame661b0-nav-icon,
.frame661b0-nav-link[data-role="promo"]:focus .frame661b0-nav-icon {
  background: linear-gradient(135deg, rgba(255, 99, 71, 0.4), rgba(255, 179, 71, 0.4));
  color: #fff;
}

/* ---- Reveal animation --------------------------------------------------- */
.frame661b0-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s var(--frame661b0-ease-lift);
}

.frame661b0-reveal.frame661b0-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- CTA banner --------------------------------------------------------- */
.frame661b0-cta {
  margin: var(--frame661b0-space-4) 14px;
  padding: var(--frame661b0-space-4);
  border-radius: var(--frame661b0-radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 179, 71, 0.35), transparent 55%),
    linear-gradient(135deg, var(--frame661b0-color-magenta), var(--frame661b0-color-violet));
  border: 1px solid rgba(255, 179, 71, 0.3);
  box-shadow: var(--frame661b0-shadow-card);
  text-align: center;
}

.frame661b0-cta-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.frame661b0-cta-text {
  font-size: 12.5px;
  color: #f1e8d6;
  margin-bottom: 14px;
}

.frame661b0-cta-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.frame661b0-cta .frame661b0-btn {
  min-width: 130px;
}

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

/* ---- Responsive fine-tuning -------------------------------------------- */
@media (min-width: 360px) {
  .frame661b0-h1 { font-size: 24px; }
  .frame661b0-section-title { font-size: 20px; }
  .frame661b0-game-grid { gap: 12px; }
  .frame661b0-game-name { font-size: 11.5px; }
}

@media (min-width: 393px) {
  .frame661b0-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .frame661b0-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 410px) {
  .frame661b0-h1 { font-size: 26px; }
  .frame661b0-promo-rail { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Help page reading layouts ------------------------------------------- */
.frame661b0-page-hero {
  padding: 24px 14px 16px;
  background: radial-gradient(circle at 90% 0%, rgba(255, 179, 71, 0.18), transparent 48%);
}

.frame661b0-page-hero .frame661b0-h1 { margin-bottom: 9px; }

.frame661b0-answer {
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 3px solid var(--frame661b0-color-amber);
  border-radius: 0 var(--frame661b0-radius-sm) var(--frame661b0-radius-sm) 0;
  background: rgba(255, 179, 71, 0.09);
  color: #fff;
  font-size: 13.5px;
}

.frame661b0-review-path {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.frame661b0-review-step {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.frame661b0-review-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--frame661b0-color-violet), var(--frame661b0-color-tomato));
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 5px 12px rgba(148, 0, 211, 0.35);
}

.frame661b0-review-step h3 { margin: 0 0 4px; color: #fff; font-size: 14px; }
.frame661b0-review-step p { margin: 0; font-size: 12.8px; color: var(--frame661b0-color-text-muted); }

.frame661b0-action-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.frame661b0-action-line .frame661b0-btn { min-height: 44px; flex: 1 1 130px; }

.frame661b0-issue-list { display: grid; gap: 9px; margin-top: 12px; }
.frame661b0-issue {
  padding: 12px;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--frame661b0-color-line);
}
.frame661b0-issue strong { display: block; color: var(--frame661b0-color-amber); font-size: 13px; margin-bottom: 3px; }
.frame661b0-issue span { color: var(--frame661b0-color-text-muted); font-size: 12.7px; }

.frame661b0-score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 12px 0;
}
.frame661b0-score {
  padding: 10px 7px;
  text-align: center;
  border-radius: var(--frame661b0-radius-sm);
  background: rgba(148, 0, 211, 0.13);
  border: 1px solid rgba(148, 0, 211, 0.3);
}
.frame661b0-score b { display: block; color: var(--frame661b0-color-amber); font-size: 18px; }
.frame661b0-score span { color: var(--frame661b0-color-text-muted); font-size: 10.5px; }

.frame661b0-question-stack { display: grid; gap: 8px; margin-top: 12px; }
.frame661b0-question {
  border: 1px solid var(--frame661b0-color-line-strong);
  border-radius: var(--frame661b0-radius-sm);
  padding: 12px;
  background: rgba(38, 28, 61, 0.42);
}
.frame661b0-question h3 { margin: 0 0 5px; font-size: 13.5px; color: #fff; }
.frame661b0-question p { margin: 0; font-size: 12.8px; color: var(--frame661b0-color-text-muted); }

.frame661b0-compare-table { display: grid; gap: 7px; margin-top: 12px; }
.frame661b0-compare-row { display: grid; grid-template-columns: 0.85fr 1fr 1fr; gap: 5px; align-items: stretch; }
.frame661b0-compare-row > span { padding: 9px 7px; font-size: 11.5px; color: var(--frame661b0-color-text-muted); background: rgba(255,255,255,0.035); border-radius: 7px; }
.frame661b0-compare-row:first-child > span { color: var(--frame661b0-color-amber); font-weight: 800; background: rgba(255,179,71,0.1); }
.frame661b0-compare-row > span:first-child { color: #fff; font-weight: 700; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
  .frame661b0-carousel-track { transition: none; }
  .frame661b0-reveal { opacity: 1; transform: none; }
}
