/* ============================================================
 * winzir mobile-first stylesheet - prefix layeree6dc-
 * Palette: #2E4057 deep slate | #9400D3 violet | #CD853F gold
 *          #F5DEB3 wheat | #D8BFD8 thistle | #E0E0E0 light gray
 * Canvas: 320-430px phone, centered on wider screens.
 * ============================================================ */

:root {
  --layeree6dc-bg-deep: #2E4057;
  --layeree6dc-bg-mid: #283a52;
  --layeree6dc-bg-darker: #1c2a3a;
  --layeree6dc-bg-deepest: #14202c;
  --layeree6dc-violet: #9400D3;
  --layeree6dc-violet-soft: #b34ee6;
  --layeree6dc-violet-deep: #5a0a82;
  --layeree6dc-gold: #CD853F;
  --layeree6dc-gold-bright: #e6a85c;
  --layeree6dc-wheat: #F5DEB3;
  --layeree6dc-thistle: #D8BFD8;
  --layeree6dc-light: #E0E0E0;
  --layeree6dc-card: rgba(245, 222, 179, 0.06);
  --layeree6dc-card-strong: rgba(245, 222, 179, 0.1);
  --layeree6dc-card-border: rgba(245, 222, 179, 0.14);
  --layeree6dc-radius: 14px;
  --layeree6dc-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at top, #344a66 0%, #2a3c50 45%, #14202c 100%);
  background-attachment: fixed;
  color: var(--layeree6dc-wheat);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--layeree6dc-thistle); text-decoration: none; }
a:hover { color: var(--layeree6dc-wheat); }

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

button { font-family: inherit; }

/* ===== Phone canvas (kept on wide screens) ===== */
.layeree6dc-canvas {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, #2E4057 0%, #283a52 50%, #1c2a3a 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
  padding-bottom: 96px; /* clearance for fixed bottom nav */
  overflow-x: hidden;
}

/* ============================================================
 * Header - LOGO-led action bar
 * ============================================================ */
.layeree6dc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #243648 0%, #2E4057 55%, #3a2552 100%);
  border-bottom: 1px solid rgba(205, 133, 63, 0.4);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.layeree6dc-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  min-height: 58px;
}

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

.layeree6dc-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  border: 2px solid var(--layeree6dc-gold);
  box-shadow: 0 2px 10px rgba(205, 133, 63, 0.5);
  flex-shrink: 0;
  background: #14202c;
}

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

.layeree6dc-brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--layeree6dc-wheat);
  text-shadow: 0 1px 4px rgba(148, 0, 211, 0.55);
  line-height: 1;
}

.layeree6dc-brand-name span { color: var(--layeree6dc-gold-bright); }

.layeree6dc-brand-tag {
  font-size: 10px;
  color: var(--layeree6dc-thistle);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.layeree6dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.18s ease, filter 0.18s ease;
  text-decoration: none;
}

.layeree6dc-btn:active { transform: translateY(1px) scale(0.97); }

.layeree6dc-btn-login {
  background: transparent;
  color: var(--layeree6dc-wheat);
  border: 1.5px solid rgba(245, 222, 179, 0.55);
  padding: 7px 13px;
}

.layeree6dc-btn-register {
  background: linear-gradient(135deg, var(--layeree6dc-gold) 0%, var(--layeree6dc-gold-bright) 100%);
  color: #2a1a08;
  box-shadow: 0 4px 12px rgba(205, 133, 63, 0.45);
}

.layeree6dc-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 222, 179, 0.08);
  border: 1px solid rgba(245, 222, 179, 0.2);
  color: var(--layeree6dc-wheat);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.08s ease;
  flex-shrink: 0;
}

.layeree6dc-menu-btn:active { transform: scale(0.94); }
.layeree6dc-menu-btn svg { width: 20px; height: 20px; }
.layeree6dc-menu-btn-active { background: rgba(148, 0, 211, 0.4); border-color: var(--layeree6dc-violet-soft); }

/* ============================================================
 * Stacked menu overlay (slide-down)
 * ============================================================ */
