/* PH Bingo APK - palette + layout stylesheet
   Class prefix: frame7e291-
   Palette     : #0C0C0C bg | #5F9EA0 teal | #4682B4 steel |
                 #ADD8E6 ice | #BA55D3 orchid | #ADB5BD slate
   Canvas      : 320-430px mobile, centered on wider screens.
*/

:root {
  --frame7e291-ink: #0C0C0C;
  --frame7e291-ink-soft: #141821;
  --frame7e291-ink-card: #1A1F2B;
  --frame7e291-teal: #5F9EA0;
  --frame7e291-steel: #4682B4;
  --frame7e291-ice: #ADD8E6;
  --frame7e291-orchid: #BA55D3;
  --frame7e291-slate: #ADB5BD;
  --frame7e291-line: rgba(173, 216, 230, 0.16);
  --frame7e291-line-strong: rgba(173, 216, 230, 0.28);
  --frame7e291-text: #EAF3F8;
  --frame7e291-text-dim: #B7C2CE;
  --frame7e291-text-faint: #8A95A1;
  --frame7e291-radius-sm: 8px;
  --frame7e291-radius: 14px;
  --frame7e291-radius-lg: 20px;
  --frame7e291-header-h: 58px;
  --frame7e291-nav-h: 64px;
  --frame7e291-maxw: 430px;
  --frame7e291-glow-teal: 0 0 22px rgba(95, 158, 160, 0.45);
  --frame7e291-glow-orchid: 0 0 22px rgba(186, 85, 211, 0.4);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 50% -10%, #18222f 0%, #0C0C0C 60%);
  color: var(--frame7e291-text);
  font-size: 14.5px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--frame7e291-ice);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #ffffff;
}

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

/* Mobile canvas frame - centered phone-sized column on wide screens. */
.frame7e291-canvas {
  max-width: var(--frame7e291-maxw);
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(95, 158, 160, 0.06) 0%, rgba(186, 85, 211, 0.05) 40%, rgba(12, 12, 12, 0) 80%),
    #0C0C0C;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
}

/* ============ HEADER ============ */
.frame7e291-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--frame7e291-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(100deg, rgba(15, 24, 33, 0.96) 0%, rgba(46, 60, 78, 0.94) 60%, rgba(60, 35, 70, 0.94) 100%);
  border-bottom: 1px solid var(--frame7e291-line-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.frame7e291-brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--frame7e291-teal), var(--frame7e291-orchid));
  padding: 2px;
  box-shadow: var(--frame7e291-glow-teal);
  flex-shrink: 0;
}

.frame7e291-brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

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

.frame7e291-brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.frame7e291-brand-tag {
  font-size: 10px;
  color: var(--frame7e291-ice);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

.frame7e291-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.frame7e291-btn-login {
  background: rgba(173, 216, 230, 0.1);
  color: var(--frame7e291-ice);
  border: 1px solid var(--frame7e291-line-strong);
}

.frame7e291-btn-login:hover {
  background: rgba(173, 216, 230, 0.2);
  transform: translateY(-1px);
}

.frame7e291-btn-register {
  background: linear-gradient(95deg, var(--frame7e291-orchid), var(--frame7e291-steel));
  color: #fff;
  box-shadow: 0 4px 14px rgba(186, 85, 211, 0.4);
}

.frame7e291-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(186, 85, 211, 0.55);
}

.frame7e291-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(173, 216, 230, 0.08);
  border: 1px solid var(--frame7e291-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--frame7e291-ice);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.frame7e291-menu-btn:hover,
.frame7e291-menu-btn-active {
  background: rgba(186, 85, 211, 0.25);
  border-color: var(--frame7e291-orchid);
}

.frame7e291-menu-btn svg {
  width: 18px;
  height: 18px;
}

