/* ============================================================
   bwin casino - chrome-mobile-cade60.css
   Mobile-first casino canvas (320-430px) with centered phone
   frame on wide screens. Dark surface, teal/gold accents.
   All classes & variables use the viewe6003- prefix.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --viewe6003-bg: #2b2b30;
  --viewe6003-bg-deep: #1f1f23;
  --viewe6003-surface: #3a3a42;
  --viewe6003-surface-2: #45454f;
  --viewe6003-surface-3: #52525e;
  --viewe6003-line: #4a4a55;
  --viewe6003-text: #fdf5e6;
  --viewe6003-text-dim: #c9c1ae;
  --viewe6003-text-mute: #8e8a7d;
  --viewe6003-teal: #00ced1;
  --viewe6003-teal-deep: #00a8aa;
  --viewe6003-gold: #deb887;
  --viewe6003-gold-deep: #b8935f;
  --viewe6003-blue: #87cefa;
  --viewe6003-dark: #333333;
  --viewe6003-danger: #e07a5f;

  --viewe6003-radius-xs: 6px;
  --viewe6003-radius-sm: 10px;
  --viewe6003-radius-md: 14px;
  --viewe6003-radius-lg: 20px;
  --viewe6003-radius-pill: 999px;

  --viewe6003-topbar-h: 56px;
  --viewe6003-bottomnav-h: 68px;
  --viewe6003-gap: 12px;
  --viewe6003-maxw: 430px;

  --viewe6003-shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.28);
  --viewe6003-shadow-md: 0 6px 16px rgba(0, 0, 0, 0.34);
  --viewe6003-shadow-glow: 0 0 0 2px rgba(0, 206, 209, 0.35);

  --viewe6003-font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
}

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

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

body {
  margin: 0;
  padding: 0;
  background: #14141a;
  color: var(--viewe6003-text);
  font-family: var(--viewe6003-font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--viewe6003-teal);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--viewe6003-teal);
  outline-offset: 2px;
  border-radius: var(--viewe6003-radius-xs);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--viewe6003-text);
}

p {
  margin: 0 0 10px;
}

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

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

/* ---------- Centered phone canvas ---------- */
.viewe6003-stage {
  position: relative;
  width: 100%;
  max-width: var(--viewe6003-maxw);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #26262c 0%, #1d1d22 100%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* ---------- Top brand bar ---------- */
.viewe6003-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--viewe6003-maxw);
  height: var(--viewe6003-topbar-h);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: linear-gradient(90deg, #232329 0%, #2f2f37 100%);
  border-bottom: 1px solid var(--viewe6003-line);
  box-shadow: var(--viewe6003-shadow-sm);
}

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

.viewe6003-brand img {
  width: 34px;
  height: 34px;
  border-radius: var(--viewe6003-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--viewe6003-gold);
}

.viewe6003-brand-name {
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  color: var(--viewe6003-text);
  white-space: nowrap;
}

.viewe6003-brand-name b {
  color: var(--viewe6003-teal);
}

.viewe6003-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.viewe6003-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--viewe6003-radius-pill);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.08s ease;
  white-space: nowrap;
}

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

.viewe6003-btn-login {
  background: transparent;
  color: var(--viewe6003-text);
  border: 1px solid var(--viewe6003-line);
}

.viewe6003-btn-login:active {
  background: var(--viewe6003-surface-2);
}

.viewe6003-btn-register {
  background: linear-gradient(135deg, var(--viewe6003-teal) 0%, var(--viewe6003-teal-deep) 100%);
  color: #08262a;
  box-shadow: 0 3px 10px rgba(0, 206, 209, 0.3);
}

.viewe6003-btn-register:active {
  background: var(--viewe6003-teal-deep);
}

.viewe6003-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--viewe6003-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
}

.viewe6003-menu-btn:active {
  background: var(--viewe6003-surface-2);
}

.viewe6003-menu-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--viewe6003-text);
}

/* ---------- Side drawer ---------- */
.viewe6003-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 70;
}

.viewe6003-drawer-overlay.viewe6003-is-open {
  opacity: 1;
  visibility: visible;
}

.viewe6003-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #2a2a31 0%, #202027 100%);
  border-left: 1px solid var(--viewe6003-line);
  z-index: 80;
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 0 24px;
  overflow-y: auto;
}

.viewe6003-drawer.viewe6003-is-open {
  transform: translateX(0);
}

.viewe6003-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 14px;
  border-bottom: 1px solid var(--viewe6003-line);
  margin-bottom: 8px;
}

.viewe6003-drawer-head img {
  width: 32px;
  height: 32px;
  border-radius: var(--viewe6003-radius-sm);
  border: 1px solid var(--viewe6003-gold);
}

.viewe6003-drawer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--viewe6003-text);
}