.layeree6dc-menu-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(15, 22, 33, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 200;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.layeree6dc-menu-open { max-height: 640px; }

.layeree6dc-menu-inner {
  padding: 60px 16px 24px;
  border-top: 2px solid var(--layeree6dc-gold);
  position: relative;
}

.layeree6dc-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 222, 179, 0.12);
  border: none;
  color: var(--layeree6dc-wheat);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.layeree6dc-menu-title {
  color: var(--layeree6dc-thistle);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 12px;
  font-weight: 700;
}

.layeree6dc-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.layeree6dc-menu-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(245, 222, 179, 0.05);
  border: 1px solid rgba(245, 222, 179, 0.12);
  border-radius: 11px;
  color: var(--layeree6dc-wheat);
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.18s ease, transform 0.08s ease, border-color 0.18s ease;
}

.layeree6dc-menu-list a:active { transform: scale(0.98); }
.layeree6dc-menu-list a:hover {
  background: rgba(148, 0, 211, 0.28);
  border-color: var(--layeree6dc-violet-soft);
  color: var(--layeree6dc-wheat);
}

.layeree6dc-menu-list a.layeree6dc-nav-current {
  background: linear-gradient(135deg, rgba(205, 133, 63, 0.35) 0%, rgba(148, 0, 211, 0.35) 100%);
  border-color: var(--layeree6dc-gold);
  color: #fff;
}

.layeree6dc-menu-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--layeree6dc-gold-bright);
}

/* ============================================================
 * Carousel
 * ============================================================ */
.layeree6dc-main { padding: 0; }

.layeree6dc-hero-wrap { padding: 14px 12px 4px; }

.layeree6dc-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  background: #14202c;
}

.layeree6dc-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.layeree6dc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  cursor: pointer;
}

.layeree6dc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layeree6dc-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.layeree6dc-slide-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, rgba(46, 64, 87, 0.88), rgba(148, 0, 211, 0.78));
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(205, 133, 63, 0.55);
  max-width: 80%;
  pointer-events: none;
}

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

.layeree6dc-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 222, 179, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.layeree6dc-dot-active {
  background: var(--layeree6dc-gold-bright);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
 * H1 + intro
 * ============================================================ */
.layeree6dc-h1-wrap {
  padding: 18px 14px 4px;
  text-align: center;
}

.layeree6dc-h1 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  color: var(--layeree6dc-wheat);
  font-weight: 800;
  letter-spacing: 0.4px;
}

.layeree6dc-h1 span { color: var(--layeree6dc-gold-bright); }

.layeree6dc-subtitle {
  color: var(--layeree6dc-thistle);
  font-size: 13.5px;
  margin: 8px auto 0;
  max-width: 360px;
}

.layeree6dc-cta-row {
  display: flex;
  gap: 8px;
  padding: 14px 14px 6px;
}

.layeree6dc-cta { flex: 1; text-align: center; }

.layeree6dc-cta-primary,
.layeree6dc-cta-secondary {
  padding: 12px 14px;
  border-radius: 24px;
  font-size: 14.5px;
  font-weight: 800;
  display: block;
  cursor: pointer;
  border: none;
  transition: transform 0.08s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.layeree6dc-cta-primary {
  background: linear-gradient(135deg, var(--layeree6dc-gold) 0%, var(--layeree6dc-gold-bright) 100%);
  color: #2a1a08;
  box-shadow: 0 6px 16px rgba(205, 133, 63, 0.45);
}

.layeree6dc-cta-secondary {
  background: linear-gradient(135deg, var(--layeree6dc-violet) 0%, var(--layeree6dc-violet-soft) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(148, 0, 211, 0.45);
}

.layeree6dc-cta-primary:active,
.layeree6dc-cta-secondary:active { transform: scale(0.97); }

.layeree6dc-intro {
  padding: 10px 14px 4px;
  font-size: 13.5px;
  color: var(--layeree6dc-light);
  line-height: 1.65;
}

.layeree6dc-intro p { margin: 0 0 10px; }
.layeree6dc-intro a { color: var(--layeree6dc-gold-bright); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
 * Category quick tabs (smooth scroll only)
 * ============================================================ */
.layeree6dc-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 14px 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.layeree6dc-tabs::-webkit-scrollbar { display: none; }

.layeree6dc-tab {
  flex-shrink: 0;
  background: rgba(245, 222, 179, 0.07);
  border: 1px solid rgba(245, 222, 179, 0.18);
  color: var(--layeree6dc-wheat);
  padding: 7px 14px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.08s ease;
}

.layeree6dc-tab:active { transform: scale(0.95); }
.layeree6dc-tab:hover { background: rgba(148, 0, 211, 0.3); color: var(--layeree6dc-wheat); }

/* ============================================================
 * Section title
 * ============================================================ */
.layeree6dc-section { padding: 18px 14px 6px; }

.layeree6dc-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.layeree6dc-section-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--layeree6dc-wheat);
  margin: 0;
  line-height: 1.25;
  flex: 1;
}

.layeree6dc-section-bar {
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--layeree6dc-gold-bright), var(--layeree6dc-violet));
  border-radius: 2px;
  flex-shrink: 0;
}

