/* ============================================================
   nnph pagcor - Mobile-first gaming shell stylesheet
   Prefix: view33a79-
   Palette: #FFC0CB | #3A3A3A | #FAFAFA | #DEB887 | #A0522D | #BAE1FF
   Direction: minimal action band header, expandable menu,
              floating docked bottom bar, containerized icon
              tiles, contrast-invert active state, soft transitions.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --view33a79-bg-deep: #2a2723;
  --view33a79-bg-dark: #3a3a3a;
  --view33a79-bg-card: #43403a;
  --view33a79-bg-elev: #4d4842;
  --view33a79-sienna: #a0522d;
  --view33a79-sienna-deep: #7e3f22;
  --view33a79-pink: #ffc0cb;
  --view33a79-pink-soft: #ffd9e0;
  --view33a79-pink-deep: #e89aa6;
  --view33a79-cream: #fafafa;
  --view33a79-gold: #deb887;
  --view33a79-gold-deep: #c69d6a;
  --view33a79-sky: #bae1ff;
  --view33a79-sky-deep: #8fc7ef;
  --view33a79-ink: #1f1d1a;
  --view33a79-muted: #b9b2a8;
  --view33a79-line: rgba(250, 250, 250, 0.12);
  --view33a79-line-strong: rgba(250, 250, 250, 0.22);
  --view33a79-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --view33a79-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.22);
  --view33a79-radius-sm: 8px;
  --view33a79-radius: 14px;
  --view33a79-radius-lg: 20px;
  --view33a79-radius-pill: 999px;
  --view33a79-ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --view33a79-header-h: 58px;
  --view33a79-nav-h: 70px;
  --view33a79-canvas: 480px;
  --view33a79-gutter: 14px;
}

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

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

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

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

a {
  color: var(--view33a79-pink);
  text-decoration: none;
  transition: color var(--view33a79-ease);
}

a:hover,
a:focus {
  color: var(--view33a79-pink-soft);
}

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

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

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

:focus-visible {
  outline: 2px solid var(--view33a79-sky);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Mobile canvas frame ---------- */
.view33a79-shell {
  max-width: var(--view33a79-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(900px 360px at 50% -40px, rgba(255, 192, 203, 0.18), transparent 60%),
    radial-gradient(620px 320px at 100% 8%, rgba(186, 225, 255, 0.10), transparent 65%),
    linear-gradient(180deg, var(--view33a79-bg-dark) 0%, var(--view33a79-bg-deep) 38%, var(--view33a79-bg-deep) 100%);
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
  padding-bottom: calc(var(--view33a79-nav-h) + 22px);
}

/* ============================================================
   Header - minimal title action band
   ============================================================ */
.view33a79-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--view33a79-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 var(--view33a79-gutter);
  background: linear-gradient(180deg, rgba(31, 29, 26, 0.98), rgba(58, 58, 58, 0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--view33a79-line);
}

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

.view33a79-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-gold));
  padding: 2px;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.35);
  flex-shrink: 0;
}

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

.view33a79-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--view33a79-cream);
  white-space: nowrap;
}

.view33a79-brand-tag {
  font-size: 10px;
  color: var(--view33a79-gold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.view33a79-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--view33a79-radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform var(--view33a79-ease), background var(--view33a79-ease),
    color var(--view33a79-ease), box-shadow var(--view33a79-ease);
  white-space: nowrap;
}

.view33a79-btn:active {
  transform: scale(0.96);
}

.view33a79-btn-login {
  background: transparent;
  color: var(--view33a79-cream);
  border: 1.5px solid var(--view33a79-line-strong);
}

.view33a79-btn-login:hover {
  border-color: var(--view33a79-gold);
  color: var(--view33a79-gold);
}

.view33a79-btn-register {
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-pink-deep));
  color: var(--view33a79-ink);
  box-shadow: 0 6px 14px rgba(232, 154, 166, 0.35);
}

.view33a79-btn-register:hover {
  color: var(--view33a79-ink);
  box-shadow: 0 8px 18px rgba(232, 154, 166, 0.5);
}

.view33a79-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--view33a79-bg-elev);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--view33a79-line);
  color: var(--view33a79-cream);
  transition: background var(--view33a79-ease), color var(--view33a79-ease);
}

