/* ============================================================
 * melbet partner - mobile-first styles
 * Prefix: v59c-
 * Canvas: 320-430px. Centered phone canvas on wider screens.
 * Palette: #3A3A3A (dark bg) / #E0E0E0 (light text) /
 *          #CC99FF (purple accent) / #F8F8FF (soft light) /
 *          #D8BFD8 (lilac)
 * ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --v59c-bg-dark: #3A3A3A;
  --v59c-bg-darker: #2c2c2c;
  --v59c-bg-card: #424242;
  --v59c-text-light: #E0E0E0;
  --v59c-text-soft: #F8F8FF;
  --v59c-accent: #CC99FF;
  --v59c-accent-deep: #a966e0;
  --v59c-lilac: #D8BFD8;
  --v59c-gold: #e6c98a;
  --v59c-line: rgba(224, 224, 224, 0.12);
  --v59c-line-strong: rgba(204, 153, 255, 0.45);
  --v59c-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --v59c-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.28);
  --v59c-radius-lg: 18px;
  --v59c-radius-md: 14px;
  --v59c-radius-sm: 10px;
  --v59c-radius-pill: 999px;
  --v59c-gap: 12px;
  --v59c-header-h: 58px;
  --v59c-bottom-h: 64px;
  --v59c-canvas: 460px;
}

/* ---------- Reset (scoped) ---------- */
.v59c-page *,
.v59c-page *::before,
.v59c-page *::after { box-sizing: border-box; }

.v59c-page {
  margin: 0;
  padding: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--v59c-bg-dark);
  color: var(--v59c-text-light);
  line-height: 1.55;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.v59c-page img { max-width: 100%; display: block; }
.v59c-page a { color: var(--v59c-accent); text-decoration: none; }
.v59c-page a:hover, .v59c-page a:focus { color: var(--v59c-text-soft); text-decoration: underline; }
.v59c-page button { font-family: inherit; cursor: pointer; }
.v59c-page ul, .v59c-page ol { padding-left: 1.15em; margin: 0 0 12px; }
.v59c-page h1, .v59c-page h2, .v59c-page h3, .v59c-page h4 {
  color: var(--v59c-text-soft);
  margin: 0 0 8px;
  line-height: 1.32;
  font-weight: 700;
}

/* Phone canvas frame on wider screens */
.v59c-frame {
  max-width: var(--v59c-canvas);
  margin: 0 auto;
  background:
    radial-gradient(120% 60% at 50% -8%, rgba(204, 153, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #3f3f3f 0%, #353535 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--v59c-shadow);
  overflow-x: hidden;
}

/* ---------- Skip link ---------- */
.v59c-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--v59c-accent);
  color: #1c1326;
  padding: 8px 14px;
  border-radius: 0 0 var(--v59c-radius-sm) 0;
  z-index: 200;
  font-weight: 700;
}
.v59c-skip:focus { left: 0; }

/* ============================================================
 * HEADER
 * ============================================================ */
.v59c-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--v59c-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: linear-gradient(180deg, rgba(60, 44, 75, 0.97), rgba(46, 36, 58, 0.97));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--v59c-line-strong);
}

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

.v59c-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1.5px solid var(--v59c-accent);
  background: var(--v59c-bg-darker);
  box-shadow: 0 0 0 3px rgba(204, 153, 255, 0.15);
  flex-shrink: 0;
}

.v59c-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.v59c-brand-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--v59c-text-soft);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v59c-brand-tag {
  font-size: 10.5px;
  color: var(--v59c-lilac);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.v59c-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--v59c-line);
  color: var(--v59c-text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
}
.v59c-icon-btn:hover, .v59c-icon-btn:focus { background: rgba(204, 153, 255, 0.18); }
.v59c-icon-btn--active { background: rgba(204, 153, 255, 0.28); border-color: var(--v59c-accent); }
.v59c-icon-btn:active { transform: scale(0.94); }

.v59c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--v59c-radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.v59c-btn:active { transform: scale(0.96); }
.v59c-btn--login {
  background: transparent;
  color: var(--v59c-text-soft);
  border-color: var(--v59c-line-strong);
  padding: 0 12px;
}
.v59c-btn--login:hover { background: rgba(255, 255, 255, 0.06); }
.v59c-btn--register {
  background: linear-gradient(135deg, var(--v59c-accent) 0%, var(--v59c-accent-deep) 100%);
  color: #1c1326;
  box-shadow: 0 6px 14px rgba(169, 102, 224, 0.35);
}

