/*
 * pwin.homes visual stylesheet
 * Mobile-first casino lobby layout for 320-430px canvases.
 * Every custom class and variable uses the viewe64d3- prefix.
 * Palette: #0A0A0A background, #BF360C accent, #FFF176 highlight text.
 */

:root {
  --viewe64d3-bg: #0A0A0A;
  --viewe64d3-bg-soft: #131313;
  --viewe64d3-bg-card: #1A1A1A;
  --viewe64d3-bg-elev: #222020;
  --viewe64d3-line: #2A2724;
  --viewe64d3-line-soft: #1F1C1A;

  --viewe64d3-accent: #BF360C;
  --viewe64d3-accent-hot: #E84817;
  --viewe64d3-accent-deep: #8A2606;
  --viewe64d3-yellow: #FFF176;
  --viewe64d3-yellow-soft: #FFE98A;
  --viewe64d3-gold: #FFC429;

  --viewe64d3-text: #F6F1DC;
  --viewe64d3-text-strong: #FFFDF2;
  --viewe64d3-muted: #A99F88;
  --viewe64d3-faint: #6E6755;

  --viewe64d3-radius-sm: 8px;
  --viewe64d3-radius: 14px;
  --viewe64d3-radius-lg: 20px;
  --viewe64d3-radius-pill: 999px;

  --viewe64d3-header-h: 56px;
  --viewe64d3-bottom-h: 70px;
  --viewe64d3-canvas: 480px;

  --viewe64d3-shadow-card: 0 6px 20px rgba(0, 0, 0, 0.45);
  --viewe64d3-shadow-float: 0 10px 30px rgba(0, 0, 0, 0.6);
  --viewe64d3-shadow-accent: 0 8px 24px rgba(191, 54, 12, 0.4);

  --viewe64d3-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--viewe64d3-bg);
  color: var(--viewe64d3-text);
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.viewe64d3-body--locked { overflow: hidden; }

a { color: var(--viewe64d3-yellow); text-decoration: none; }
a:hover, a:focus { color: var(--viewe64d3-yellow-soft); }
a:focus-visible { outline: 2px solid var(--viewe64d3-yellow); outline-offset: 2px; border-radius: 4px; }

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

h1, h2, h3, h4 { color: var(--viewe64d3-text-strong); margin: 0; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: 1.55rem; line-height: 1.25; }
h2 { font-size: 1.18rem; line-height: 1.3; }
h3 { font-size: 1rem; line-height: 1.35; }
p { margin: 0 0 0.8rem; }

ul { margin: 0; padding: 0; list-style: none; }

/* Centered mobile canvas that stays compact on wide screens. */
.viewe64d3-canvas {
  width: 100%;
  max-width: var(--viewe64d3-canvas);
  margin: 0 auto;
  position: relative;
  background: var(--viewe64d3-bg);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

/* ============ Top header ============ */
.viewe64d3-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--viewe64d3-header-h);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.92));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--viewe64d3-line);
}

.viewe64d3-header-inner {
  max-width: var(--viewe64d3-canvas);
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.viewe64d3-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  flex-shrink: 0;
}

.viewe64d3-brand-text { min-width: 0; }
.viewe64d3-brand-name {
  color: var(--viewe64d3-text-strong);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}
.viewe64d3-brand-name b { color: var(--viewe64d3-yellow); }
.viewe64d3-brand-tag {
  color: var(--viewe64d3-muted);
  font-size: 0.66rem;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viewe64d3-header-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.viewe64d3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 12px;
  border: none;
  border-radius: var(--viewe64d3-radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.14s var(--viewe64d3-ease), box-shadow 0.14s var(--viewe64d3-ease), background 0.14s var(--viewe64d3-ease);
  font-family: inherit;
}
.viewe64d3-btn:active { transform: scale(0.95); }

.viewe64d3-btn--login {
  background: transparent;
  color: var(--viewe64d3-yellow);
  border: 1px solid var(--viewe64d3-accent);
  padding: 0 10px;
}
.viewe64d3-btn--login:hover { background: rgba(191, 54, 12, 0.18); color: var(--viewe64d3-yellow-soft); }

.viewe64d3-btn--register {
  background: linear-gradient(135deg, var(--viewe64d3-accent-hot), var(--viewe64d3-accent));
  color: #fff;
  box-shadow: var(--viewe64d3-shadow-accent);
}
.viewe64d3-btn--register:hover { box-shadow: 0 10px 28px rgba(232, 72, 23, 0.55); }

.viewe64d3-iconbtn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  color: var(--viewe64d3-yellow);
  cursor: pointer;
  transition: transform 0.14s var(--viewe64d3-ease), background 0.14s var(--viewe64d3-ease);
  flex-shrink: 0;
}
.viewe64d3-iconbtn:hover { background: var(--viewe64d3-bg-elev); }
.viewe64d3-iconbtn:active { transform: scale(0.9); }
.viewe64d3-iconbtn svg { width: 20px; height: 20px; fill: currentColor; }