.layeree6dc-section-badge {
  font-size: 10.5px;
  background: rgba(148, 0, 211, 0.3);
  color: var(--layeree6dc-thistle);
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.layeree6dc-section-desc {
  color: var(--layeree6dc-thistle);
  font-size: 13px;
  margin: 2px 0 12px;
}

/* ============================================================
 * Game grid
 * ============================================================ */
.layeree6dc-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.layeree6dc-game-tile {
  background: rgba(245, 222, 179, 0.04);
  border: 1px solid rgba(245, 222, 179, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.layeree6dc-game-tile:hover {
  border-color: var(--layeree6dc-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(205, 133, 63, 0.28);
}

.layeree6dc-game-tile:active { transform: scale(0.96); }

.layeree6dc-game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #14202c;
}

.layeree6dc-game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(245, 222, 179, 0.08);
}

.layeree6dc-game-name {
  font-size: 11px;
  color: var(--layeree6dc-wheat);
  padding: 5px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* ============================================================
 * Content modules
 * ============================================================ */
.layeree6dc-module {
  background: var(--layeree6dc-card);
  border: 1px solid var(--layeree6dc-card-border);
  border-radius: var(--layeree6dc-radius);
  padding: 14px 14px 16px;
  margin: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.layeree6dc-module h2 {
  color: var(--layeree6dc-wheat);
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.layeree6dc-module h2::before {
  content: '';
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--layeree6dc-gold-bright), var(--layeree6dc-violet));
  border-radius: 2px;
  flex-shrink: 0;
}

.layeree6dc-module h3 {
  color: var(--layeree6dc-gold-bright);
  font-size: 14px;
  margin: 12px 0 4px;
  font-weight: 700;
}

.layeree6dc-module p,
.layeree6dc-module li {
  color: var(--layeree6dc-light);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 6px 0;
}

.layeree6dc-module ul,
.layeree6dc-module ol {
  padding-left: 20px;
  margin: 6px 0;
}

.layeree6dc-module a {
  color: var(--layeree6dc-gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.layeree6dc-module a:hover { color: var(--layeree6dc-wheat); }

.layeree6dc-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.layeree6dc-pill {
  background: rgba(148, 0, 211, 0.16);
  border: 1px solid rgba(148, 0, 211, 0.42);
  color: var(--layeree6dc-thistle);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.layeree6dc-pill-gold {
  background: rgba(205, 133, 63, 0.18);
  border-color: rgba(205, 133, 63, 0.5);
  color: var(--layeree6dc-wheat);
}

/* Comparison table */
.layeree6dc-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 12.5px;
}

.layeree6dc-compare th,
.layeree6dc-compare td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(245, 222, 179, 0.12);
  text-align: left;
  vertical-align: top;
}

.layeree6dc-compare th {
  color: var(--layeree6dc-gold-bright);
  font-weight: 700;
  background: rgba(205, 133, 63, 0.12);
}

.layeree6dc-compare td:first-child {
  color: var(--layeree6dc-wheat);
  font-weight: 600;
}

/* Pros / cons */
.layeree6dc-proscons {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.layeree6dc-proscons-card {
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 13px;
}

.layeree6dc-pros {
  background: rgba(95, 175, 100, 0.1);
  border: 1px solid rgba(95, 175, 100, 0.38);
}

.layeree6dc-cons {
  background: rgba(205, 100, 80, 0.1);
  border: 1px solid rgba(205, 100, 80, 0.38);
}

.layeree6dc-pros strong { color: #8fd498; display: block; margin-bottom: 2px; }
.layeree6dc-cons strong { color: #e8a08a; display: block; margin-bottom: 2px; }
.layeree6dc-pros p, .layeree6dc-cons p { margin: 0; font-size: 12.5px; line-height: 1.55; }

/* Steps list */
.layeree6dc-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 8px 0 0;
}

.layeree6dc-steps li {
  counter-increment: step;
  position: relative;
  padding: 8px 8px 8px 38px;
  margin: 0 0 6px;
  background: rgba(245, 222, 179, 0.04);
  border-radius: 9px;
  font-size: 13px;
  color: var(--layeree6dc-light);
}

.layeree6dc-steps li::before {
  content: counter(step);
  position: absolute;
  left: 8px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--layeree6dc-gold), var(--layeree6dc-gold-bright));
  color: #2a1a08;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
 * Extended footer (homepage only)
 * ============================================================ */
.layeree6dc-ext-footer {
  background: linear-gradient(180deg, #243648 0%, #182634 100%);
  border-top: 2px solid var(--layeree6dc-gold);
  padding: 20px 14px 22px;
  margin-top: 18px;
}

.layeree6dc-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.layeree6dc-ext-brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 2px solid var(--layeree6dc-gold);
}

.layeree6dc-ext-brand-text {
  display: flex;
  flex-direction: column;
}

.layeree6dc-ext-brand-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--layeree6dc-wheat);
}

.layeree6dc-ext-brand-name span { color: var(--layeree6dc-gold-bright); }

.layeree6dc-ext-brand-tag {
  font-size: 11px;
  color: var(--layeree6dc-thistle);
  letter-spacing: 0.8px;
}

.layeree6dc-ext-footer p {
  color: var(--layeree6dc-light);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.layeree6dc-ext-footer h2 {
  font-size: 15px;
  color: var(--layeree6dc-wheat);
  margin: 16px 0 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.layeree6dc-ext-footer h2::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--layeree6dc-gold-bright);
  border-radius: 2px;
}

.layeree6dc-footer-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 8px 0 4px;
}

.layeree6dc-footer-promo {
  background: linear-gradient(135deg, rgba(205, 133, 63, 0.2), rgba(148, 0, 211, 0.2));
  border: 1px solid rgba(205, 133, 63, 0.45);
  border-radius: 11px;
  padding: 11px 10px;
  color: var(--layeree6dc-wheat);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.18s ease;
}

.layeree6dc-footer-promo:hover { color: var(--layeree6dc-wheat); background: linear-gradient(135deg, rgba(205, 133, 63, 0.32), rgba(148, 0, 211, 0.32)); }
.layeree6dc-footer-promo:active { transform: scale(0.97); }

.layeree6dc-footer-promo svg {
  width: 18px;
  height: 18px;
  color: var(--layeree6dc-gold-bright);
  flex-shrink: 0;
}

.layeree6dc-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin: 6px 0 12px;
  list-style: none;
  padding: 0;
}

.layeree6dc-directory a {
  color: var(--layeree6dc-thistle);
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(245, 222, 179, 0.14);
  display: flex;
  align-items: center;
  gap: 6px;
}

.layeree6dc-directory a:hover { color: var(--layeree6dc-wheat); }

.layeree6dc-directory a::before {
  content: '◆';
  color: var(--layeree6dc-gold);
  font-size: 9px;
}

.layeree6dc-disclaimer {
  background: rgba(0, 0, 0, 0.28);
  border-left: 3px solid var(--layeree6dc-violet);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--layeree6dc-light);
  line-height: 1.55;
  margin-top: 8px;
}