/* ============================================================
 * EXPANDABLE NAVIGATION PANEL
 * ============================================================ */
.v59c-nav-panel {
  position: fixed;
  top: var(--v59c-header-h);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(46, 36, 58, 0.98), rgba(35, 28, 45, 0.98));
  border-bottom: 1px solid var(--v59c-line-strong);
  padding: 12px 12px 16px;
  max-height: 0;
  overflow: hidden;
  z-index: 89;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease;
}
.v59c-nav-panel--open {
  max-height: 75vh;
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
  box-shadow: var(--v59c-shadow);
}

.v59c-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.v59c-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  color: var(--v59c-text-light);
  font-size: 13.5px;
  font-weight: 600;
  min-height: 44px;
}
.v59c-nav-link:hover {
  background: rgba(204, 153, 255, 0.14);
  border-color: var(--v59c-line-strong);
  color: var(--v59c-text-soft);
  text-decoration: none;
}
.v59c-nav-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 153, 255, 0.2);
  color: var(--v59c-accent);
  font-size: 15px;
  flex-shrink: 0;
}

.v59c-nav-promo {
  margin-top: 10px;
  padding: 12px;
  border-radius: var(--v59c-radius-md);
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.22), rgba(216, 191, 216, 0.16));
  border: 1px solid var(--v59c-line-strong);
}
.v59c-nav-promo p {
  margin: 0 0 8px;
  font-size: 12.5px;
  color: var(--v59c-text-soft);
}
.v59c-nav-promo .v59c-btn { width: 100%; }

.v59c-body--menu-open { overflow: hidden; }

/* ============================================================
 * HERO CAROUSEL
 * ============================================================ */
.v59c-hero {
  position: relative;
  margin: 12px 0 4px;
  padding: 0 12px;
}
.v59c-hero-viewport {
  position: relative;
  border-radius: var(--v59c-radius-lg);
  overflow: hidden;
  box-shadow: var(--v59c-shadow);
  background: var(--v59c-bg-darker);
}
.v59c-hero-track {
  display: flex;
  transition: transform var(--carousel-transition, 0.48s) ease;
  will-change: transform;
}
.v59c-hero-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
.v59c-hero-slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.v59c-hero-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: var(--v59c-text-soft);
}
.v59c-hero-cap h2 {
  margin: 0 0 2px;
  font-size: 17px;
  color: var(--v59c-text-soft);
}
.v59c-hero-cap p {
  margin: 0;
  font-size: 12.5px;
  color: var(--v59c-lilac);
}
.v59c-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 4;
}
.v59c-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  transition: background 0.15s, width 0.15s;
}
.v59c-hero-dot--active {
  background: var(--v59c-accent);
  width: 18px;
  border-radius: 6px;
}

/* Hero arrows (optional) */
.v59c-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: var(--v59c-text-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-size: 16px;
}
.v59c-hero-arrow--prev { left: 8px; }
.v59c-hero-arrow--next { right: 8px; }
.v59c-hero-arrow:active { transform: translateY(-50%) scale(0.92); }

/* ============================================================
 * MAIN LAYOUT
 * ============================================================ */
.v59c-main {
  padding: 8px 12px 110px;
}
.v59c-section {
  margin: 18px 0 0;
}
.v59c-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.v59c-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--v59c-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.v59c-section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--v59c-accent), var(--v59c-accent-deep));
  border-radius: 2px;
  display: inline-block;
}
.v59c-section-more {
  font-size: 12px;
  color: var(--v59c-accent);
  font-weight: 600;
}

/* H1 hero text */
.v59c-h1 {
  font-size: 20px;
  line-height: 1.3;
  margin: 12px 0 6px;
  color: var(--v59c-text-soft);
}
.v59c-h1 .v59c-accent { color: var(--v59c-accent); }

.v59c-intro {
  font-size: 13.5px;
  color: var(--v59c-text-light);
  margin: 0 0 12px;
  opacity: 0.92;
}

/* Quick promo CTA strip */
.v59c-cta-strip {
  display: flex;
  gap: 8px;
  margin: 6px 0 14px;
}
.v59c-cta-strip .v59c-btn { flex: 1; }

/* ============================================================
 * CATEGORY CHIPS
 * ============================================================ */