/* ============ Side drawer menu ============ */
.viewe64d3-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s var(--viewe64d3-ease), visibility 0.24s var(--viewe64d3-ease);
}
.viewe64d3-overlay--visible { opacity: 1; visibility: visible; }

.viewe64d3-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: var(--viewe64d3-bg-soft);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.28s var(--viewe64d3-ease);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--viewe64d3-line);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.55);
}
.viewe64d3-drawer--open { transform: translateX(0); }

.viewe64d3-drawer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--viewe64d3-line);
}
.viewe64d3-drawer-head .viewe64d3-brand-logo { width: 38px; height: 38px; }
.viewe64d3-drawer-head .viewe64d3-brand-name { font-size: 1.15rem; }
.viewe64d3-drawer-close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  color: var(--viewe64d3-text);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.viewe64d3-drawer-body {
  padding: 10px 12px 24px;
  overflow-y: auto;
  flex: 1;
}

.viewe64d3-drawer-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viewe64d3-muted);
  margin: 14px 6px 8px;
}
.viewe64d3-drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--viewe64d3-text);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.16s var(--viewe64d3-ease), border-color 0.16s var(--viewe64d3-ease);
}
.viewe64d3-drawer-link:hover {
  background: var(--viewe64d3-bg-card);
  border-color: var(--viewe64d3-line);
  color: var(--viewe64d3-yellow);
}
.viewe64d3-drawer-link .viewe64d3-drawer-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(191, 54, 12, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--viewe64d3-yellow);
  flex-shrink: 0;
}
.viewe64d3-drawer-link .viewe64d3-drawer-ico svg { width: 16px; height: 16px; fill: currentColor; }

.viewe64d3-drawer-cta {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--viewe64d3-line);
  margin-top: auto;
}
.viewe64d3-drawer-cta .viewe64d3-btn { flex: 1; min-height: 42px; }

/* ============ Page wrapper ============ */
.viewe64d3-main {
  padding-top: calc(var(--viewe64d3-header-h) + 6px);
  padding-bottom: calc(var(--viewe64d3-bottom-h) + 88px);
}

/* ============ Hero carousel ============ */
.viewe64d3-carousel {
  position: relative;
  margin: 8px 10px 14px;
  border-radius: var(--viewe64d3-radius-lg);
  overflow: hidden;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  box-shadow: var(--viewe64d3-shadow-card);
}
.viewe64d3-carousel-viewport { overflow: hidden; }
.viewe64d3-carousel-track {
  display: flex;
  transition: transform 0.5s var(--viewe64d3-ease);
  will-change: transform;
}
.viewe64d3-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
.viewe64d3-slide-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.viewe64d3-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(10,10,10,0.9), rgba(10,10,10,0));
  color: var(--viewe64d3-text-strong);
}
.viewe64d3-slide-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--viewe64d3-yellow);
}
.viewe64d3-slide-sub {
  font-size: 0.74rem;
  color: var(--viewe64d3-text);
  margin: 0;
}
.viewe64d3-slide-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--viewe64d3-accent);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: var(--viewe64d3-radius-pill);
  text-transform: uppercase;
}

.viewe64d3-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.viewe64d3-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 241, 118, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s var(--viewe64d3-ease), background 0.2s var(--viewe64d3-ease);
}
.viewe64d3-carousel-dot--active {
  background: var(--viewe64d3-yellow);
  width: 20px;
  border-radius: var(--viewe64d3-radius-pill);
}

.viewe64d3-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--viewe64d3-line);
  color: var(--viewe64d3-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.16s var(--viewe64d3-ease);
}
.viewe64d3-carousel-arrow:hover { background: rgba(191, 54, 12, 0.85); }
.viewe64d3-carousel-arrow svg { width: 16px; height: 16px; fill: currentColor; }
.viewe64d3-carousel-arrow--prev { left: 8px; }
.viewe64d3-carousel-arrow--next { right: 8px; }