/* ============ EXPANDABLE MENU PANEL ============ */
.frame7e291-menu-panel {
  position: absolute;
  top: var(--frame7e291-header-h);
  left: 0;
  right: 0;
  z-index: 55;
  background: linear-gradient(180deg, rgba(16, 22, 32, 0.98), rgba(12, 12, 12, 0.98));
  border-bottom: 1px solid var(--frame7e291-line-strong);
  padding: 14px 14px 18px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--frame7e291-menu-transitionMs, 260ms) ease, opacity var(--frame7e291-menu-transitionMs, 260ms) ease, visibility 0s linear var(--frame7e291-menu-transitionMs, 260ms);
}

.frame7e291-menu-panel.frame7e291-menu-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform var(--frame7e291-menu-transitionMs, 260ms) ease, opacity var(--frame7e291-menu-transitionMs, 260ms) ease;
}

.frame7e291-menu-title {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frame7e291-text-faint);
  margin: 4px 2px 8px;
}

.frame7e291-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.frame7e291-menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: var(--frame7e291-radius-sm);
  background: rgba(173, 216, 230, 0.06);
  border: 1px solid var(--frame7e291-line);
  font-size: 12.5px;
  color: var(--frame7e291-text);
  min-height: 44px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.frame7e291-menu-link:hover {
  background: rgba(186, 85, 211, 0.16);
  border-color: var(--frame7e291-orchid);
  transform: translateX(2px);
}

.frame7e291-menu-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--frame7e291-teal);
  flex-shrink: 0;
}

.frame7e291-menu-dot.orchid {
  background: var(--frame7e291-orchid);
}

.frame7e291-menu-dot.steel {
  background: var(--frame7e291-steel);
}

/* ============ MAIN ============ */
.frame7e291-main {
  padding: 14px 14px calc(var(--frame7e291-nav-h) + 28px);
}

/* ============ CAROUSEL ============ */
.frame7e291-carousel {
  position: relative;
  border-radius: var(--frame7e291-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  margin-bottom: 16px;
  border: 1px solid var(--frame7e291-line-strong);
}

.frame7e291-carousel-viewport {
  overflow: hidden;
}

.frame7e291-carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.frame7e291-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
}

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

.frame7e291-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 35%, rgba(12, 12, 12, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  gap: 8px;
}

.frame7e291-carousel-eyebrow {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--frame7e291-ice);
  font-weight: 700;
}

.frame7e291-carousel-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.frame7e291-carousel-cta {
  align-self: flex-start;
  background: linear-gradient(95deg, var(--frame7e291-orchid), var(--frame7e291-steel));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(186, 85, 211, 0.45);
}

.frame7e291-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.frame7e291-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.frame7e291-carousel-dot-active {
  background: var(--frame7e291-orchid);
  transform: scale(1.25);
}

/* ============ H1 + INTRO ============ */
.frame7e291-hero-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  margin: 4px 0 10px;
  color: #fff;
  letter-spacing: 0.2px;
}

.frame7e291-hero-title em {
  font-style: normal;
  background: linear-gradient(95deg, var(--frame7e291-ice), var(--frame7e291-orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.frame7e291-intro {
  color: var(--frame7e291-text-dim);
  font-size: 13.5px;
  margin: 0 0 14px;
}

/* ============ QUICK ACTIONS ============ */
.frame7e291-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.frame7e291-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  background: rgba(173, 216, 230, 0.05);
  border: 1px solid var(--frame7e291-line);
  border-radius: var(--frame7e291-radius);
  font-size: 11px;
  color: var(--frame7e291-text);
  text-align: center;
  min-height: 44px;
}

.frame7e291-quick-item:hover {
  background: rgba(95, 158, 160, 0.18);
  border-color: var(--frame7e291-teal);
}

.frame7e291-quick-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame7e291-teal), var(--frame7e291-steel));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.frame7e291-quick-icon svg {
  width: 15px;
  height: 15px;
}

/* ============ SECTION HEADINGS ============ */
.frame7e291-section {
  margin-bottom: 22px;
}

.frame7e291-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.frame7e291-section-bar {
  width: 4px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--frame7e291-teal), var(--frame7e291-orchid));
  flex-shrink: 0;
}

.frame7e291-section-head h2 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.frame7e291-section-sub {
  font-size: 11px;
  color: var(--frame7e291-text-faint);
  margin-top: 2px;
  font-weight: 500;
}