.v59c-cat-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.v59c-cat-chips::-webkit-scrollbar { display: none; }
.v59c-cat-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: var(--v59c-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--v59c-line);
  color: var(--v59c-text-light);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.v59c-cat-chip:hover {
  background: rgba(204, 153, 255, 0.14);
  border-color: var(--v59c-line-strong);
  text-decoration: none;
}
.v59c-cat-chip--active {
  background: linear-gradient(135deg, var(--v59c-accent), var(--v59c-accent-deep));
  color: #1c1326;
  border-color: transparent;
}
.v59c-cat-chip:active { transform: scale(0.96); }

/* ============================================================
 * GAME GRID
 * ============================================================ */
.v59c-cat-block { margin-top: 18px; }
.v59c-cat-title {
  font-size: 15px;
  font-weight: 800;
  margin: 4px 0 10px;
  color: var(--v59c-text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.v59c-cat-title .v59c-tag {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: var(--v59c-radius-pill);
  background: rgba(204, 153, 255, 0.18);
  color: var(--v59c-accent);
  font-weight: 700;
}

.v59c-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .v59c-game-grid { gap: 9px; }
}
@media (min-width: 400px) {
  .v59c-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.v59c-game-card {
  display: block;
  background: var(--v59c-bg-card);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.v59c-game-card:hover {
  border-color: var(--v59c-line-strong);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
  text-decoration: none;
}
.v59c-game-card:active { transform: scale(0.95); }

.v59c-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #555, #2f2f2f);
}
.v59c-game-name {
  font-size: 11px;
  color: var(--v59c-text-light);
  padding: 5px 4px 6px;
  line-height: 1.25;
  font-weight: 600;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
 * INFO CARDS / FEATURES
 * ============================================================ */
.v59c-card {
  background: var(--v59c-bg-card);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  padding: 14px;
  box-shadow: var(--v59c-shadow-soft);
}
.v59c-card + .v59c-card { margin-top: 12px; }
.v59c-card h3 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--v59c-text-soft);
}

/* Feature tile grid */
.v59c-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.v59c-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  padding: 12px;
  text-align: center;
  transition: transform 0.12s, background 0.15s;
}
.v59c-tile:hover { background: rgba(204, 153, 255, 0.12); }
.v59c-tile:active { transform: scale(0.96); }
.v59c-tile-ico {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.3), rgba(216, 191, 216, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--v59c-accent);
}
.v59c-tile h4 {
  margin: 0 0 4px;
  font-size: 13.5px;
  color: var(--v59c-text-soft);
}
.v59c-tile p {
  margin: 0;
  font-size: 11.8px;
  color: var(--v59c-text-light);
  opacity: 0.86;
}

/* Winners strip */
.v59c-winner-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.v59c-winner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  padding: 8px 10px;
}
.v59c-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v59c-accent), var(--v59c-lilac));
  color: #1c1326;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.v59c-winner-meta { flex: 1; min-width: 0; }
.v59c-winner-meta .nm { display: block; font-size: 13px; font-weight: 700; color: var(--v59c-text-soft); }
.v59c-winner-meta .gm { display: block; font-size: 11px; color: var(--v59c-lilac); }
.v59c-winner-amount {
  font-weight: 800;
  font-size: 13px;
  color: var(--v59c-gold);
  white-space: nowrap;
}

/* Security badges row */
.v59c-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.v59c-badge {
  flex: 1 1 calc(50% - 8px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-sm);
  padding: 8px 10px;
  font-size: 12px;
  color: var(--v59c-text-light);
}
.v59c-badge-ico { font-size: 16px; color: var(--v59c-accent); }

/* FAQ accordion */
.v59c-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.v59c-faq-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--v59c-text-soft);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  min-height: 44px;
}
.v59c-faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(204, 153, 255, 0.22);
  color: var(--v59c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.v59c-faq-item--open .v59c-faq-toggle { transform: rotate(45deg); }
.v59c-faq-body {
  padding: 0 14px;
  max-height: 0;
  overflow: hidden;
  color: var(--v59c-text-light);
  font-size: 13px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.v59c-faq-item--open .v59c-faq-body {
  max-height: 320px;
  padding: 0 14px 14px;
}

/* Article / paragraph text */
.v59c-prose p { margin: 0 0 10px; font-size: 13.5px; color: var(--v59c-text-light); }
.v59c-prose strong { color: var(--v59c-text-soft); }
.v59c-prose a { font-weight: 600; }

/* ============================================================
 * EXTENDED FOOTER (homepage only)
 * ============================================================ */
.v59c-foot-ext {
  margin-top: 22px;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, rgba(60, 44, 75, 0.55), rgba(35, 28, 45, 0.85));
  border-top: 1px solid var(--v59c-line-strong);
  border-bottom: 1px solid var(--v59c-line);
}
.v59c-foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.v59c-foot-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1.5px solid var(--v59c-accent);
}
.v59c-foot-brand .nm { font-weight: 800; color: var(--v59c-text-soft); font-size: 14.5px; }
.v59c-foot-brand .ds { font-size: 11.5px; color: var(--v59c-lilac); }