/* Copyright footer */
.layeree6dc-footer-copy {
  text-align: center;
  font-size: 11.5px;
  color: var(--layeree6dc-thistle);
  padding: 12px 14px 14px;
  background: #14202c;
}

/* ============================================================
 * Bottom nav - center elevated
 * ============================================================ */
.layeree6dc-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: linear-gradient(180deg, #2a3c50 0%, #16222e 100%);
  border-top: 1px solid rgba(205, 133, 63, 0.42);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  padding: 0 4px 8px;
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
  min-height: 72px;
}

.layeree6dc-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  padding: 8px 2px 4px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--layeree6dc-thistle);
  font-size: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, color 0.18s ease;
  position: relative;
}

.layeree6dc-bottom-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.layeree6dc-bottom-item:active { transform: scale(0.9); }
.layeree6dc-bottom-item:hover { color: var(--layeree6dc-wheat); }
.layeree6dc-bottom-item:hover svg { opacity: 1; }

.layeree6dc-bottom-label {
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.layeree6dc-bottom-current { color: var(--layeree6dc-wheat); }
.layeree6dc-bottom-current svg {
  opacity: 1;
  color: var(--layeree6dc-gold-bright);
}

.layeree6dc-bottom-current::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--layeree6dc-gold-bright);
}

/* Center elevated promo button */
.layeree6dc-bottom-center { position: relative; padding-top: 22px; }