/* ============ Category chips ============ */
.viewe64d3-chips {
  display: flex;
  gap: 8px;
  padding: 4px 10px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.viewe64d3-chips::-webkit-scrollbar { display: none; }
.viewe64d3-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--viewe64d3-radius-pill);
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  color: var(--viewe64d3-text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s var(--viewe64d3-ease), color 0.16s var(--viewe64d3-ease), border-color 0.16s var(--viewe64d3-ease);
}
.viewe64d3-chip svg { width: 14px; height: 14px; fill: var(--viewe64d3-yellow); }
.viewe64d3-chip:hover {
  background: var(--viewe64d3-accent);
  color: #fff;
  border-color: var(--viewe64d3-accent-hot);
}
.viewe64d3-chip:hover svg { fill: #fff; }

/* ============ Section wrapper ============ */
.viewe64d3-section { padding: 18px 12px 6px; }
.viewe64d3-section-head {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}
.viewe64d3-section-head h2 { flex: 1; }
.viewe64d3-section-eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--viewe64d3-accent-hot);
  display: block;
  margin-bottom: 4px;
}
.viewe64d3-section-more {
  font-size: 0.76rem;
  color: var(--viewe64d3-yellow);
  font-weight: 600;
  white-space: nowrap;
}
.viewe64d3-lead {
  color: var(--viewe64d3-text);
  font-size: 0.9rem;
  margin: 0 0 4px;
}
.viewe64d3-lead b { color: var(--viewe64d3-yellow); }

/* ============ Game grid ============ */
.viewe64d3-gamegrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.viewe64d3-game {
  display: flex;
  flex-direction: column;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: inherit;
  transition: transform 0.16s var(--viewe64d3-ease), border-color 0.16s var(--viewe64d3-ease), box-shadow 0.16s var(--viewe64d3-ease);
}
.viewe64d3-game:hover {
  transform: translateY(-2px);
  border-color: var(--viewe64d3-accent);
  box-shadow: 0 8px 18px rgba(191, 54, 12, 0.32);
}
.viewe64d3-game:active { transform: scale(0.97); }
.viewe64d3-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.viewe64d3-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--viewe64d3-ease);
}
.viewe64d3-game:hover .viewe64d3-game-thumb img { transform: scale(1.06); }
.viewe64d3-game-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(191, 54, 12, 0.92);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
}
.viewe64d3-game-name {
  padding: 5px 6px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--viewe64d3-text);
  line-height: 1.25;
  text-align: center;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ Intro band ============ */
.viewe64d3-intro {
  margin: 6px 12px 4px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(191, 54, 12, 0.18), rgba(255, 241, 118, 0.06));
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
}
.viewe64d3-intro h1 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--viewe64d3-text-strong);
}
.viewe64d3-intro h1 b { color: var(--viewe64d3-yellow); }
.viewe64d3-intro p {
  font-size: 0.88rem;
  color: var(--viewe64d3-text);
  margin: 0;
}
.viewe64d3-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.viewe64d3-stat {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--viewe64d3-line);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
}
.viewe64d3-stat-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--viewe64d3-yellow);
  line-height: 1;
}
.viewe64d3-stat-lbl {
  display: block;
  font-size: 0.64rem;
  color: var(--viewe64d3-muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ============ Testimonials ============ */
.viewe64d3-testi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.viewe64d3-testi {
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
  padding: 12px;
}
.viewe64d3-testi-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.viewe64d3-testi-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viewe64d3-accent), var(--viewe64d3-yellow));
  color: #0A0A0A;
  font-weight: 900;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.viewe64d3-testi-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--viewe64d3-text-strong);
  line-height: 1.1;
}
.viewe64d3-testi-meta {
  font-size: 0.66rem;
  color: var(--viewe64d3-muted);
}
.viewe64d3-testi-stars {
  color: var(--viewe64d3-yellow);
  font-size: 0.74rem;
  letter-spacing: 1px;
  margin-left: auto;
}
.viewe64d3-testi-text {
  font-size: 0.78rem;
  color: var(--viewe64d3-text);
  line-height: 1.45;
  margin: 0;
}

/* ============ Tricks ============ */
.viewe64d3-tricks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.viewe64d3-trick {
  display: flex;
  gap: 10px;
  padding: 11px 12px;
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
}
.viewe64d3-trick-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--viewe64d3-accent);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.viewe64d3-trick-body h3 {
  font-size: 0.86rem;
  margin-bottom: 3px;
  color: var(--viewe64d3-yellow);
}
.viewe64d3-trick-body p {
  font-size: 0.78rem;
  color: var(--viewe64d3-text);
  margin: 0;
  line-height: 1.45;
}