/* ============ GAME CATEGORY ============ */
.frame7e291-cat {
  margin-bottom: 20px;
}

.frame7e291-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--frame7e291-line);
}

.frame7e291-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
}

.frame7e291-cat-pill {
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(186, 85, 211, 0.18);
  color: var(--frame7e291-orchid);
  border: 1px solid rgba(186, 85, 211, 0.35);
}

.frame7e291-cat-pill.teal {
  background: rgba(95, 158, 160, 0.18);
  color: var(--frame7e291-ice);
  border-color: rgba(95, 158, 160, 0.4);
}

.frame7e291-cat-pill.steel {
  background: rgba(70, 130, 180, 0.18);
  color: var(--frame7e291-ice);
  border-color: rgba(70, 130, 180, 0.4);
}

.frame7e291-cat-count {
  font-size: 11px;
  color: var(--frame7e291-text-faint);
}

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

.frame7e291-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 4px 8px;
  background: rgba(26, 31, 43, 0.7);
  border: 1px solid var(--frame7e291-line);
  border-radius: var(--frame7e291-radius-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}

.frame7e291-game:hover {
  transform: translateY(-2px);
  border-color: var(--frame7e291-teal);
  box-shadow: 0 6px 16px rgba(95, 158, 160, 0.28);
}

.frame7e291-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  overflow: hidden;
  background: linear-gradient(135deg, #20283a, #14182a);
  position: relative;
}

.frame7e291-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame7e291-game-name {
  font-size: 10.5px;
  line-height: 1.25;
  color: var(--frame7e291-text-dim);
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 26px;
  word-break: break-word;
}

/* ============ CONTENT MODULES ============ */
.frame7e291-card {
  background: linear-gradient(160deg, rgba(26, 31, 43, 0.9), rgba(16, 22, 32, 0.9));
  border: 1px solid var(--frame7e291-line-strong);
  border-radius: var(--frame7e291-radius);
  padding: 14px;
  margin-bottom: 12px;
}

.frame7e291-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.frame7e291-card p {
  margin: 0 0 8px;
  color: var(--frame7e291-text-dim);
  font-size: 13px;
}

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

.frame7e291-card a {
  color: var(--frame7e291-ice);
  border-bottom: 1px dotted rgba(173, 216, 230, 0.55);
  font-weight: 600;
}

.frame7e291-card a:hover {
  color: #fff;
  border-bottom-color: var(--frame7e291-orchid);
}

/* Promo entry mini buttons inside modules */
.frame7e291-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(95deg, var(--frame7e291-orchid), var(--frame7e291-steel));
  color: #fff;
  margin-top: 4px;
  box-shadow: 0 3px 10px rgba(186, 85, 211, 0.35);
}

.frame7e291-mini-cta.ghost {
  background: rgba(173, 216, 230, 0.1);
  color: var(--frame7e291-ice);
  border: 1px solid var(--frame7e291-line-strong);
  box-shadow: none;
}

/* Security checklist */
.frame7e291-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.frame7e291-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--frame7e291-text-dim);
  padding: 8px 10px;
  background: rgba(95, 158, 160, 0.08);
  border-left: 3px solid var(--frame7e291-teal);
  border-radius: 0 var(--frame7e291-radius-sm) var(--frame7e291-radius-sm) 0;
}

.frame7e291-check-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--frame7e291-teal);
  margin-top: 6px;
  flex-shrink: 0;
}

/* Winners ticker */
.frame7e291-winner-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--frame7e291-line);
}

.frame7e291-winner-row:last-child {
  border-bottom: none;
}

.frame7e291-winner-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--frame7e291-orchid), var(--frame7e291-steel));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.frame7e291-winner-meta {
  flex: 1;
  min-width: 0;
}

.frame7e291-winner-name {
  font-size: 12.5px;
  color: #fff;
  font-weight: 700;
}

.frame7e291-winner-game {
  font-size: 11px;
  color: var(--frame7e291-text-faint);
}

.frame7e291-winner-amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--frame7e291-ice);
  white-space: nowrap;
}