.view33a79-menu-btn:hover {
  background: var(--view33a79-sienna);
  color: var(--view33a79-cream);
}

.view33a79-menu-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   Expandable navigation panel
   ============================================================ */
.view33a79-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: linear-gradient(180deg, var(--view33a79-bg-dark), var(--view33a79-bg-deep));
  border-left: 1px solid var(--view33a79-line);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 90;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}

.view33a79-menu[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
}

.view33a79-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--view33a79-gutter);
  border-bottom: 1px solid var(--view33a79-line);
}

.view33a79-menu-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--view33a79-gold);
}

.view33a79-menu-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--view33a79-bg-elev);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view33a79-cream);
  font-size: 20px;
  line-height: 1;
}

.view33a79-menu-close:hover {
  background: var(--view33a79-sienna);
}

.view33a79-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px var(--view33a79-gutter) 24px;
}

.view33a79-menu-section {
  margin-top: 16px;
}

.view33a79-menu-section-title {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view33a79-muted);
  margin-bottom: 8px;
  padding: 0 4px;
}

.view33a79-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--view33a79-cream);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--view33a79-ease), color var(--view33a79-ease),
    padding-left var(--view33a79-ease);
}

.view33a79-menu-link:hover {
  background: var(--view33a79-bg-elev);
  color: var(--view33a79-pink);
  padding-left: 16px;
}

.view33a79-menu-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--view33a79-gold);
  flex-shrink: 0;
}

.view33a79-menu-link[data-current="true"] {
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.18), rgba(222, 184, 135, 0.12));
  color: var(--view33a79-pink);
}

.view33a79-menu-cta {
  margin: 18px 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.view33a79-menu-cta .view33a79-btn {
  width: 100%;
  min-height: 44px;
}

.view33a79-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
  z-index: 80;
}

.view33a79-menu-backdrop[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   Page main layout
   ============================================================ */
.view33a79-main {
  padding: 0 0 8px;
}

.view33a79-section {
  padding: 26px var(--view33a79-gutter) 6px;
}

.view33a79-section-narrow {
  padding-top: 18px;
}

.view33a79-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--view33a79-gold);
  margin-bottom: 8px;
}

.view33a79-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--view33a79-pink), transparent);
  border-radius: 2px;
}

.view33a79-h1 {
  font-size: 26px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--view33a79-cream);
  margin-bottom: 10px;
}

.view33a79-h2 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--view33a79-cream);
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
}

.view33a79-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--view33a79-pink), var(--view33a79-gold));
}

.view33a79-h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--view33a79-sky);
  margin: 14px 0 6px;
}

.view33a79-lead {
  font-size: 14.5px;
  color: var(--view33a79-muted);
  margin-bottom: 12px;
}

.view33a79-p {
  font-size: 14.2px;
  color: #d8d2c8;
  margin-bottom: 10px;
}

.view33a79-p b,
.view33a79-p strong {
  color: var(--view33a79-gold);
  font-weight: 700;
}

/* ============================================================
   Hero carousel
   ============================================================ */
.view33a79-hero {
  padding: 14px var(--view33a79-gutter) 4px;
}

.view33a79-carousel {
  position: relative;
  border-radius: var(--view33a79-radius-lg);
  overflow: hidden;
  box-shadow: var(--view33a79-shadow);
  background: var(--view33a79-bg-card);
}

.view33a79-carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.view33a79-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  cursor: pointer;
}

.view33a79-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.view33a79-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 29, 26, 0.05) 35%, rgba(31, 29, 26, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  color: var(--view33a79-cream);
}

.view33a79-slide-title {
  font-size: 17px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  margin-bottom: 3px;
}

.view33a79-slide-sub {
  font-size: 12.5px;
  color: var(--view33a79-pink-soft);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.view33a79-carousel-dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.view33a79-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.45);
  transition: background var(--view33a79-ease), width var(--view33a79-ease);
  cursor: pointer;
  padding: 0;
}

.view33a79-dot[data-active="true"] {
  width: 20px;
  border-radius: 4px;
  background: var(--view33a79-pink);
}

.view33a79-hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.view33a79-hero-cta .view33a79-btn {
  flex: 1;
  min-height: 44px;
}