.viewe6003-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: var(--viewe6003-radius-xs);
  background: var(--viewe6003-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.viewe6003-drawer-close svg {
  width: 18px;
  height: 18px;
  fill: var(--viewe6003-text);
}

.viewe6003-drawer-cta {
  margin: 8px 14px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.viewe6003-drawer-nav {
  padding: 0 8px;
}

.viewe6003-drawer-nav li {
  margin: 0;
}

.viewe6003-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: var(--viewe6003-radius-sm);
  color: var(--viewe6003-text-dim);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.viewe6003-drawer-nav a:active {
  background: var(--viewe6003-surface);
  color: var(--viewe6003-text);
}

.viewe6003-drawer-nav .viewe6003-drawer-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--viewe6003-gold);
  background: rgba(222, 184, 135, 0.12);
  padding: 2px 7px;
  border-radius: var(--viewe6003-radius-pill);
}

.viewe6003-drawer-foot {
  margin-top: auto;
  padding: 14px 18px 4px;
  font-size: 11px;
  color: var(--viewe6003-text-mute);
}

/* ---------- Main content ---------- */
.viewe6003-main {
  padding-top: calc(var(--viewe6003-topbar-h) + 6px);
  padding-bottom: calc(var(--viewe6003-bottomnav-h) + 22px);
  min-height: 100vh;
}

/* ---------- Hero carousel ---------- */
.viewe6003-hero {
  position: relative;
  margin: 10px 12px 4px;
  border-radius: var(--viewe6003-radius-lg);
  overflow: hidden;
  background: var(--viewe6003-surface);
  box-shadow: var(--viewe6003-shadow-md);
}

.viewe6003-hero-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.viewe6003-hero-slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
}

.viewe6003-hero-slide img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.viewe6003-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 26, 0.05) 30%,
    rgba(20, 20, 26, 0.86) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 16px;
}

.viewe6003-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--viewe6003-gold);
  margin-bottom: 4px;
}

.viewe6003-hero-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--viewe6003-text);
  margin-bottom: 5px;
}

.viewe6003-hero-sub {
  font-size: 12.5px;
  color: var(--viewe6003-text-dim);
  margin-bottom: 10px;
  max-width: 90%;
}

.viewe6003-hero-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--viewe6003-teal) 0%, var(--viewe6003-teal-deep) 100%);
  color: #08262a;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--viewe6003-radius-pill);
  box-shadow: 0 4px 12px rgba(0, 206, 209, 0.32);
}

.viewe6003-hero-cta:active {
  transform: scale(0.96);
}

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

.viewe6003-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.4);
  transition: background 0.2s ease, width 0.2s ease;
}

.viewe6003-hero-dot.viewe6003-is-active {
  background: var(--viewe6003-teal);
  width: 18px;
  border-radius: var(--viewe6003-radius-pill);
}

/* ---------- Category quick nav ---------- */
.viewe6003-catnav {
  display: flex;
  gap: 8px;
  padding: 10px 12px 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.viewe6003-catnav::-webkit-scrollbar {
  display: none;
}

.viewe6003-catnav a {
  flex-shrink: 0;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--viewe6003-text-dim);
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-pill);
  white-space: nowrap;
}

.viewe6003-catnav a:active {
  color: var(--viewe6003-teal);
  border-color: var(--viewe6003-teal);
}

/* ---------- Section header ---------- */
.viewe6003-section {
  margin: 18px 12px 4px;
}

.viewe6003-section-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--viewe6003-line);
}

.viewe6003-section-badge {
  width: 26px;
  height: 26px;
  border-radius: var(--viewe6003-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #08262a;
  background: linear-gradient(135deg, var(--viewe6003-gold) 0%, var(--viewe6003-gold-deep) 100%);
  flex-shrink: 0;
}

.viewe6003-section-badge.viewe6003-badge-teal {
  background: linear-gradient(135deg, var(--viewe6003-teal) 0%, var(--viewe6003-teal-deep) 100%);
}

.viewe6003-section-badge.viewe6003-badge-blue {
  background: linear-gradient(135deg, var(--viewe6003-blue) 0%, #4fa9d8 100%);
}

.viewe6003-section-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--viewe6003-text);
  line-height: 1.1;
}

.viewe6003-section-title em {
  font-style: normal;
  color: var(--viewe6003-teal);
}

.viewe6003-section-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--viewe6003-text-mute);
  font-weight: 600;
}

/* ---------- Game grid + cards ---------- */
.viewe6003-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.viewe6003-card {
  display: flex;
  flex-direction: column;
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-md);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
}

.viewe6003-card:active {
  transform: scale(0.95);
  border-color: var(--viewe6003-teal);
}

.viewe6003-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #222229;
  overflow: hidden;
}