/* Key takeaways */
.frame7e291-takeaway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.frame7e291-takeaway {
  background: rgba(186, 85, 211, 0.08);
  border: 1px solid rgba(186, 85, 211, 0.28);
  border-radius: var(--frame7e291-radius-sm);
  padding: 10px;
}

.frame7e291-takeaway-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--frame7e291-orchid);
  line-height: 1;
}

.frame7e291-takeaway-text {
  font-size: 11.5px;
  color: var(--frame7e291-text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

/* Entity relationship map */
.frame7e291-entity {
  display: grid;
  gap: 8px;
}

.frame7e291-entity-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  background: rgba(173, 216, 230, 0.05);
  border: 1px solid var(--frame7e291-line);
  border-radius: var(--frame7e291-radius-sm);
}

.frame7e291-entity-key {
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--frame7e291-ice);
  font-weight: 700;
}

.frame7e291-entity-val {
  font-size: 12.5px;
  color: var(--frame7e291-text-dim);
}

/* ============ EXTENDED FOOTER ============ */
.frame7e291-ext-footer {
  margin-top: 8px;
  padding: 18px 14px 8px;
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.7), rgba(12, 12, 12, 0.95));
  border-top: 1px solid var(--frame7e291-line-strong);
}

.frame7e291-ext-brand {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.frame7e291-ext-brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--frame7e291-teal), var(--frame7e291-orchid));
  padding: 2px;
  flex-shrink: 0;
}

.frame7e291-ext-brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.frame7e291-ext-brand-text {
  font-size: 12px;
  color: var(--frame7e291-text-dim);
  line-height: 1.5;
}

.frame7e291-ext-brand-text strong {
  color: #fff;
  font-size: 13px;
  display: block;
  margin-bottom: 3px;
}

.frame7e291-ext-block {
  margin-bottom: 14px;
}

.frame7e291-ext-block-title {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--frame7e291-ice);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.frame7e291-ext-block-title::before {
  content: '';
  width: 3px;
  height: 13px;
  background: var(--frame7e291-orchid);
  border-radius: 2px;
}

/* Promo action chips */
.frame7e291-promo-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.frame7e291-promo-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 10px;
  background: linear-gradient(140deg, rgba(186, 85, 211, 0.16), rgba(70, 130, 180, 0.12));
  border: 1px solid rgba(186, 85, 211, 0.3);
  border-radius: var(--frame7e291-radius-sm);
  font-size: 11.5px;
  color: var(--frame7e291-text);
  min-height: 44px;
}

.frame7e291-promo-chip strong {
  font-size: 12.5px;
  color: #fff;
}

.frame7e291-promo-chip span {
  font-size: 10.5px;
  color: var(--frame7e291-text-faint);
}

/* Page directory */
.frame7e291-dir-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.frame7e291-dir-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--frame7e291-radius-sm);
  background: rgba(173, 216, 230, 0.05);
  border: 1px solid var(--frame7e291-line);
  font-size: 11.5px;
  color: var(--frame7e291-text);
  min-height: 40px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.frame7e291-dir-link:hover {
  background: rgba(95, 158, 160, 0.16);
  border-color: var(--frame7e291-teal);
  color: #fff;
}

.frame7e291-dir-tag {
  font-size: 9px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(70, 130, 180, 0.2);
  color: var(--frame7e291-ice);
  flex-shrink: 0;
}

.frame7e291-dir-tag.help {
  background: rgba(186, 85, 211, 0.2);
  color: var(--frame7e291-orchid);
}

.frame7e291-dir-tag.game {
  background: rgba(95, 158, 160, 0.2);
  color: var(--frame7e291-ice);
}

.frame7e291-disclaimer {
  font-size: 10.5px;
  color: var(--frame7e291-text-faint);
  line-height: 1.5;
  padding: 10px;
  background: rgba(173, 216, 230, 0.04);
  border-left: 2px solid var(--frame7e291-slate);
  border-radius: 0 var(--frame7e291-radius-sm) var(--frame7e291-radius-sm) 0;
  margin-top: 4px;
}