/* ============ FAQ ============ */
.viewe64d3-faq {
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
  background: var(--viewe64d3-bg-card);
  margin-bottom: 8px;
  overflow: hidden;
}
.viewe64d3-faq-q {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--viewe64d3-text-strong);
}
.viewe64d3-faq-q .viewe64d3-faq-mark {
  margin-left: auto;
  color: var(--viewe64d3-yellow);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s var(--viewe64d3-ease);
}
.viewe64d3-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s var(--viewe64d3-ease);
  padding: 0 14px;
}
.viewe64d3-faq-answer--open { max-height: 320px; padding-bottom: 12px; }
.viewe64d3-faq-answer p {
  font-size: 0.82rem;
  color: var(--viewe64d3-text);
  margin: 0;
  line-height: 1.5;
}

/* ============ Features ============ */
.viewe64d3-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.viewe64d3-feat {
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius);
  padding: 12px;
}
.viewe64d3-feat-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(191, 54, 12, 0.2);
  color: var(--viewe64d3-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.viewe64d3-feat-ico svg { width: 18px; height: 18px; fill: currentColor; }
.viewe64d3-feat h3 { font-size: 0.88rem; color: var(--viewe64d3-text-strong); margin-bottom: 4px; }
.viewe64d3-feat p { font-size: 0.76rem; color: var(--viewe64d3-text); margin: 0; line-height: 1.45; }

/* ============ Promo strip ============ */
.viewe64d3-promostrip {
  margin: 14px 12px 4px;
  padding: 14px;
  border-radius: var(--viewe64d3-radius);
  background: linear-gradient(135deg, var(--viewe64d3-accent), var(--viewe64d3-accent-deep));
  border: 1px solid var(--viewe64d3-accent-hot);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--viewe64d3-shadow-accent);
}
.viewe64d3-promostrip-text { flex: 1; min-width: 0; }
.viewe64d3-promostrip-text h3 {
  color: var(--viewe64d3-yellow);
  font-size: 0.96rem;
  margin-bottom: 3px;
}
.viewe64d3-promostrip-text p {
  color: #fff;
  font-size: 0.76rem;
  margin: 0;
  opacity: 0.92;
}
.viewe64d3-promostrip .viewe64d3-btn {
  background: var(--viewe64d3-yellow);
  color: var(--viewe64d3-bg);
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 16px;
  font-weight: 900;
}
.viewe64d3-promostrip .viewe64d3-btn:hover { background: #fff; }

/* ============ Extended footer ============ */
.viewe64d3-extfoot {
  margin: 20px 12px 6px;
  background: var(--viewe64d3-bg-soft);
  border: 1px solid var(--viewe64d3-line);
  border-radius: var(--viewe64d3-radius-lg);
  overflow: hidden;
}
.viewe64d3-extfoot-block { padding: 14px 14px 6px; border-bottom: 1px solid var(--viewe64d3-line-soft); }
.viewe64d3-extfoot-block:last-child { border-bottom: none; }
.viewe64d3-extfoot-title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viewe64d3-yellow);
  margin-bottom: 10px;
}
.viewe64d3-extfoot-title small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--viewe64d3-muted);
  margin-top: 2px;
}
.viewe64d3-extfoot-brand p {
  font-size: 0.8rem;
  color: var(--viewe64d3-text);
  line-height: 1.55;
  margin: 0 0 10px;
}
.viewe64d3-extfoot-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}
.viewe64d3-extfoot-links a {
  font-size: 0.78rem;
  color: var(--viewe64d3-text);
  padding: 3px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.viewe64d3-extfoot-links a::before {
  content: "›";
  color: var(--viewe64d3-accent-hot);
  font-weight: 900;
}
.viewe64d3-extfoot-links a:hover { color: var(--viewe64d3-yellow); }

.viewe64d3-extfoot-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.viewe64d3-extfoot-promo {
  background: var(--viewe64d3-bg-card);
  border: 1px solid var(--viewe64d3-line);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--viewe64d3-text-strong);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.16s var(--viewe64d3-ease), transform 0.16s var(--viewe64d3-ease);
}
.viewe64d3-extfoot-promo:hover { background: var(--viewe64d3-bg-elev); transform: translateY(-1px); }
.viewe64d3-extfoot-promo svg { width: 16px; height: 16px; fill: var(--viewe64d3-yellow); flex-shrink: 0; }
.viewe64d3-extfoot-promo small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--viewe64d3-muted);
  margin-top: 2px;
}