.viewe6003-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viewe6003-card-name {
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--viewe6003-text-dim);
  padding: 5px 4px 6px;
  background: linear-gradient(180deg, #3a3a42 0%, #32323a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewe6003-card:hover .viewe6003-card-name,
.viewe6003-card:active .viewe6003-card-name {
  color: var(--viewe6003-teal);
}

/* ---------- Horizontal icon-name strip (winners / lists) ---------- */
.viewe6003-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.viewe6003-strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-md);
}

.viewe6003-strip-item:active {
  border-color: var(--viewe6003-teal);
}

.viewe6003-strip-item img {
  width: 44px;
  height: 44px;
  border-radius: var(--viewe6003-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.viewe6003-strip-meta {
  flex: 1;
  min-width: 0;
}

.viewe6003-strip-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--viewe6003-text);
  line-height: 1.2;
}

.viewe6003-strip-sub {
  font-size: 11.5px;
  color: var(--viewe6003-text-mute);
  margin-top: 2px;
}

.viewe6003-strip-pill {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--viewe6003-radius-pill);
  background: rgba(0, 206, 209, 0.14);
  color: var(--viewe6003-teal);
}

.viewe6003-strip-pill.viewe6003-pill-gold {
  background: rgba(222, 184, 135, 0.16);
  color: var(--viewe6003-gold);
}

/* ---------- Content modules ---------- */
.viewe6003-module {
  margin: 18px 12px 4px;
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-lg);
  padding: 15px 14px;
}

.viewe6003-module-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.viewe6003-module-head h2 {
  font-size: 16px;
  line-height: 1.2;
}

.viewe6003-module-ico {
  width: 24px;
  height: 24px;
  border-radius: var(--viewe6003-radius-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 206, 209, 0.14);
  flex-shrink: 0;
}

.viewe6003-module-ico svg {
  width: 15px;
  height: 15px;
  fill: var(--viewe6003-teal);
}

.viewe6003-module p {
  color: var(--viewe6003-text-dim);
  font-size: 13.5px;
}

.viewe6003-module p a {
  color: var(--viewe6003-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.viewe6003-prose {
  font-size: 13.5px;
  color: var(--viewe6003-text-dim);
  line-height: 1.6;
}

.viewe6003-prose h3 {
  font-size: 14px;
  margin: 12px 0 5px;
  color: var(--viewe6003-gold);
}

.viewe6003-prose p {
  margin-bottom: 9px;
}

/* ---------- Inline CTA strip ---------- */
.viewe6003-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.viewe6003-inline-cta .viewe6003-btn {
  flex: 1 1 auto;
}

.viewe6003-btn-gold {
  background: linear-gradient(135deg, var(--viewe6003-gold) 0%, var(--viewe6003-gold-deep) 100%);
  color: #2a1d08;
  box-shadow: 0 3px 10px rgba(222, 184, 135, 0.28);
}

.viewe6003-btn-outline {
  background: transparent;
  color: var(--viewe6003-blue);
  border: 1px solid rgba(135, 206, 250, 0.45);
}

/* ---------- Comparison grid ---------- */
.viewe6003-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.viewe6003-compare-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: start;
  padding: 9px 10px;
  background: var(--viewe6003-bg-deep);
  border-radius: var(--viewe6003-radius-sm);
  border-left: 3px solid var(--viewe6003-teal);
}

.viewe6003-compare-row:nth-child(even) {
  border-left-color: var(--viewe6003-gold);
}

.viewe6003-compare-key {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--viewe6003-text);
}

.viewe6003-compare-val {
  font-size: 12px;
  color: var(--viewe6003-text-dim);
  line-height: 1.5;
}

/* ---------- Steps ---------- */
.viewe6003-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.viewe6003-step {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.viewe6003-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--viewe6003-surface-2);
  color: var(--viewe6003-teal);
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--viewe6003-line);
}

.viewe6003-step-body {
  font-size: 13px;
  color: var(--viewe6003-text-dim);
  line-height: 1.55;
}

.viewe6003-step-body b {
  color: var(--viewe6003-text);
}

/* ---------- Quick facts ---------- */
.viewe6003-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.viewe6003-fact {
  background: var(--viewe6003-bg-deep);
  border-radius: var(--viewe6003-radius-sm);
  padding: 10px;
  border: 1px solid var(--viewe6003-line);
}

.viewe6003-fact-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--viewe6003-teal);
  line-height: 1;
}

.viewe6003-fact-label {
  font-size: 11px;
  color: var(--viewe6003-text-mute);
  margin-top: 4px;
  line-height: 1.3;
}

/* ---------- Extended footer ---------- */
.viewe6003-extfoot {
  margin: 22px 12px 4px;
  background: var(--viewe6003-bg-deep);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-lg);
  padding: 16px 14px;
}

