@charset "UTF-8";
/*!
 * Progressive jackpot - shared mobile canvas styles
 * File: css/visuals-dynamic-f74372.css
 *
 * All custom classes and CSS variables use the frame74372- prefix.
 * Designed for a 320-430px phone canvas; on wide screens the canvas
 * stays centered and is not expanded into a desktop layout.
 * Comments are English only.
 */

/* ------------------------------------------------------------------ *
 * Design tokens
 * ------------------------------------------------------------------ */
:root {
  --frame74372-bg: #2D2D2D;
  --frame74372-bg-deep: #1d1b22;
  --frame74372-bg-side: #161418;
  --frame74372-surface: #352f40;
  --frame74372-surface-2: #3e3651;
  --frame74372-surface-3: #2a2533;
  --frame74372-border: rgba(186, 85, 211, 0.28);
  --frame74372-border-soft: rgba(230, 230, 250, 0.10);
  --frame74372-border-gold: rgba(255, 215, 0, 0.40);
  --frame74372-text: #F8F9FA;
  --frame74372-text-soft: #E6E6FA;
  --frame74372-text-muted: rgba(230, 230, 250, 0.62);
  --frame74372-text-faint: rgba(230, 230, 250, 0.42);
  --frame74372-gold: #FFD700;
  --frame74372-gold-deep: #e6a900;
  --frame74372-orchid: #BA55D3;
  --frame74372-violet: #8A2BE2;
  --frame74372-grad-purple: linear-gradient(135deg, #8A2BE2 0%, #BA55D3 100%);
  --frame74372-grad-gold: linear-gradient(135deg, #FFD700 0%, #ff9d00 100%);
  --frame74372-grad-surface: linear-gradient(160deg, #3e3651 0%, #2a2533 100%);
  --frame74372-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --frame74372-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.35);
  --frame74372-radius: 16px;
  --frame74372-radius-md: 12px;
  --frame74372-radius-sm: 9px;
  --frame74372-header-h: 58px;
  --frame74372-bottom-h: 66px;
  --frame74372-maxw: 430px;
  --frame74372-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, "Noto Sans", sans-serif;
  background: var(--frame74372-bg-side);
  color: var(--frame74372-text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--frame74372-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------ *
 * Phone canvas wrapper
 * ------------------------------------------------------------------ */
.frame74372-page {
  position: relative;
  max-width: var(--frame74372-maxw);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 50% -120px, rgba(138, 43, 226, 0.30), transparent 70%),
    radial-gradient(700px 420px at 110% 8%, rgba(186, 85, 211, 0.18), transparent 70%),
    var(--frame74372-bg);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.frame74372-container {
  width: 100%;
  max-width: var(--frame74372-maxw);
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px;
}

/* ------------------------------------------------------------------ *
 * Header (centered identity bar)
 * ------------------------------------------------------------------ */
.frame74372-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: rgba(29, 27, 34, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--frame74372-border-soft);
  transition: background 0.35s var(--frame74372-ease), border-color 0.35s var(--frame74372-ease), box-shadow 0.35s var(--frame74372-ease);
}
.frame74372-header--scrolled {
  background: rgba(20, 18, 24, 0.95);
  border-bottom-color: var(--frame74372-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.frame74372-header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  min-height: var(--frame74372-header-h);
  padding: 7px 12px;
}

.frame74372-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.frame74372-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--frame74372-border-gold);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.22);
  background: #000;
}
.frame74372-brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
  background: var(--frame74372-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--frame74372-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.frame74372-brand-name small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  -webkit-text-fill-color: var(--frame74372-text-muted);
  color: var(--frame74372-text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

.frame74372-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
}

.frame74372-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--frame74372-ease), box-shadow 0.25s var(--frame74372-ease), background 0.3s var(--frame74372-ease), color 0.3s var(--frame74372-ease), border-color 0.3s var(--frame74372-ease);
  white-space: nowrap;
  text-align: center;
}
.frame74372-btn:active { transform: translateY(1px) scale(0.99); }

.frame74372-btn--register {
  background: var(--frame74372-grad-gold);
  color: #2a1d00;
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.32);
}
.frame74372-btn--register:hover { box-shadow: 0 9px 22px rgba(255, 165, 0, 0.45); }

.frame74372-btn--login {
  background: transparent;
  color: var(--frame74372-text-soft);
  border: 1px solid var(--frame74372-border);
}
.frame74372-btn--login:hover {
  border-color: var(--frame74372-orchid);
  color: var(--frame74372-text);
  background: rgba(186, 85, 211, 0.14);
}