.view33a79-btn-gold {
  background: linear-gradient(135deg, var(--view33a79-gold), var(--view33a79-gold-deep));
  color: var(--view33a79-ink);
  box-shadow: 0 6px 14px rgba(198, 157, 106, 0.35);
}

.view33a79-btn-gold:hover {
  color: var(--view33a79-ink);
}

/* ============================================================
   Quick stat strip
   ============================================================ */
.view33a79-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 0;
}

.view33a79-stat {
  background: linear-gradient(180deg, var(--view33a79-bg-card), var(--view33a79-bg-elev));
  border: 1px solid var(--view33a79-line);
  border-radius: var(--view33a79-radius);
  padding: 12px 8px;
  text-align: center;
}

.view33a79-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--view33a79-pink);
  line-height: 1.1;
}

.view33a79-stat-label {
  font-size: 10.5px;
  color: var(--view33a79-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================================
   Game area
   ============================================================ */
.view33a79-game-block {
  padding: 22px var(--view33a79-gutter) 4px;
}

.view33a79-game-block + .view33a79-game-block {
  padding-top: 8px;
}

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

.view33a79-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--view33a79-sienna), var(--view33a79-sienna-deep));
  color: var(--view33a79-pink);
  flex-shrink: 0;
}

.view33a79-cat-icon svg {
  width: 20px;
  height: 20px;
}

.view33a79-cat-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--view33a79-cream);
}

.view33a79-cat-desc {
  font-size: 12.5px;
  color: var(--view33a79-muted);
  margin-top: 1px;
}

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

.view33a79-game {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--view33a79-bg-card);
  border: 1px solid var(--view33a79-line);
  border-radius: var(--view33a79-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--view33a79-ease), border-color var(--view33a79-ease),
    box-shadow var(--view33a79-ease);
  text-align: center;
}

.view33a79-game:hover {
  transform: translateY(-3px);
  border-color: var(--view33a79-pink);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
}

.view33a79-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--view33a79-bg-elev);
  display: block;
}

.view33a79-game-name {
  font-size: 10.8px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--view33a79-cream);
  padding: 5px 4px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 30px;
}

/* ============================================================
   Content modules
   ============================================================ */
.view33a79-card {
  background: linear-gradient(180deg, var(--view33a79-bg-card), rgba(67, 64, 58, 0.7));
  border: 1px solid var(--view33a79-line);
  border-radius: var(--view33a79-radius-lg);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--view33a79-shadow-soft);
}

.view33a79-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--view33a79-cream);
  margin-bottom: 8px;
}

.view33a79-card p {
  font-size: 13.6px;
  color: #d6d0c6;
  margin-bottom: 8px;
}

/* Promotions compact list */
.view33a79-promo-list {
  display: grid;
  gap: 10px;
}

.view33a79-promo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
  transition: transform var(--view33a79-ease), border-color var(--view33a79-ease);
  cursor: pointer;
}

.view33a79-promo-item:hover {
  border-color: var(--view33a79-gold);
  transform: translateX(3px);
}

.view33a79-promo-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--view33a79-ink);
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-gold));
  flex-shrink: 0;
}

.view33a79-promo-body {
  flex: 1;
  min-width: 0;
}

.view33a79-promo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--view33a79-cream);
}

.view33a79-promo-meta {
  font-size: 11.5px;
  color: var(--view33a79-muted);
  margin-top: 1px;
}

.view33a79-promo-arrow {
  color: var(--view33a79-pink);
  font-size: 18px;
  font-weight: 700;
}

/* Play styles comparison */
.view33a79-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.view33a79-style {
  padding: 12px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
}

.view33a79-style-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--view33a79-sky);
  margin-bottom: 4px;
}

.view33a79-style-note {
  font-size: 12px;
  color: var(--view33a79-muted);
  line-height: 1.45;
}

/* Tricks list */
.view33a79-tricks {
  display: grid;
  gap: 8px;
}

.view33a79-trick {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
}

.view33a79-trick-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-pink-deep));
  color: var(--view33a79-ink);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view33a79-trick-text {
  font-size: 13px;
  color: #d6d0c6;
  line-height: 1.5;
}

/* RTP analysis bars */
.view33a79-rtp-row {
  margin-bottom: 10px;
}

.view33a79-rtp-head {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 4px;
}

.view33a79-rtp-name {
  color: var(--view33a79-cream);
  font-weight: 600;
}

