/* ============================================================
   Hawk Live - hawk-live-canvas-03fde0.css
   Every custom class and CSS variable uses the shellde06c-
   prefix. Mobile-first canvas sized for 320-430px viewports;
   wider screens keep the centered phone canvas.
   ============================================================ */

:root {
  --shellde06c-bg-deep: #273746;
  --shellde06c-bg-base: #2f4254;
  --shellde06c-bg-card: #354b60;
  --shellde06c-bg-soft: #4A4A4A;
  --shellde06c-accent: #66CDAA;
  --shellde06c-accent-deep: #4caa8a;
  --shellde06c-accent-warm: #FFB347;
  --shellde06c-accent-warm-deep: #ff9a1f;
  --shellde06c-text: #D3D3D3;
  --shellde06c-text-strong: #f0f4f7;
  --shellde06c-text-muted: #9fb1c0;
  --shellde06c-border: rgba(102, 205, 170, 0.22);
  --shellde06c-border-soft: rgba(211, 211, 211, 0.12);
  --shellde06c-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  --shellde06c-radius: 14px;
  --shellde06c-max-canvas: 430px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: #141d27;
  color: var(--shellde06c-text);
  font-family: "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.5;
}

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

a { color: var(--shellde06c-accent); text-decoration: none; }

button { font-family: inherit; }

/* Phone canvas */
.shellde06c-canvas {
  position: relative;
  max-width: var(--shellde06c-max-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(102, 205, 170, 0.12) 0%, rgba(39, 55, 70, 0) 55%),
    linear-gradient(180deg, #273746 0%, #2b3e51 38%, #1d2a36 100%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.45);
  padding-bottom: 92px;
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
.shellde06c-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(39, 55, 70, 0.96) 0%, rgba(74, 74, 74, 0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shellde06c-border);
}

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

.shellde06c-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  border: 2px solid var(--shellde06c-accent);
  box-shadow: 0 0 12px rgba(102, 205, 170, 0.35);
  flex-shrink: 0;
}

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

.shellde06c-brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--shellde06c-text-strong);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.shellde06c-brand-tag {
  font-size: 9.5px;
  color: var(--shellde06c-accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

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

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

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

.shellde06c-btn-register {
  background: linear-gradient(135deg, #FFB347 0%, #ff9a1f 100%);
  color: #2a1c08;
  box-shadow: 0 4px 14px rgba(255, 179, 71, 0.35);
}

.shellde06c-btn:active { transform: translateY(1px); }
.shellde06c-btn:hover { filter: brightness(1.06); }

.shellde06c-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(102, 205, 170, 0.14);
  border: 1px solid var(--shellde06c-border);
  color: var(--shellde06c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ===================== DRAWER MENU ===================== */
.shellde06c-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 25, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 60;
}

.shellde06c-overlay--visible { opacity: 1; visibility: visible; }

.shellde06c-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #273746 0%, #1f2e3c 100%);
  border-left: 1px solid var(--shellde06c-border);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 70;
  overflow-y: auto;
  padding: 16px 14px 32px;
}

.shellde06c-menu-drawer--open { transform: translateX(0); }

.shellde06c-menu-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--shellde06c-border-soft);
}

.shellde06c-menu-drawer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shellde06c-menu-drawer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--shellde06c-accent);
}

.shellde06c-menu-drawer-brand span {
  font-size: 14px;
  font-weight: 800;
  color: var(--shellde06c-text-strong);
}

.shellde06c-menu-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(102, 205, 170, 0.12);
  color: var(--shellde06c-text-strong);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shellde06c-menu-section { margin-bottom: 16px; }