.viewe6003-extfoot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--viewe6003-line);
}

.viewe6003-extfoot-brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--viewe6003-radius-sm);
  border: 1px solid var(--viewe6003-gold);
}

.viewe6003-extfoot-brand-text {
  font-size: 12.5px;
  color: var(--viewe6003-text-dim);
  line-height: 1.5;
}

.viewe6003-extfoot-block {
  margin-bottom: 14px;
}

.viewe6003-extfoot-block:last-child {
  margin-bottom: 0;
}

.viewe6003-extfoot-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viewe6003-gold);
  margin-bottom: 9px;
}

.viewe6003-extfoot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.viewe6003-extfoot-links a {
  font-size: 12.5px;
  color: var(--viewe6003-text-dim);
  font-weight: 600;
  padding: 4px 0;
  line-height: 1.3;
}

.viewe6003-extfoot-links a:active {
  color: var(--viewe6003-teal);
}

.viewe6003-extfoot-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.viewe6003-extfoot-promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 11px;
  background: var(--viewe6003-surface);
  border: 1px solid var(--viewe6003-line);
  border-radius: var(--viewe6003-radius-md);
  text-align: left;
}

.viewe6003-extfoot-promo:active {
  border-color: var(--viewe6003-teal);
}

.viewe6003-extfoot-promo-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viewe6003-teal);
}

.viewe6003-extfoot-promo-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--viewe6003-text);
  line-height: 1.2;
}

.viewe6003-extfoot-promo-sub {
  font-size: 11px;
  color: var(--viewe6003-text-mute);
  line-height: 1.35;
}

.viewe6003-disclaimer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--viewe6003-line);
  font-size: 11.5px;
  color: var(--viewe6003-text-mute);
  line-height: 1.55;
}

/* ---------- Copyright bar ---------- */
.viewe6003-copyright {
  text-align: center;
  font-size: 11.5px;
  color: var(--viewe6003-text-mute);
  padding: 14px 16px 6px;
  line-height: 1.5;
}

/* ---------- Bottom floating dock nav ---------- */
.viewe6003-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--viewe6003-maxw);
  height: var(--viewe6003-bottomnav-h);
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1fr 1fr;
  align-items: center;
  background: linear-gradient(180deg, #2a2a31 0%, #1c1c22 100%);
  border-top: 1px solid var(--viewe6003-line);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.4);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.viewe6003-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  color: var(--viewe6003-text-mute);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 4px 2px;
  transition: color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.viewe6003-nav-item:active {
  color: var(--viewe6003-teal);
}

.viewe6003-nav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  opacity: 0.85;
}

.viewe6003-nav-item.viewe6003-is-current {
  color: var(--viewe6003-teal);
}

.viewe6003-nav-item.viewe6003-is-current svg {
  opacity: 1;
}

.viewe6003-nav-center {
  position: relative;
  margin-top: -22px;
}

.viewe6003-nav-center-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viewe6003-teal) 0%, var(--viewe6003-teal-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 206, 209, 0.45);
  border: 3px solid #1c1c22;
}

.viewe6003-nav-center-btn:active {
  transform: scale(0.93);
}

.viewe6003-nav-center-btn svg {
  width: 26px;
  height: 26px;
  fill: #08262a;
  opacity: 1;
}

.viewe6003-nav-center-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--viewe6003-teal);
  margin-top: 3px;
}

/* ---------- Responsive tweaks ---------- */
@media (min-width: 375px) {
  .viewe6003-grid {
    gap: 10px;
  }
  .viewe6003-hero-slide img {
    height: 210px;
  }
  .viewe6003-section-title {
    font-size: 17.5px;
  }
}

@media (min-width: 414px) {
  .viewe6003-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .viewe6003-card-name {
    font-size: 11px;
  }
}

@media (min-width: 600px) {
  /* Keep phone canvas centered, no desktop-wide redesign */
  body {
    background: #0c0c11;
  }
  .viewe6003-stage {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .viewe6003-hero-track,
  .viewe6003-drawer,
  .viewe6003-drawer-overlay {
    transition: none;
  }
}

/* ---------- Help-page reading refinements ---------- */
.viewe6003-module-head > h1 {
  font-size: 20px;
  line-height: 1.18;
}

.viewe6003-module-head > h2 {
  min-width: 0;
}

.viewe6003-module .viewe6003-prose a {
  overflow-wrap: anywhere;
}

@media (max-width: 359px) {
  .viewe6003-actions {
    gap: 4px;
  }
  .viewe6003-actions .viewe6003-btn {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 12px;
  }
  .viewe6003-compare-row {
    grid-template-columns: 82px 1fr;
    gap: 7px;
  }
}