.viewe64d3-extfoot-disclaimer {
  font-size: 0.72rem;
  color: var(--viewe64d3-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============ Common footer ============ */
.viewe64d3-footer {
  padding: 16px 14px calc(var(--viewe64d3-bottom-h) + 24px);
  text-align: center;
  border-top: 1px solid var(--viewe64d3-line);
  margin-top: 14px;
}
.viewe64d3-footer-copy {
  font-size: 0.72rem;
  color: var(--viewe64d3-muted);
  margin: 0 0 6px;
}
.viewe64d3-footer-note {
  font-size: 0.66rem;
  color: var(--viewe64d3-faint);
  margin: 0;
  line-height: 1.5;
}

/* ============ Bottom navigation (center raised) ============ */
.viewe64d3-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(5, 5, 5, 0.99));
  border-top: 1px solid var(--viewe64d3-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.viewe64d3-bottom-inner {
  max-width: var(--viewe64d3-canvas);
  margin: 0 auto;
  height: var(--viewe64d3-bottom-h);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 4px;
  position: relative;
}
.viewe64d3-navitem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 8px 2px 6px;
  color: var(--viewe64d3-muted);
  font-size: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  position: relative;
  min-height: 44px;
  transition: color 0.18s var(--viewe64d3-ease);
}
.viewe64d3-navitem svg { width: 22px; height: 22px; fill: currentColor; transition: transform 0.18s var(--viewe64d3-ease); }
.viewe64d3-navitem:hover { color: var(--viewe64d3-yellow); }
.viewe64d3-navitem:hover svg { transform: scale(0.9); }
.viewe64d3-navitem--active { color: var(--viewe64d3-yellow); }
.viewe64d3-navitem--active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--viewe64d3-yellow);
}

/* Raised central CTA */
.viewe64d3-navraise {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 6px;
  min-height: 44px;
}
.viewe64d3-navraise-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viewe64d3-accent-hot), var(--viewe64d3-accent));
  border: 3px solid var(--viewe64d3-bg);
  box-shadow: 0 6px 18px rgba(191, 54, 12, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  margin-top: -22px;
  transition: transform 0.18s var(--viewe64d3-ease), box-shadow 0.18s var(--viewe64d3-ease);
  position: relative;
}
.viewe64d3-navraise-btn svg { width: 24px; height: 24px; fill: currentColor; }
.viewe64d3-navraise-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 241, 118, 0.3);
  animation: viewe64d3Pulse 2.4s var(--viewe64d3-ease) infinite;
}
.viewe64d3-navraise-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 72, 23, 0.7); }
.viewe64d3-navraise-btn:active { transform: scale(0.94); }
.viewe64d3-navraise-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--viewe64d3-yellow);
  margin-top: 4px;
}

@keyframes viewe64d3Pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ============ Back to top ============ */
.viewe64d3-top-btn {
  position: fixed;
  right: 14px;
  bottom: calc(var(--viewe64d3-bottom-h) + 18px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--viewe64d3-bg-elev);
  border: 1px solid var(--viewe64d3-accent);
  color: var(--viewe64d3-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s var(--viewe64d3-ease), transform 0.22s var(--viewe64d3-ease), visibility 0.22s var(--viewe64d3-ease);
  box-shadow: var(--viewe64d3-shadow-float);
}
.viewe64d3-top-btn--visible { opacity: 1; visibility: visible; transform: translateY(0); }
.viewe64d3-top-btn svg { width: 20px; height: 20px; fill: currentColor; }

/* ============ Helpers ============ */
.viewe64d3-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;
}

/* ============ Responsive fine-tuning ============ */
@media (min-width: 360px) {
  .viewe64d3-game-name { font-size: 0.72rem; }
  .viewe64d3-slide-title { font-size: 1.08rem; }
}

@media (min-width: 393px) {
  body { font-size: 15.5px; }
  .viewe64d3-gamegrid { gap: 9px; }
  .viewe64d3-intro h1 { font-size: 1.55rem; }
  .viewe64d3-section { padding: 20px 14px 6px; }
  .viewe64d3-carousel { margin: 10px 14px 14px; }
}