.frame74372-menu-toggle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame74372-border-soft);
  color: var(--frame74372-text-soft);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s var(--frame74372-ease), border-color 0.3s var(--frame74372-ease), color 0.3s var(--frame74372-ease);
}
.frame74372-menu-toggle:hover,
.frame74372-menu-toggle--active {
  border-color: var(--frame74372-orchid);
  color: var(--frame74372-gold);
  background: rgba(186, 85, 211, 0.16);
}
.frame74372-menu-toggle svg { width: 20px; height: 20px; display: block; }

/* ------------------------------------------------------------------ *
 * Layered dropdown menu
 * ------------------------------------------------------------------ */
.frame74372-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 59;
  background: linear-gradient(180deg, rgba(35, 30, 44, 0.98) 0%, rgba(25, 22, 30, 0.98) 100%);
  border-bottom: 1px solid var(--frame74372-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  padding: 10px 14px 16px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--frame74372-ease), opacity 0.3s var(--frame74372-ease), visibility 0.3s var(--frame74372-ease);
  max-height: calc(100vh - var(--frame74372-header-h));
  overflow-y: auto;
}
.frame74372-dropdown--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.frame74372-dropdown-group { margin-top: 12px; }
.frame74372-dropdown-group + .frame74372-dropdown-group {
  border-top: 1px solid var(--frame74372-border-soft);
  padding-top: 12px;
}
.frame74372-dropdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frame74372-gold);
  margin: 4px 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame74372-dropdown-label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--frame74372-grad-gold);
  border-radius: 2px;
}
.frame74372-dropdown-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.frame74372-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--frame74372-border-soft);
  color: var(--frame74372-text-soft);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.28s var(--frame74372-ease), border-color 0.28s var(--frame74372-ease), color 0.28s var(--frame74372-ease), transform 0.28s var(--frame74372-ease);
}
.frame74372-dropdown-item:hover {
  background: rgba(186, 85, 211, 0.16);
  border-color: var(--frame74372-orchid);
  color: var(--frame74372-text);
  transform: translateX(2px);
}
.frame74372-dropdown-item--cta {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--frame74372-grad-purple);
  color: var(--frame74372-text);
  border-color: transparent;
}
.frame74372-dropdown-item--cta:hover {
  background: linear-gradient(135deg, #9b3fe8 0%, #c86dde 100%);
  color: var(--frame74372-gold);
}

/* ------------------------------------------------------------------ *
 * Main content area
 * ------------------------------------------------------------------ */
.frame74372-main {
  position: relative;
  padding-bottom: calc(var(--frame74372-bottom-h) + 28px);
}

/* ------------------------------------------------------------------ *
 * Hero carousel
 * ------------------------------------------------------------------ */
.frame74372-carousel {
  position: relative;
  margin: 14px 0 6px;
  border-radius: var(--frame74372-radius);
  overflow: hidden;
  box-shadow: var(--frame74372-shadow);
  background: var(--frame74372-surface-3);
}
.frame74372-carousel-track {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.frame74372-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.6s var(--frame74372-ease), transform 0.7s var(--frame74372-ease), visibility 0.6s var(--frame74372-ease);
}
.frame74372-carousel-slide--active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.frame74372-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame74372-carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, rgba(20, 18, 24, 0) 30%, rgba(20, 18, 24, 0.88) 100%);
  color: var(--frame74372-text);
}
.frame74372-carousel-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--frame74372-gold);
  margin-bottom: 4px;
}
.frame74372-carousel-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
.frame74372-carousel-slide .frame74372-btn {
  align-self: flex-start;
  min-height: 40px;
  padding: 0 18px;
}

.frame74372-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 18, 24, 0.65);
  color: var(--frame74372-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.28s var(--frame74372-ease), color 0.28s var(--frame74372-ease);
}
.frame74372-carousel-arrow:hover { background: var(--frame74372-violet); color: var(--frame74372-gold); }
.frame74372-carousel-arrow svg { width: 18px; height: 18px; }
.frame74372-carousel-arrow--prev { left: 8px; }
.frame74372-carousel-arrow--next { right: 8px; }

.frame74372-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.frame74372-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 249, 250, 0.4);
  border: none;
  transition: width 0.3s var(--frame74372-ease), background 0.3s var(--frame74372-ease);
}
.frame74372-carousel-dot--active {
  width: 22px;
  border-radius: 999px;
  background: var(--frame74372-gold);
}