.shellde06c-menu-section-title {
  font-size: 10.5px;
  color: var(--shellde06c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 0 6px 6px;
  margin: 0 0 4px;
}

.shellde06c-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shellde06c-menu-list li a {
  display: block;
  padding: 11px 10px;
  color: var(--shellde06c-text);
  font-size: 13.5px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease, padding 0.18s ease;
}

.shellde06c-menu-list li a:hover,
.shellde06c-menu-list li a:focus {
  background: rgba(102, 205, 170, 0.1);
  color: var(--shellde06c-accent);
  padding-left: 14px;
}

.shellde06c-menu-cta {
  display: block;
  margin-top: 16px;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  color: #0d2118;
}

/* ===================== MAIN ===================== */
.shellde06c-main { padding: 0 0 8px; }

/* ===================== HERO CAROUSEL ===================== */
.shellde06c-hero {
  position: relative;
  overflow: hidden;
  margin: 14px 12px 0;
  border-radius: var(--shellde06c-radius);
  box-shadow: var(--shellde06c-shadow);
  background: #1d2a36;
}

.shellde06c-hero-track {
  display: flex;
  transition: transform 0.5s ease;
}

.shellde06c-hero-slide {
  min-width: 100%;
  position: relative;
}

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

.shellde06c-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 14px;
  background: linear-gradient(180deg, rgba(39, 55, 70, 0) 0%, rgba(20, 29, 39, 0.88) 70%);
  color: var(--shellde06c-text-strong);
}

.shellde06c-hero-caption h2 {
  margin: 0 0 3px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.shellde06c-hero-caption p {
  margin: 0;
  font-size: 11.5px;
  color: var(--shellde06c-text);
}

.shellde06c-hero-cta {
  position: absolute;
  right: 12px;
  top: 12px;
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  color: #0d2118;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(102, 205, 170, 0.45);
}

.shellde06c-hero-dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.shellde06c-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(211, 211, 211, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.shellde06c-hero-dot--active {
  background: var(--shellde06c-accent);
  width: 18px;
  border-radius: 4px;
}

/* ===================== SECTIONS ===================== */
.shellde06c-section { padding: 18px 12px 0; }

.shellde06c-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}

.shellde06c-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--shellde06c-text-strong);
  margin: 0;
  position: relative;
  padding-left: 12px;
  line-height: 1.3;
}

.shellde06c-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: linear-gradient(180deg, #66CDAA 0%, #FFB347 100%);
  border-radius: 2px;
}

.shellde06c-section-link {
  font-size: 11.5px;
  color: var(--shellde06c-accent);
  font-weight: 700;
  white-space: nowrap;
}

/* ===================== CATEGORY CHIPS ===================== */
.shellde06c-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px 12px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.shellde06c-chips::-webkit-scrollbar { display: none; }

.shellde06c-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(102, 205, 170, 0.1);
  color: var(--shellde06c-text);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--shellde06c-border);
  white-space: nowrap;
  cursor: pointer;
}

.shellde06c-chip--active {
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  color: #0d2118;
  border-color: transparent;
}

/* ===================== GAME GRID ===================== */
.shellde06c-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

@media (min-width: 360px) {
  .shellde06c-game-grid { gap: 9px; }
}

@media (min-width: 400px) {
  .shellde06c-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.shellde06c-game-card {
  display: block;
  background: var(--shellde06c-bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(102, 205, 170, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  text-align: center;
}

.shellde06c-game-card:hover,
.shellde06c-game-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 205, 170, 0.2);
  border-color: rgba(102, 205, 170, 0.4);
}

.shellde06c-game-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #1d2a36;
}

.shellde06c-game-card-name {
  font-size: 10px;
  color: var(--shellde06c-text);
  padding: 5px 3px 6px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 30px;
  font-weight: 600;
}

@media (min-width: 375px) {
  .shellde06c-game-card-name { font-size: 10.5px; }
}

/* ===================== INTRO STRIP ===================== */
.shellde06c-intro {
  margin: 16px 12px 0;
  padding: 14px;
  border-radius: var(--shellde06c-radius);
  background: linear-gradient(135deg, rgba(74, 74, 74, 0.4) 0%, rgba(39, 55, 70, 0.55) 100%);
  border: 1px solid var(--shellde06c-border);
}