.layeree6dc-bottom-center .layeree6dc-bottom-icon-wrap {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--layeree6dc-gold) 0%, var(--layeree6dc-gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(205, 133, 63, 0.6), 0 0 0 4px #16222e;
  border: 3px solid #2a3c50;
  transition: transform 0.12s ease;
}

.layeree6dc-bottom-center:hover .layeree6dc-bottom-icon-wrap { transform: translateX(-50%) translateY(-2px); }
.layeree6dc-bottom-center:active .layeree6dc-bottom-icon-wrap { transform: translateX(-50%) scale(0.94); }

.layeree6dc-bottom-center .layeree6dc-bottom-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #2a1a08;
  opacity: 1;
}

.layeree6dc-bottom-center .layeree6dc-bottom-label {
  color: var(--layeree6dc-wheat);
  font-weight: 700;
  margin-top: 22px;
}

/* Promo tint */
.layeree6dc-bottom-promo svg { color: var(--layeree6dc-violet-soft); }
.layeree6dc-bottom-promo:hover svg { color: var(--layeree6dc-violet-soft); opacity: 1; }

/* ============================================================
 * Utilities
 * ============================================================ */
.layeree6dc-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;
}

.layeree6dc-clear { clear: both; }

/* Help-page feature rows and accessible inline promotion affordance. */
.layeree6dc-linklike { color: var(--layeree6dc-gold-bright); text-decoration: underline; cursor: pointer; }
.layeree6dc-feature-list { display: grid; gap: 8px; margin-top: 10px; }
.layeree6dc-feature-row { display: grid; grid-template-columns: 1fr auto; gap: 3px 8px; padding: 11px; border: 1px solid var(--layeree6dc-card-border); border-radius: 10px; background: rgba(245,222,179,.04); }
.layeree6dc-feature-row strong { color: var(--layeree6dc-gold-bright); font-size: 13px; }
.layeree6dc-feature-row span { grid-column: 1 / -1; color: var(--layeree6dc-light); font-size: 12.5px; line-height: 1.5; }
.layeree6dc-feature-row button { grid-column: 2; grid-row: 1; min-height: 38px; padding: 6px 10px; color: var(--layeree6dc-wheat); background: transparent; border: 1px solid var(--layeree6dc-gold); border-radius: 8px; cursor: pointer; }
.layeree6dc-feature-row button:focus-visible, .layeree6dc-linklike:focus-visible { outline: 2px solid var(--layeree6dc-wheat); outline-offset: 2px; }

/* ===== Responsive tweaks ===== */
@media (min-width: 360px) {
  .layeree6dc-game-grid { gap: 10px; }
  .layeree6dc-game-name { font-size: 11.5px; }
  .layeree6dc-h1 { font-size: 28px; }
}

@media (min-width: 400px) {
  .layeree6dc-h1 { font-size: 30px; }
  .layeree6dc-section-title { font-size: 21px; }
  .layeree6dc-brand-name { font-size: 21px; }
  .layeree6dc-game-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 500px) {
  body { background: #0a1320; }
}

@media (min-width: 768px) {
  body { background: #060c16; }
}