/* ------------------------------------------------------------------ *
 * Quick stats strip
 * ------------------------------------------------------------------ */
.frame74372-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 4px;
}
.frame74372-stat {
  background: var(--frame74372-grad-surface);
  border: 1px solid var(--frame74372-border-soft);
  border-radius: var(--frame74372-radius-md);
  padding: 11px 8px;
  text-align: center;
}
.frame74372-stat-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--frame74372-gold);
  line-height: 1.1;
}
.frame74372-stat-label {
  font-size: 10.5px;
  color: var(--frame74372-text-muted);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

/* ------------------------------------------------------------------ *
 * Section heading
 * ------------------------------------------------------------------ */
.frame74372-section { margin: 26px 0 6px; }
.frame74372-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 2px;
}
.frame74372-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--frame74372-text);
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.2;
}
.frame74372-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 3px;
  background: var(--frame74372-grad-gold);
  flex: 0 0 auto;
}
.frame74372-section-title em {
  font-style: normal;
  color: var(--frame74372-gold);
}
.frame74372-section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--frame74372-orchid);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.28s var(--frame74372-ease);
}
.frame74372-section-link:hover { color: var(--frame74372-gold); }
.frame74372-section-desc {
  font-size: 13px;
  color: var(--frame74372-text-muted);
  margin: -4px 2px 12px;
  line-height: 1.55;
}

/* ------------------------------------------------------------------ *
 * Game grid (compact mobile grid)
 * ------------------------------------------------------------------ */
.frame74372-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.frame74372-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 7px 5px 8px;
  border-radius: var(--frame74372-radius-md);
  background: var(--frame74372-grad-surface);
  border: 1px solid var(--frame74372-border-soft);
  text-align: center;
  min-height: 44px;
  transition: transform 0.25s var(--frame74372-ease), border-color 0.25s var(--frame74372-ease), box-shadow 0.25s var(--frame74372-ease), background 0.25s var(--frame74372-ease);
  overflow: hidden;
}
.frame74372-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--frame74372-gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.frame74372-game-card:hover .frame74372-game-img {
  transform: scale(1.06);
}
.frame74372-game-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame74372-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--frame74372-ease);
}
.frame74372-game-name {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--frame74372-text-soft);
  line-height: 1.25;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

/* Wider 5th column appears on roomier phone widths */
@media (min-width: 375px) {
  .frame74372-game-grid { grid-template-columns: repeat(5, 1fr); }
  .frame74372-game-name { font-size: 11px; }
}

/* ------------------------------------------------------------------ *
 * Content modules (supplementary homepage regions)
 * ------------------------------------------------------------------ */
.frame74372-module {
  margin: 22px 0 4px;
  background: var(--frame74372-grad-surface);
  border: 1px solid var(--frame74372-border-soft);
  border-radius: var(--frame74372-radius);
  padding: 18px 16px;
  box-shadow: var(--frame74372-shadow-soft);
}
.frame74372-module-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.frame74372-module-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 43, 226, 0.22);
  border: 1px solid var(--frame74372-border);
  color: var(--frame74372-gold);
}
.frame74372-module-icon svg { width: 20px; height: 20px; }
.frame74372-module-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--frame74372-text);
  line-height: 1.25;
}
.frame74372-module-title em {
  font-style: normal;
  color: var(--frame74372-gold);
}
.frame74372-module p {
  color: var(--frame74372-text-soft);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.frame74372-module p:last-child { margin-bottom: 0; }
.frame74372-module strong { color: var(--frame74372-text); font-weight: 700; }
.frame74372-module a {
  color: var(--frame74372-gold);
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.4);
  transition: color 0.25s var(--frame74372-ease), border-color 0.25s var(--frame74372-ease);
}
.frame74372-module a:hover { color: var(--frame74372-orchid); border-bottom-color: var(--frame74372-orchid); }