.view33a79-rtp-val {
  color: var(--view33a79-gold);
  font-weight: 700;
}

.view33a79-rtp-bar {
  height: 7px;
  border-radius: 4px;
  background: var(--view33a79-bg-elev);
  overflow: hidden;
}

.view33a79-rtp-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--view33a79-pink), var(--view33a79-gold));
}

/* Selection guide rows */
.view33a79-sel {
  display: grid;
  gap: 8px;
}

.view33a79-sel-row {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
}

.view33a79-sel-goal {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--view33a79-ink);
  background: linear-gradient(135deg, var(--view33a79-sky), var(--view33a79-sky-deep));
  padding: 4px 9px;
  border-radius: var(--view33a79-radius-pill);
  align-self: flex-start;
  white-space: nowrap;
}

.view33a79-sel-tip {
  font-size: 12.8px;
  color: #d6d0c6;
  line-height: 1.5;
}

/* Requirements checklist */
.view33a79-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.view33a79-req {
  padding: 11px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
}

.view33a79-req-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--view33a79-pink);
  margin-bottom: 3px;
}

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

/* Pill link row */
.view33a79-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.view33a79-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--view33a79-radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
  color: var(--view33a79-cream);
  transition: background var(--view33a79-ease), color var(--view33a79-ease),
    border-color var(--view33a79-ease);
}

.view33a79-pill:hover {
  background: var(--view33a79-sienna);
  color: var(--view33a79-cream);
  border-color: var(--view33a79-sienna);
}

.view33a79-pill-promo {
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-pink-deep));
  color: var(--view33a79-ink);
  border-color: transparent;
  cursor: pointer;
}

.view33a79-pill-promo:hover {
  color: var(--view33a79-ink);
  filter: brightness(1.05);
}

/* FAQ */
.view33a79-faq {
  display: grid;
  gap: 8px;
}

.view33a79-faq-item {
  background: var(--view33a79-bg-card);
  border: 1px solid var(--view33a79-line);
  border-radius: var(--view33a79-radius);
  overflow: hidden;
}

.view33a79-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  font-size: 13.8px;
  font-weight: 700;
  color: var(--view33a79-cream);
  min-height: 44px;
}

.view33a79-faq-q:hover {
  color: var(--view33a79-pink);
}

.view33a79-faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--view33a79-bg-elev);
  color: var(--view33a79-pink);
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--view33a79-ease);
}

.view33a79-faq-item[data-open="true"] .view33a79-faq-toggle {
  transform: rotate(45deg);
}

.view33a79-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.view33a79-faq-a-inner {
  padding: 0 14px 12px;
  font-size: 13px;
  color: #d2ccc2;
  line-height: 1.55;
}

/* Inline link paragraph */
.view33a79-inline-links {
  font-size: 13.4px;
  color: #d6d0c6;
  line-height: 1.6;
  margin-bottom: 10px;
}

.view33a79-inline-links a {
  color: var(--view33a79-pink);
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 192, 203, 0.5);
}

/* ============================================================
   Expanded footer
   ============================================================ */
.view33a79-xfooter {
  margin: 18px var(--view33a79-gutter) 6px;
  padding: 18px 14px;
  border-radius: var(--view33a79-radius-lg);
  background: linear-gradient(180deg, rgba(160, 82, 45, 0.18), rgba(58, 58, 58, 0.4));
  border: 1px solid var(--view33a79-line);
}

.view33a79-xfooter-block {
  margin-bottom: 16px;
}

.view33a79-xfooter-block:last-child {
  margin-bottom: 0;
}

.view33a79-xfooter-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--view33a79-gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.view33a79-xfooter-title::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--view33a79-pink);
  border-radius: 2px;
}

.view33a79-xfooter-brand-text {
  font-size: 12.8px;
  color: var(--view33a79-muted);
  line-height: 1.55;
}

.view33a79-xfooter-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.view33a79-xfooter-promo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 9px;
  border-radius: var(--view33a79-radius);
  background: var(--view33a79-bg-elev);
  border: 1px solid var(--view33a79-line);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--view33a79-cream);
  cursor: pointer;
  transition: background var(--view33a79-ease), border-color var(--view33a79-ease);
  min-height: 44px;
}