.v59c-foot-block { margin-top: 12px; }
.v59c-foot-block h4 {
  font-size: 13px;
  color: var(--v59c-accent);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.v59c-foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.v59c-foot-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--v59c-line);
  border-radius: var(--v59c-radius-sm);
  font-size: 12px;
  color: var(--v59c-text-light);
  min-height: 36px;
  width: 100%;
}
.v59c-foot-list li a:hover { background: rgba(204, 153, 255, 0.14); color: var(--v59c-text-soft); text-decoration: none; }

.v59c-foot-promo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.v59c-foot-promo button, .v59c-foot-promo a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--v59c-radius-sm);
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.22), rgba(216, 191, 216, 0.16));
  border: 1px solid var(--v59c-line-strong);
  color: var(--v59c-text-soft);
  font-size: 12px;
  font-weight: 700;
  min-height: 40px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s;
}
.v59c-foot-promo button:active, .v59c-foot-promo a:active { transform: scale(0.96); }

.v59c-foot-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--v59c-radius-sm);
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--v59c-accent);
  font-size: 11.5px;
  color: var(--v59c-lilac);
}

/* ============================================================
 * COMMON FOOTER (copyright bar)
 * ============================================================ */
.v59c-foot {
  padding: 10px 14px 8px;
  text-align: center;
  font-size: 11.5px;
  color: var(--v59c-lilac);
  border-top: 1px solid var(--v59c-line);
}

/* ============================================================
 * BOTTOM NAVIGATION (5 buttons, layered)
 * ============================================================ */
.v59c-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.v59c-bottom-inner {
  pointer-events: auto;
  width: 100%;
  max-width: var(--v59c-canvas);
  height: var(--v59c-bottom-h);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(50, 40, 62, 0.98), rgba(32, 26, 42, 0.98));
  border-top: 1px solid var(--v59c-line-strong);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.35);
  padding: 0 4px;
  backdrop-filter: blur(8px);
}

.v59c-bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: none;
  color: var(--v59c-text-light);
  font-size: 10.5px;
  font-weight: 600;
  padding: 6px 2px 4px;
  min-height: 44px;
  position: relative;
  transition: color 0.15s, transform 0.12s;
  text-decoration: none;
  cursor: pointer;
}
.v59c-bottom-btn:active { transform: scale(0.92); }
.v59c-bottom-btn:hover { color: var(--v59c-text-soft); text-decoration: none; }

.v59c-bottom-ico-wrap {
  width: 34px;
  height: 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.18s ease, transform 0.18s ease;
  font-size: 17px;
}
.v59c-bottom-btn--active .v59c-bottom-ico-wrap {
  background: linear-gradient(135deg, var(--v59c-accent), var(--v59c-accent-deep));
  color: #1c1326;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 10px rgba(169, 102, 224, 0.42);
}
.v59c-bottom-btn--active { color: var(--v59c-text-soft); }

/* Promo-1 emphasized middle button */
.v59c-bottom-btn--promo1 .v59c-bottom-ico-wrap {
  background: linear-gradient(135deg, rgba(204, 153, 255, 0.18), rgba(216, 191, 216, 0.12));
  color: var(--v59c-accent);
  border: 1px solid var(--v59c-line-strong);
}

/* ============================================================
 * BACK TO TOP
 * ============================================================ */
.v59c-top-btn {
  position: fixed;
  right: 14px;
  bottom: calc(var(--v59c-bottom-h) + 12px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v59c-accent), var(--v59c-accent-deep));
  color: #1c1326;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.v59c-top-btn--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.v59c-top-btn:active { transform: scale(0.92); }

/* ============================================================
 * UTILITIES
 * ============================================================ */
.v59c-container { padding: 0 12px; }
.v59c-row { display: flex; align-items: center; gap: 8px; }
.v59c-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;
}
.v59c-divider {
  height: 1px;
  background: var(--v59c-line);
  margin: 14px 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .v59c-hero-track { transition: none !important; }
  * { scroll-behavior: auto !important; }
}