.shellde06c-intro p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--shellde06c-text);
}

/* ===================== CONTENT MODULES ===================== */
.shellde06c-module {
  background: linear-gradient(135deg, rgba(74, 74, 74, 0.5) 0%, rgba(39, 55, 70, 0.72) 100%);
  border-radius: var(--shellde06c-radius);
  padding: 16px;
  margin: 16px 12px 0;
  border: 1px solid var(--shellde06c-border);
}

.shellde06c-module h2 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--shellde06c-text-strong);
  margin: 0 0 8px;
  line-height: 1.35;
}

.shellde06c-module h3 {
  font-size: 13.5px;
  color: var(--shellde06c-accent);
  margin: 14px 0 6px;
  font-weight: 700;
}

.shellde06c-module p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--shellde06c-text);
  margin: 0 0 10px;
}

.shellde06c-module ul {
  margin: 0 0 10px;
  padding-left: 20px;
  color: var(--shellde06c-text);
  font-size: 12.5px;
  line-height: 1.75;
}

.shellde06c-module li { margin-bottom: 3px; }

.shellde06c-inline-link {
  color: var(--shellde06c-accent);
  font-weight: 600;
  border-bottom: 1px dashed rgba(102, 205, 170, 0.5);
}

.shellde06c-inline-link:hover { color: var(--shellde06c-accent-warm); }

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

.shellde06c-steps li {
  position: relative;
  padding: 8px 0 8px 38px;
  font-size: 12.5px;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(211, 211, 211, 0.1);
  counter-increment: step;
  color: var(--shellde06c-text);
}

.shellde06c-steps li:last-child { border-bottom: none; }

.shellde06c-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB347 0%, #ff9a1f 100%);
  color: #2a1c08;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* mini card grid (achievements, play styles) */
.shellde06c-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.shellde06c-mini-card {
  background: rgba(39, 55, 70, 0.6);
  border: 1px solid var(--shellde06c-border);
  border-radius: 12px;
  padding: 11px;
}

.shellde06c-mini-card-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--shellde06c-accent-warm);
  margin: 0 0 4px;
  line-height: 1.25;
}

.shellde06c-mini-card-text {
  font-size: 11.5px;
  color: var(--shellde06c-text);
  line-height: 1.5;
  margin: 0;
}

/* trust list */
.shellde06c-trust-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.shellde06c-trust-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--shellde06c-text);
  border-bottom: 1px dashed rgba(211, 211, 211, 0.08);
}

.shellde06c-trust-list li:last-child { border-bottom: none; }

.shellde06c-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  box-shadow: 0 0 8px rgba(102, 205, 170, 0.4);
}

/* download module */
.shellde06c-download {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shellde06c-download-banner {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(39, 55, 70, 0.55);
  border: 1px solid var(--shellde06c-border);
  border-radius: 12px;
  padding: 12px;
}

.shellde06c-download-banner img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--shellde06c-border);
}

.shellde06c-download-banner-text {
  font-size: 12px;
  color: var(--shellde06c-text);
  line-height: 1.5;
  margin: 0;
}

.shellde06c-download-banner-text strong {
  color: var(--shellde06c-text-strong);
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.shellde06c-download-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.shellde06c-download-btn {
  flex: 1;
  min-width: 130px;
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  color: #0d2118;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.shellde06c-download-btn--alt {
  background: linear-gradient(135deg, #FFB347 0%, #ff9a1f 100%);
  color: #2a1c08;
}

/* ===================== EXTENDED FOOTER ===================== */
.shellde06c-ext-footer {
  margin: 22px 12px 0;
  padding: 16px;
  background: rgba(29, 42, 54, 0.65);
  border-radius: var(--shellde06c-radius);
  border: 1px solid var(--shellde06c-border);
}

.shellde06c-ext-footer-section { margin-bottom: 16px; }
.shellde06c-ext-footer-section:last-child { margin-bottom: 0; }

.shellde06c-ext-footer-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--shellde06c-accent);
  margin: 0 0 8px;
  font-weight: 800;
}