.view33a79-xfooter-promo:hover {
  border-color: var(--view33a79-pink);
  background: var(--view33a79-sienna);
}

.view33a79-xfooter-promo-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-gold));
  color: var(--view33a79-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
}

.view33a79-xfooter-dir {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.view33a79-xfooter-dir a {
  display: block;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(250, 250, 250, 0.05);
  border: 1px solid var(--view33a79-line);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--view33a79-cream);
  transition: background var(--view33a79-ease), color var(--view33a79-ease);
}

.view33a79-xfooter-dir a:hover {
  background: var(--view33a79-sienna);
  color: var(--view33a79-pink-soft);
}

.view33a79-xfooter-disclaimer {
  font-size: 11.2px;
  color: var(--view33a79-muted);
  line-height: 1.5;
  padding: 10px 11px;
  border-radius: var(--view33a79-radius);
  background: rgba(15, 13, 11, 0.45);
  border: 1px dashed var(--view33a79-line-strong);
}

/* Copyright bar */
.view33a79-copyright {
  text-align: center;
  padding: 14px var(--view33a79-gutter) 6px;
  font-size: 11.5px;
  color: var(--view33a79-muted);
  line-height: 1.6;
}

.view33a79-copyright b {
  color: var(--view33a79-gold);
}

/* ============================================================
   Bottom navigation - floating docked bar, containerized tiles
   ============================================================ */
.view33a79-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  justify-content: center;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(15, 13, 11, 0.85) 38%);
}

.view33a79-bottom-bar {
  pointer-events: auto;
  width: 100%;
  max-width: calc(var(--view33a79-canvas) - 20px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 7px 6px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(40, 37, 33, 0.98), rgba(28, 26, 23, 0.98));
  border: 1px solid var(--view33a79-line-strong);
  box-shadow: 0 -4px 22px rgba(0, 0, 0, 0.45), 0 8px 26px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.view33a79-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 2px;
  border-radius: 14px;
  min-height: 52px;
  color: var(--view33a79-muted);
  transition: color var(--view33a79-ease), background var(--view33a79-ease),
    transform var(--view33a79-ease);
  cursor: pointer;
}

.view33a79-nav-item:hover {
  color: var(--view33a79-cream);
  transform: translateY(-1px);
}

.view33a79-nav-tile {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background var(--view33a79-ease), transform var(--view33a79-ease);
}

.view33a79-nav-tile svg {
  width: 19px;
  height: 19px;
}

.view33a79-nav-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1;
}

/* Active state - contrast inversion */
.view33a79-nav-item[data-active="true"] {
  color: var(--view33a79-ink);
}

.view33a79-nav-item[data-active="true"] .view33a79-nav-tile {
  background: linear-gradient(135deg, var(--view33a79-pink), var(--view33a79-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 192, 203, 0.35);
}

.view33a79-nav-item[data-active="true"] .view33a79-nav-label {
  color: var(--view33a79-cream);
  font-weight: 800;
}

/* Promo accent for non-active promo tiles */
.view33a79-nav-item[data-role="promo"] .view33a79-nav-tile {
  background: rgba(255, 192, 203, 0.12);
}

.view33a79-nav-item[data-role="promo"] .view33a79-nav-tile svg {
  color: var(--view33a79-pink);
}

.view33a79-nav-item[data-role="promo"]:hover .view33a79-nav-tile {
  background: rgba(255, 192, 203, 0.22);
}

/* ============================================================
   Utilities
   ============================================================ */
.view33a79-hide {
  display: none !important;
}

.view33a79-text-pink {
  color: var(--view33a79-pink);
}

.view33a79-text-gold {
  color: var(--view33a79-gold);
}

.view33a79-text-sky {
  color: var(--view33a79-sky);
}

.view33a79-mt {
  margin-top: 12px;
}

/* Responsive tweaks for slightly wider phones */
@media (min-width: 360px) {
  .view33a79-h1 {
    font-size: 28px;
  }
  .view33a79-slide img {
    height: 210px;
  }
}

@media (min-width: 400px) {
  .view33a79-game-grid {
    gap: 10px;
  }
  .view33a79-game-name {
    font-size: 11.4px;
  }
  .view33a79-slide img {
    height: 224px;
  }
}

@media (min-width: 430px) {
  .view33a79-h1 {
    font-size: 30px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