/* Module variant: action row */
.frame74372-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.frame74372-action-row .frame74372-btn { width: 100%; min-height: 42px; padding: 0 10px; font-size: 13px; }
.frame74372-action-row .frame74372-btn--register { background: var(--frame74372-grad-gold); color: #2a1d00; }
.frame74372-action-row .frame74372-btn--ghost {
  background: transparent;
  color: var(--frame74372-text-soft);
  border: 1px solid var(--frame74372-border);
}
.frame74372-action-row .frame74372-btn--ghost:hover { border-color: var(--frame74372-gold); color: var(--frame74372-gold); }

/* App download module */
.frame74372-app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--frame74372-radius-md);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--frame74372-border-soft);
  margin-top: 12px;
}
.frame74372-app-qr {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 10px;
  background:
    repeating-linear-gradient(45deg, #fff 0 6px, #1f1c26 6px 12px),
    #fff;
  border: 2px solid var(--frame74372-gold);
  position: relative;
}
.frame74372-app-qr::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 4px solid #1f1c26;
  border-radius: 4px;
  background:
    linear-gradient(#fff, #fff) center / 14px 14px no-repeat,
    #fff;
}
.frame74372-app-body { flex: 1 1 auto; min-width: 0; }
.frame74372-app-body p { margin: 0 0 8px; font-size: 12.5px; color: var(--frame74372-text-muted); }
.frame74372-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.frame74372-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(186, 85, 211, 0.16);
  color: var(--frame74372-text-soft);
  border: 1px solid var(--frame74372-border-soft);
}

/* Payment methods */
.frame74372-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.frame74372-pay-chip {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--frame74372-border-soft);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--frame74372-text-soft);
  transition: border-color 0.28s var(--frame74372-ease), color 0.28s var(--frame74372-ease), transform 0.28s var(--frame74372-ease);
}
.frame74372-pay-chip:hover {
  border-color: var(--frame74372-gold);
  color: var(--frame74372-gold);
  transform: translateY(-2px);
}
.frame74372-pay-chip span { display: block; font-size: 10px; color: var(--frame74372-text-muted); font-weight: 600; margin-top: 2px; }

/* Winners list */
.frame74372-winner-list { margin-top: 6px; }
.frame74372-winner {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  border-bottom: 1px dashed var(--frame74372-border-soft);
}
.frame74372-winner:last-child { border-bottom: none; }
.frame74372-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--frame74372-grad-purple);
  color: var(--frame74372-gold);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.frame74372-winner-meta { min-width: 0; }
.frame74372-winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--frame74372-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.frame74372-winner-game { font-size: 11.5px; color: var(--frame74372-text-muted); }
.frame74372-winner-amount {
  font-size: 14px;
  font-weight: 800;
  color: var(--frame74372-gold);
  text-align: right;
  white-space: nowrap;
}
.frame74372-winner-amount small { display: block; font-size: 10px; color: var(--frame74372-text-muted); font-weight: 600; }

/* Testimonials */
.frame74372-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 400px) {
  .frame74372-testi-grid { grid-template-columns: 1fr 1fr; }
}
.frame74372-testi {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--frame74372-border-soft);
  border-radius: var(--frame74372-radius-md);
  padding: 12px;
}
.frame74372-testi-stars { color: var(--frame74372-gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
.frame74372-testi-text { font-size: 12.5px; color: var(--frame74372-text-soft); line-height: 1.55; margin-bottom: 8px; }
.frame74372-testi-author { font-size: 11.5px; font-weight: 700; color: var(--frame74372-orchid); }

/* Checklist grid */
.frame74372-check-list { margin-top: 6px; }
.frame74372-check-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 8px 2px;
  border-bottom: 1px dashed var(--frame74372-border-soft);
  font-size: 13px;
  color: var(--frame74372-text-soft);
}
.frame74372-check-item:last-child { border-bottom: none; }
.frame74372-check-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--frame74372-grad-gold);
  color: #2a1d00;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Compact feature cards */
.frame74372-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 10px;
}
.frame74372-mini-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--frame74372-border-soft);
  border-radius: var(--frame74372-radius-md);
  padding: 12px;
  transition: border-color 0.28s var(--frame74372-ease), transform 0.28s var(--frame74372-ease);
}
.frame74372-mini-card:hover { border-color: var(--frame74372-orchid); transform: translateY(-2px); }
.frame74372-mini-card-title { font-size: 13px; font-weight: 800; color: var(--frame74372-gold); margin-bottom: 4px; }
.frame74372-mini-card-text { font-size: 12px; color: var(--frame74372-text-muted); line-height: 1.5; }

/* ------------------------------------------------------------------ *
 * Inline CTA banner
 * ------------------------------------------------------------------ */