.shellde06c-ext-footer-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--shellde06c-text-muted);
  margin: 0 0 10px;
}

.shellde06c-ext-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shellde06c-ext-footer-links a {
  font-size: 12px;
  color: var(--shellde06c-text);
  line-height: 1.55;
}

.shellde06c-ext-footer-links a:hover { color: var(--shellde06c-accent); }

.shellde06c-ext-footer-promos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.shellde06c-ext-footer-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(102, 205, 170, 0.08);
  border: 1px solid var(--shellde06c-border);
  font-size: 12.5px;
  color: var(--shellde06c-text-strong);
  font-weight: 600;
  cursor: pointer;
}

.shellde06c-ext-footer-promo span:last-child {
  color: var(--shellde06c-accent);
  font-size: 11px;
  font-weight: 700;
}

.shellde06c-ext-footer-disclaimer {
  font-size: 10.5px;
  color: var(--shellde06c-text-muted);
  line-height: 1.55;
  border-top: 1px dashed rgba(211, 211, 211, 0.12);
  padding-top: 10px;
  margin: 0;
}

/* ===================== UNIVERSAL FOOTER ===================== */
.shellde06c-footer {
  text-align: center;
  padding: 20px 14px 14px;
  color: var(--shellde06c-text-muted);
  font-size: 11px;
  line-height: 1.6;
}

.shellde06c-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.shellde06c-footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--shellde06c-accent);
}

.shellde06c-footer-brand span {
  font-size: 13px;
  font-weight: 800;
  color: var(--shellde06c-text-strong);
  letter-spacing: 0.4px;
}

.shellde06c-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
  margin: 8px 0;
}

.shellde06c-footer-links a {
  color: var(--shellde06c-text-muted);
  font-size: 11px;
}

.shellde06c-footer-links a:hover { color: var(--shellde06c-accent); }

.shellde06c-footer-copy {
  margin: 8px 0 0;
  font-size: 10.5px;
}

/* ===================== BOTTOM NAV ===================== */
.shellde06c-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--shellde06c-max-canvas);
  background: linear-gradient(180deg, rgba(39, 55, 70, 0.98) 0%, rgba(20, 29, 39, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--shellde06c-border);
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  z-index: 40;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.3);
}

.shellde06c-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px 4px;
  color: var(--shellde06c-text-muted);
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  position: relative;
}

.shellde06c-bottom-nav-item--promo { color: var(--shellde06c-accent-warm); }

.shellde06c-bottom-nav-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  position: relative;
}

.shellde06c-bottom-nav-icon svg { width: 20px; height: 20px; }

.shellde06c-bottom-nav-item--active {
  color: var(--shellde06c-accent);
  transform: translateY(-3px);
}

.shellde06c-bottom-nav-item--active .shellde06c-bottom-nav-icon {
  background: linear-gradient(135deg, rgba(102, 205, 170, 0.28) 0%, rgba(255, 179, 71, 0.18) 100%);
  box-shadow: 0 0 14px rgba(102, 205, 170, 0.5);
}

.shellde06c-bottom-nav-item:hover { color: var(--shellde06c-accent); }

.shellde06c-bottom-nav-badge {
  position: absolute;
  top: -3px;
  right: 2px;
  background: var(--shellde06c-accent-warm);
  color: #2a1c08;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 8px;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* ===================== BACK TO TOP ===================== */
.shellde06c-top-btn {
  position: fixed;
  right: 14px;
  bottom: 96px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66CDAA 0%, #4caa8a 100%);
  color: #0d2118;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(102, 205, 170, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 38;
}

.shellde06c-top-btn--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shellde06c-top-btn svg { width: 18px; height: 18px; }

/* ===================== UTILITY ===================== */
.shellde06c-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;
}

.shellde06c-no-scroll { overflow: hidden; }