/* ============ COMMON FOOTER ============ */
.frame7e291-footer {
  text-align: center;
  padding: 14px 14px calc(var(--frame7e291-nav-h) + 18px);
  font-size: 11px;
  color: var(--frame7e291-text-faint);
  border-top: 1px solid var(--frame7e291-line);
}

.frame7e291-footer-copy {
  margin-bottom: 4px;
}

/* ============ BOTTOM NAV ============ */
.frame7e291-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 70;
  width: calc(100% - 20px);
  max-width: calc(var(--frame7e291-maxw) - 20px);
  height: var(--frame7e291-nav-h);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 6px;
  gap: 4px;
  background: linear-gradient(180deg, rgba(22, 28, 40, 0.97), rgba(14, 14, 14, 0.97));
  border: 1px solid var(--frame7e291-line-strong);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(186, 85, 211, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.frame7e291-nav-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 16px;
  color: var(--frame7e291-text-faint);
  font-size: 9.5px;
  letter-spacing: 0.3px;
  text-align: center;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 44px;
  padding: 4px 2px;
}

.frame7e291-nav-item:hover {
  color: var(--frame7e291-ice);
}

.frame7e291-nav-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.22s ease, background 0.22s ease;
}

.frame7e291-nav-icon svg {
  width: 19px;
  height: 19px;
}

.frame7e291-nav-item-active {
  color: #fff;
}

.frame7e291-nav-item-active .frame7e291-nav-icon {
  background: linear-gradient(135deg, var(--frame7e291-teal), var(--frame7e291-orchid));
  transform: translateY(-1px);
  box-shadow: var(--frame7e291-glow-orchid);
}

/* Bottom marker for active state (under-line indicator) */
.frame7e291-nav-item-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--frame7e291-orchid);
}

/* Promotional nav items get orchid accent on icon ring */
.frame7e291-nav-item-promo .frame7e291-nav-icon {
  background: rgba(186, 85, 211, 0.16);
  color: var(--frame7e291-orchid);
}

.frame7e291-nav-label {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ============ UTILITIES ============ */
.frame7e291-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;
}

.frame7e291-nowrap {
  white-space: nowrap;
}

/* ============ WIDE-SCREEN (preserve mobile canvas) ============ */
@media (min-width: 431px) {
  body {
    background: radial-gradient(circle at 50% -10%, #1a2433 0%, #060606 70%);
  }
  .frame7e291-canvas {
    border-left: 1px solid rgba(173, 216, 230, 0.06);
    border-right: 1px solid rgba(173, 216, 230, 0.06);
  }
}

/* Larger phones nudge grids to fit a 5th tile comfortably in promo areas */
@media (min-width: 375px) {
  .frame7e291-promo-chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .frame7e291-game-name {
    font-size: 11px;
  }
}

@media (max-width: 359px) {
  .frame7e291-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .frame7e291-promo-chips {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .frame7e291-carousel-track {
    transition: none;
  }
}

/* ============ HELP PAGE MODULES ============ */
.frame7e291-help-hero {
  padding: 18px 14px 16px;
  border: 1px solid var(--frame7e291-line-strong);
  border-radius: 0 0 var(--frame7e291-radius-lg) var(--frame7e291-radius-lg);
  background: linear-gradient(145deg, rgba(70, 130, 180, 0.2), rgba(186, 85, 211, 0.13));
  margin: -14px -14px 18px;
}

.frame7e291-help-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(173, 216, 230, 0.12);
  color: var(--frame7e291-ice);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
}

.frame7e291-help-hero h1 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.18;
  color: #fff;
}

.frame7e291-help-hero p {
  margin: 0;
  color: var(--frame7e291-text-dim);
  font-size: 13.5px;
}

.frame7e291-answer-line {
  margin: 0 0 16px;
  padding: 12px 13px;
  border-left: 4px solid var(--frame7e291-teal);
  border-radius: 0 12px 12px 0;
  background: rgba(95, 158, 160, 0.12);
  color: var(--frame7e291-text);
  font-size: 13.5px;
}