.frame74372-cta-banner {
  margin: 22px 0 4px;
  padding: 18px 16px;
  border-radius: var(--frame74372-radius);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(138, 43, 226, 0.55), transparent 60%),
    radial-gradient(120% 140% at 100% 100%, rgba(255, 215, 0, 0.30), transparent 60%),
    #2a1d3a;
  border: 1px solid var(--frame74372-border-gold);
  box-shadow: var(--frame74372-shadow);
  text-align: center;
}
.frame74372-cta-banner h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--frame74372-text);
  margin-bottom: 6px;
}
.frame74372-cta-banner p { font-size: 13px; color: var(--frame74372-text-soft); margin-bottom: 14px; }
.frame74372-cta-banner .frame74372-btn { min-height: 44px; padding: 0 22px; font-size: 14px; }

/* ------------------------------------------------------------------ *
 * Extended site footer (homepage only)
 * ------------------------------------------------------------------ */
.frame74372-site-footer {
  margin: 28px 0 6px;
  background: linear-gradient(180deg, #28232f 0%, #1b1820 100%);
  border-top: 1px solid var(--frame74372-border);
  padding: 22px 0 18px;
}
.frame74372-footer-block { padding: 0 14px; margin-bottom: 22px; }
.frame74372-footer-block:last-child { margin-bottom: 0; }
.frame74372-footer-block-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--frame74372-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame74372-footer-block-title::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--frame74372-grad-gold);
  border-radius: 2px;
}

.frame74372-footer-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.frame74372-footer-promo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  min-height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--frame74372-border-soft);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--frame74372-text-soft);
  transition: background 0.28s var(--frame74372-ease), border-color 0.28s var(--frame74372-ease), color 0.28s var(--frame74372-ease);
}
.frame74372-footer-promo:hover {
  background: rgba(186, 85, 211, 0.18);
  border-color: var(--frame74372-gold);
  color: var(--frame74372-gold);
}
.frame74372-footer-promo svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--frame74372-orchid); }

.frame74372-footer-brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--frame74372-radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--frame74372-border-soft);
  margin-bottom: 10px;
}
.frame74372-footer-brand-card img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--frame74372-border-gold);
  object-fit: cover;
  flex: 0 0 auto;
}
.frame74372-footer-brand-card p { font-size: 12.5px; color: var(--frame74372-text-muted); line-height: 1.55; margin: 0; }

.frame74372-footer-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.frame74372-footer-directory a {
  font-size: 12px;
  font-weight: 600;
  color: var(--frame74372-text-soft);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--frame74372-border-soft);
  transition: background 0.25s var(--frame74372-ease), color 0.25s var(--frame74372-ease);
  line-height: 1.3;
}
.frame74372-footer-directory a:hover { background: rgba(186, 85, 211, 0.16); color: var(--frame74372-gold); }

.frame74372-footer-disclaimer {
  font-size: 11.5px;
  color: var(--frame74372-text-faint);
  line-height: 1.6;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed var(--frame74372-border-soft);
}

/* ------------------------------------------------------------------ *
 * Common footer (copyright bar, above bottom nav)
 * ------------------------------------------------------------------ */
.frame74372-copyright {
  text-align: center;
  padding: 14px 16px 10px;
  font-size: 11.5px;
  color: var(--frame74372-text-faint);
  line-height: 1.6;
  border-top: 1px solid var(--frame74372-border-soft);
}

/* ------------------------------------------------------------------ *
 * Bottom navigation (outlined functional bar)
 * ------------------------------------------------------------------ */
.frame74372-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--frame74372-maxw);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  background: rgba(20, 18, 24, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--frame74372-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.frame74372-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 2px 8px;
  min-height: var(--frame74372-bottom-h);
  color: var(--frame74372-text-muted);
  position: relative;
  transition: color 0.3s var(--frame74372-ease), background 0.3s var(--frame74372-ease);
}
.frame74372-bottom-nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 26px;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: var(--frame74372-grad-gold);
  transition: transform 0.32s var(--frame74372-ease);
}
.frame74372-bottom-nav-item:hover { color: var(--frame74372-text-soft); }
.frame74372-bottom-nav-item:hover .frame74372-bottom-nav-icon {
  transform: translateY(-1px);
}
.frame74372-bottom-nav-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--frame74372-ease), color 0.3s var(--frame74372-ease);
}
.frame74372-bottom-nav-icon svg { width: 22px; height: 22px; }
.frame74372-bottom-nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: color 0.3s var(--frame74372-ease);
}
/* Active state: emphasis on the label (per nav direction) */
.frame74372-bottom-nav-item--active {
  color: var(--frame74372-gold);
}
.frame74372-bottom-nav-item--active::before { transform: translateX(-50%) scaleX(1); }
.frame74372-bottom-nav-item--active .frame74372-bottom-nav-label {
  color: var(--frame74372-gold);
  font-weight: 800;
}
.frame74372-bottom-nav-item--active .frame74372-bottom-nav-icon { color: var(--frame74372-gold); }