@media (min-width: 414px) {
  .viewe64d3-gamegrid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .viewe64d3-testi-row { grid-template-columns: repeat(3, 1fr); }
  .viewe64d3-extfoot-promos { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 430px) {
  .viewe64d3-feats { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Help page reading layouts ============ */
.viewe64d3-help-main { padding-top: calc(var(--viewe64d3-header-h) + 12px); padding-bottom: calc(var(--viewe64d3-bottom-h) + 70px); }
.viewe64d3-help-hero { margin: 10px 12px 14px; padding: 18px 16px; border-left: 4px solid var(--viewe64d3-yellow); background: linear-gradient(145deg, rgba(191,54,12,.24), rgba(34,32,32,.94)); border-radius: 4px 16px 16px 4px; }
.viewe64d3-help-hero h1 { margin-bottom: 8px; }
.viewe64d3-help-hero p { margin: 0; color: var(--viewe64d3-text); font-size: .91rem; }
.viewe64d3-answer { margin: 0 12px 14px; padding: 13px 14px; border: 1px solid var(--viewe64d3-accent); background: rgba(191,54,12,.12); border-radius: 10px; }
.viewe64d3-answer strong { color: var(--viewe64d3-yellow); }
.viewe64d3-reading { padding: 4px 12px; }
.viewe64d3-reading section { margin: 0 0 22px; }
.viewe64d3-reading h2 { padding: 10px 0 8px; border-bottom: 1px solid var(--viewe64d3-line); }
.viewe64d3-reading h3 { margin: 14px 0 5px; color: var(--viewe64d3-yellow); }
.viewe64d3-reading p { color: var(--viewe64d3-text); font-size: .9rem; }
.viewe64d3-reading ul, .viewe64d3-reading ol { margin: 8px 0 12px 20px; padding: 0; color: var(--viewe64d3-text); }
.viewe64d3-reading li { margin: 6px 0; padding-left: 3px; }
.viewe64d3-reading li::marker { color: var(--viewe64d3-yellow); font-weight: 800; }
.viewe64d3-step-list { counter-reset: helpstep; list-style: none !important; margin-left: 0 !important; }
.viewe64d3-step-list li { counter-increment: helpstep; display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: start; margin: 10px 0; }
.viewe64d3-step-list li::before { content: counter(helpstep); width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; background: var(--viewe64d3-accent); color: #fff; font: 800 .78rem/1 "Consolas", monospace; }
.viewe64d3-callout { padding: 12px; border: 1px dashed var(--viewe64d3-accent-hot); border-radius: 10px; background: var(--viewe64d3-bg-card); }
.viewe64d3-callout p:last-child { margin-bottom: 0; }
.viewe64d3-checklist { display: grid; gap: 8px; margin: 10px 0 0 !important; list-style: none !important; }
.viewe64d3-checklist li { margin: 0; padding: 10px 11px; background: var(--viewe64d3-bg-card); border: 1px solid var(--viewe64d3-line); border-radius: 8px; }
.viewe64d3-checklist li::before { content: "✓"; color: var(--viewe64d3-yellow); font-weight: 900; margin-right: 7px; }
.viewe64d3-promo-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
.viewe64d3-promo-row .viewe64d3-btn { min-height: 44px; }
.viewe64d3-tip-grid { display: grid; gap: 9px; }
.viewe64d3-tip-card { padding: 12px; border-top: 3px solid var(--viewe64d3-accent); border-radius: 5px 5px 12px 12px; background: var(--viewe64d3-bg-card); }
.viewe64d3-tip-card h3 { margin-top: 0; }
.viewe64d3-tip-card p { margin-bottom: 0; font-size: .84rem; }
.viewe64d3-compare { overflow-x: auto; border: 1px solid var(--viewe64d3-line); border-radius: 9px; margin: 12px 0; }
.viewe64d3-compare table { width: 100%; min-width: 360px; border-collapse: collapse; font-size: .78rem; }
.viewe64d3-compare th, .viewe64d3-compare td { text-align: left; padding: 9px; border-bottom: 1px solid var(--viewe64d3-line); vertical-align: top; }
.viewe64d3-compare th { color: var(--viewe64d3-yellow); background: var(--viewe64d3-bg-elev); }
.viewe64d3-compare tr:last-child td { border-bottom: 0; }
.viewe64d3-faq-stack { display: grid; gap: 8px; }
.viewe64d3-faq-stack details { padding: 10px 12px; border: 1px solid var(--viewe64d3-line); border-radius: 9px; background: var(--viewe64d3-bg-card); }
.viewe64d3-faq-stack summary { cursor: pointer; color: var(--viewe64d3-yellow); font-weight: 800; min-height: 24px; }
.viewe64d3-faq-stack details p { margin: 8px 0 0; font-size: .84rem; }

/* Honor reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .viewe64d3-carousel-track { transition: none; }
}