.frame7e291-promo-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 11px 12px;
  margin: 10px 0;
  border: 1px solid rgba(186, 85, 211, 0.35);
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(186, 85, 211, 0.17), rgba(70, 130, 180, 0.12));
}

.frame7e291-promo-ribbon strong {
  color: #fff;
  font-size: 12.5px;
}

.frame7e291-promo-ribbon span {
  display: block;
  color: var(--frame7e291-text-faint);
  font-size: 11px;
}

.frame7e291-step-list {
  counter-reset: frame7e291-step;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.frame7e291-step-list li {
  counter-increment: frame7e291-step;
  position: relative;
  padding: 11px 11px 11px 43px;
  border: 1px solid var(--frame7e291-line);
  border-radius: 9px 16px 9px 16px;
  background: rgba(26, 31, 43, 0.78);
  color: var(--frame7e291-text-dim);
  font-size: 12.8px;
}

.frame7e291-step-list li::before {
  content: counter(frame7e291-step, decimal-leading-zero);
  position: absolute;
  left: 11px;
  top: 11px;
  color: var(--frame7e291-orchid);
  font-weight: 900;
  font-size: 13px;
}

.frame7e291-tip-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.frame7e291-tip-tile {
  min-height: 116px;
  padding: 11px;
  border-top: 3px solid var(--frame7e291-steel);
  border-radius: 10px;
  background: rgba(70, 130, 180, 0.11);
}

.frame7e291-tip-tile:nth-child(3n) { border-top-color: var(--frame7e291-orchid); }
.frame7e291-tip-tile:nth-child(3n + 1) { border-top-color: var(--frame7e291-teal); }
.frame7e291-tip-tile h3 { margin: 0 0 5px; color: #fff; font-size: 12.5px; }
.frame7e291-tip-tile p { margin: 0; color: var(--frame7e291-text-dim); font-size: 11.5px; line-height: 1.48; }

.frame7e291-help-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  font-size: 11.5px;
}

.frame7e291-help-table th {
  padding: 5px 8px;
  text-align: left;
  color: var(--frame7e291-ice);
  font-size: 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.frame7e291-help-table td {
  padding: 9px 8px;
  vertical-align: top;
  color: var(--frame7e291-text-dim);
  background: rgba(173, 216, 230, 0.06);
  border-top: 1px solid var(--frame7e291-line);
  border-bottom: 1px solid var(--frame7e291-line);
}

.frame7e291-help-table td:first-child { border-left: 1px solid var(--frame7e291-line); border-radius: 8px 0 0 8px; color: #fff; font-weight: 700; }
.frame7e291-help-table td:last-child { border-right: 1px solid var(--frame7e291-line); border-radius: 0 8px 8px 0; }

.frame7e291-qa-stack { display: grid; gap: 8px; }
.frame7e291-qa-item { padding: 11px 12px; border: 1px solid var(--frame7e291-line); border-radius: 10px; background: rgba(26, 31, 43, .78); }
.frame7e291-qa-item strong { display: block; margin-bottom: 4px; color: var(--frame7e291-ice); font-size: 12.5px; }
.frame7e291-qa-item p { margin: 0; color: var(--frame7e291-text-dim); font-size: 12px; }

.frame7e291-callout {
  padding: 13px;
  border: 1px solid rgba(173, 216, 230, .24);
  border-radius: 18px 8px 18px 8px;
  background: linear-gradient(135deg, rgba(95, 158, 160, .14), rgba(186, 85, 211, .11));
}
.frame7e291-callout h3 { margin: 0 0 6px; color: #fff; font-size: 14px; }
.frame7e291-callout p { margin: 0 0 8px; color: var(--frame7e291-text-dim); font-size: 12.5px; }
.frame7e291-callout p:last-child { margin-bottom: 0; }

@media (max-width: 359px) {
  .frame7e291-tip-board { grid-template-columns: 1fr; }
  .frame7e291-help-table { font-size: 11px; }
  .frame7e291-help-table th, .frame7e291-help-table td { padding-left: 6px; padding-right: 6px; }
}