/* Promo items get a subtle violet tint to feel like action buttons */
.frame74372-bottom-nav-item--promo .frame74372-bottom-nav-icon {
  color: var(--frame74372-orchid);
}
.frame74372-bottom-nav-item--promo:hover .frame74372-bottom-nav-icon { color: var(--frame74372-gold); }

/* ------------------------------------------------------------------ *
 * Back-to-top floating button
 * ------------------------------------------------------------------ */
.frame74372-to-top {
  position: fixed;
  right: 14px;
  bottom: calc(var(--frame74372-bottom-h) + 16px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--frame74372-grad-purple);
  color: var(--frame74372-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 55;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--frame74372-ease), visibility 0.3s var(--frame74372-ease), transform 0.3s var(--frame74372-ease), background 0.3s var(--frame74372-ease);
}
.frame74372-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.frame74372-to-top:hover { background: linear-gradient(135deg, #9b3fe8 0%, #c86dde 100%); }
.frame74372-to-top svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------------ *
 * Helpers
 * ------------------------------------------------------------------ */
.frame74372-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;
}
.frame74372-prose { font-size: 13.5px; color: var(--frame74372-text-soft); line-height: 1.65; }
.frame74372-prose p { margin-bottom: 10px; }
.frame74372-prose strong { color: var(--frame74372-text); font-weight: 700; }

/* ------------------------------------------------------------------ *
 * Reduced motion
 * ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ *
 * Help page reading patterns
 * ------------------------------------------------------------------ */
.frame74372-help-hero {
  margin: 16px 0 10px;
  padding: 22px 18px;
  border-left: 3px solid var(--frame74372-gold);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(42, 37, 51, 0.92));
  border-radius: 4px var(--frame74372-radius) var(--frame74372-radius) 4px;
}
.frame74372-help-hero h1 { font-size: 24px; line-height: 1.15; margin-bottom: 9px; }
.frame74372-help-hero p { color: var(--frame74372-text-soft); font-size: 14px; }
.frame74372-guide-rail { position: relative; margin: 14px 0 4px; padding-left: 23px; }
.frame74372-guide-rail::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--frame74372-border-gold); }
.frame74372-guide-step { position: relative; padding: 0 0 17px 14px; }
.frame74372-guide-step::before { content: ""; position: absolute; left: -21px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--frame74372-gold); box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12); }
.frame74372-guide-step h3 { color: var(--frame74372-gold); font-size: 14px; margin-bottom: 4px; }
.frame74372-guide-step p { color: var(--frame74372-text-soft); font-size: 13px; line-height: 1.6; }
.frame74372-branch-grid { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 10px; }
.frame74372-branch { padding: 12px; border: 1px solid var(--frame74372-border-soft); border-radius: 10px; background: rgba(0,0,0,.2); }
.frame74372-branch strong { display: block; color: var(--frame74372-gold); font-size: 13px; margin-bottom: 4px; }
.frame74372-branch p { color: var(--frame74372-text-muted); font-size: 12.5px; }
.frame74372-faq-list { margin-top: 10px; }
.frame74372-faq-item { border-bottom: 1px solid var(--frame74372-border-soft); padding: 13px 0; }
.frame74372-faq-item:first-child { border-top: 1px solid var(--frame74372-border-soft); }
.frame74372-faq-item summary { cursor: pointer; list-style: none; color: var(--frame74372-text); font-weight: 800; font-size: 14px; padding-right: 20px; position: relative; }
.frame74372-faq-item summary::-webkit-details-marker { display: none; }
.frame74372-faq-item summary::after { content: "+"; position: absolute; right: 0; color: var(--frame74372-gold); font-size: 19px; line-height: 1; }
.frame74372-faq-item[open] summary::after { content: "−"; }
.frame74372-faq-item p { margin-top: 8px; color: var(--frame74372-text-soft); font-size: 13px; line-height: 1.65; }
.frame74372-faq-index { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.frame74372-faq-index a { padding: 10px; border: 1px solid var(--frame74372-border-soft); border-radius: 9px; color: var(--frame74372-text-soft); font-size: 12px; font-weight: 700; background: rgba(255,255,255,.03); }
.frame74372-faq-index a:hover { color: var(--frame74372-gold); border-color: var(--frame74372-gold); }

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