@charset "utf-8";

/*!
 * Playzone Console - Compact Visuals
 * Palette: #FF0000 (brand red) | #141414 (dark stage)
 * Canvas: 320-430px mobile portrait, centered on wider screens.
 * Every custom class and CSS variable carries the shell06f6f- prefix.
 */

:root {
  --shell06f6f-bg: #141414;
  --shell06f6f-bg-1: #1a1a1a;
  --shell06f6f-bg-2: #1f1f1f;
  --shell06f6f-bg-3: #262626;
  --shell06f6f-card: #1c1c1c;
  --shell06f6f-card-hi: #232323;
  --shell06f6f-red: #ff0000;
  --shell06f6f-red-2: #e30613;
  --shell06f6f-red-soft: rgba(255, 0, 0, 0.16);
  --shell06f6f-red-line: rgba(255, 0, 0, 0.55);
  --shell06f6f-red-glow: rgba(255, 0, 0, 0.35);
  --shell06f6f-text: #f6f6f6;
  --shell06f6f-text-dim: #b9b9b9;
  --shell06f6f-text-faint: #8c8c8c;
  --shell06f6f-gold: #f5c542;
  --shell06f6f-green: #34d36b;
  --shell06f6f-border: #2c2c2c;
  --shell06f6f-border-hi: #3a3a3a;
  --shell06f6f-radius: 12px;
  --shell06f6f-radius-sm: 8px;
  --shell06f6f-radius-lg: 16px;
  --shell06f6f-header-h: 92px;
  --shell06f6f-bar-h: 52px;
  --shell06f6f-bottomnav-h: 66px;
  --shell06f6f-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  --shell06f6f-shadow-red: 0 8px 22px rgba(255, 0, 0, 0.22);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--shell06f6f-bg);
  color: var(--shell06f6f-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.1px;
  word-break: break-word;
  overflow-x: hidden;
}

/* Mobile canvas: center the 430px stage on wider screens */
.shell06f6f-stage {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(255, 0, 0, 0.10), transparent 60%),
    linear-gradient(180deg, #141414 0%, #101010 60%, #0c0c0c 100%);
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

.shell06f6f-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--shell06f6f-red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 200;
}
.shell06f6f-skip:focus { left: 12px; top: 12px; }

a { color: var(--shell06f6f-text); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ------------------------------------------------------------------
 * Header: centered identity core
 * ------------------------------------------------------------------ */
.shell06f6f-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(20, 20, 20, 0.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shell06f6f-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.shell06f6f-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px 6px;
}

.shell06f6f-header-spacer {
  width: 40px;
  flex: 0 0 auto;
}

.shell06f6f-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.shell06f6f-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--shell06f6f-red-line);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.18);
  flex: 0 0 auto;
}

.shell06f6f-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.shell06f6f-brand-name b {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}
.shell06f6f-brand-name span {
  font-size: 10px;
  color: var(--shell06f6f-text-faint);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.shell06f6f-menu-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--shell06f6f-border-hi);
  background: var(--shell06f6f-bg-2);
  color: var(--shell06f6f-text);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.shell06f6f-menu-btn:hover,
.shell06f6f-menu-btn:focus-visible {
  border-color: var(--shell06f6f-red-line);
  background: var(--shell06f6f-red-soft);
}
.shell06f6f-menu-btn-active {
  border-color: var(--shell06f6f-red);
  background: var(--shell06f6f-red-soft);
}
.shell06f6f-menu-btn svg { width: 20px; height: 20px; display: block; }
.shell06f6f-menu-btn:active { transform: scale(0.92); }

.shell06f6f-auth-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 8px;
}

.shell06f6f-btn {
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, opacity 0.16s ease;
  text-align: center;
  line-height: 1.1;
}
.shell06f6f-btn:active { transform: scale(0.95); }

.shell06f6f-btn-login {
  flex: 1 1 0;
  background: var(--shell06f6f-bg-3);
  color: var(--shell06f6f-text);
  border: 1px solid var(--shell06f6f-border-hi);
}
.shell06f6f-btn-login:hover,
.shell06f6f-btn-login:focus-visible {
  background: #2f2f2f;
  border-color: var(--shell06f6f-red-line);
}

.shell06f6f-btn-register {
  flex: 1.4 1 0;
  background: linear-gradient(135deg, #ff1f1f, var(--shell06f6f-red) 55%, #c40000);
  color: #fff;
  box-shadow: var(--shell06f6f-shadow-red);
}
.shell06f6f-btn-register:hover,
.shell06f6f-btn-register:focus-visible {
  filter: brightness(1.08);
}

/* ------------------------------------------------------------------
 * Compact route menu panel
 * ------------------------------------------------------------------ */
.shell06f6f-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 95;
}
.shell06f6f-backdrop-show {
  opacity: 1;
  visibility: visible;
}

.shell06f6f-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 84%;
  max-width: 340px;
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border-left: 1px solid var(--shell06f6f-border-hi);
  box-shadow: -12px 0 36px rgba(0, 0, 0, 0.6);
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.22, 0.7, 0.25, 1);
  z-index: 100;
  overflow-y: auto;
  padding: 16px 14px 28px;
}
.shell06f6f-menu-open { transform: translateX(0); }

.shell06f6f-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.shell06f6f-menu-head b {
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shell06f6f-menu-head b::before {
  content: "";
  width: 4px;
  height: 18px;
  background: var(--shell06f6f-red);
  border-radius: 2px;
}
.shell06f6f-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--shell06f6f-bg-3);
  border: 1px solid var(--shell06f6f-border-hi);
  color: var(--shell06f6f-text);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shell06f6f-menu-close:active { transform: scale(0.92); }

.shell06f6f-menu-group-label {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell06f6f-text-faint);
  padding: 10px 4px 6px;
}

.shell06f6f-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shell06f6f-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  color: var(--shell06f6f-text);
  font-weight: 600;
  font-size: 13.5px;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.shell06f6f-menu-link:active { transform: scale(0.98); }
.shell06f6f-menu-link:hover,
.shell06f6f-menu-link:focus-visible {
  background: var(--shell06f6f-card-hi);
  border-color: var(--shell06f6f-red-line);
}
.shell06f6f-menu-link svg {
  width: 18px;
  height: 18px;
  color: var(--shell06f6f-red);
  flex: 0 0 auto;
}
.shell06f6f-menu-link-active {
  background: var(--shell06f6f-red-soft);
  border-color: var(--shell06f6f-red);
  color: #fff;
}

.shell06f6f-menu-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ------------------------------------------------------------------
 * Main / sections
 * ------------------------------------------------------------------ */
.shell06f6f-main {
  padding: 12px 12px calc(var(--shell06f6f-bottomnav-h) + 36px);
}

.shell06f6f-section {
  margin-top: 22px;
}

.shell06f6f-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}
.shell06f6f-section-head::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--shell06f6f-red), #7a0000);
  border-radius: 2px;
  flex: 0 0 auto;
}
.shell06f6f-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.2px;
  flex: 1 1 auto;
}
.shell06f6f-section-more {
  font-size: 11px;
  color: var(--shell06f6f-text-dim);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 12px;
  background: var(--shell06f6f-bg-3);
  border: 1px solid var(--shell06f6f-border);
  font-weight: 600;
}
.shell06f6f-section-more:active { transform: scale(0.94); }

.shell06f6f-h1 {
  font-size: 0;
  margin: 0;
  line-height: 0;
  color: transparent;
  position: absolute;
  left: -9999px;
}
/* Visible hero headline kept visually distinct while H1 text mirrors title */
.shell06f6f-hero-title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  margin: 10px 0 6px;
  color: #fff;
  letter-spacing: 0.2px;
}
.shell06f6f-hero-sub {
  font-size: 13px;
  color: var(--shell06f6f-text-dim);
  margin: 0 0 10px;
}

/* ------------------------------------------------------------------
 * Carousel
 * ------------------------------------------------------------------ */
.shell06f6f-carousel {
  position: relative;
  border-radius: var(--shell06f6f-radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shell06f6f-shadow);
  border: 1px solid var(--shell06f6f-border);
}
.shell06f6f-carousel-viewport {
  overflow: hidden;
  border-radius: var(--shell06f6f-radius-lg);
}
.shell06f6f-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.7, 0.3, 1);
  will-change: transform;
}
.shell06f6f-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
}
.shell06f6f-carousel-slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.shell06f6f-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  color: #fff;
}
.shell06f6f-carousel-caption b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}
.shell06f6f-carousel-caption span {
  font-size: 11.5px;
  color: var(--shell06f6f-text-dim);
}

.shell06f6f-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 3;
}
.shell06f6f-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease, width 0.18s ease;
}
.shell06f6f-carousel-dot-active {
  background: var(--shell06f6f-red);
  width: 18px;
  border-radius: 4px;
}

.shell06f6f-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 16px;
}
.shell06f6f-carousel-arrow:active { transform: translateY(-50%) scale(0.9); }
.shell06f6f-carousel-prev { left: 8px; }
.shell06f6f-carousel-next { right: 8px; }

/* ------------------------------------------------------------------
 * Quick stats strip
 * ------------------------------------------------------------------ */
.shell06f6f-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.shell06f6f-stat {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 8px 4px;
  text-align: center;
}
.shell06f6f-stat b {
  display: block;
  font-size: 14px;
  color: var(--shell06f6f-red);
  font-weight: 800;
}
.shell06f6f-stat span {
  display: block;
  font-size: 9.5px;
  color: var(--shell06f6f-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

/* ------------------------------------------------------------------
 * Category chips / quick nav
 * ------------------------------------------------------------------ */
.shell06f6f-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0 8px;
  margin: 0 -2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shell06f6f-chips::-webkit-scrollbar { display: none; }
.shell06f6f-chip {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 16px;
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  color: var(--shell06f6f-text-dim);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.shell06f6f-chip:active { transform: scale(0.94); }
.shell06f6f-chip:hover,
.shell06f6f-chip:focus-visible {
  color: #fff;
  border-color: var(--shell06f6f-red-line);
  background: var(--shell06f6f-card-hi);
}

/* ------------------------------------------------------------------
 * Game grid (compact mobile tiles)
 * ------------------------------------------------------------------ */
.shell06f6f-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (min-width: 360px) {
  .shell06f6f-game-grid { gap: 7px; }
}
@media (min-width: 392px) {
  .shell06f6f-game-grid { grid-template-columns: repeat(5, 1fr); }
}

.shell06f6f-game-tile {
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  text-align: center;
  padding: 0;
}
.shell06f6f-game-tile:hover,
.shell06f6f-game-tile:focus-visible {
  border-color: var(--shell06f6f-red-line);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.18);
}
.shell06f6f-game-tile:active,
.shell06f6f-game-tile-pressed {
  transform: scale(0.94);
  border-color: var(--shell06f6f-red);
}
.shell06f6f-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0c0c0c;
  display: block;
}
.shell06f6f-game-name {
  font-size: 10.5px;
  line-height: 1.2;
  color: var(--shell06f6f-text);
  padding: 4px 4px 5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ------------------------------------------------------------------
 * Promo / content cards
 * ------------------------------------------------------------------ */
.shell06f6f-card {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius);
  padding: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.shell06f6f-card + .shell06f6f-card { margin-top: 10px; }

.shell06f6f-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shell06f6f-card-title .shell06f6f-badge {
  background: var(--shell06f6f-red);
  color: #fff;
  font-size: 9.5px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.shell06f6f-card p {
  margin: 0 0 8px;
  color: var(--shell06f6f-text-dim);
  font-size: 13px;
}
.shell06f6f-card p strong { color: var(--shell06f6f-text); }

.shell06f6f-inline-link {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px dashed var(--shell06f6f-red-line);
  padding-bottom: 1px;
}
.shell06f6f-inline-link:active { color: var(--shell06f6f-red); }

/* Promo ladder rows */
.shell06f6f-promo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shell06f6f-promo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.10), rgba(255, 0, 0, 0.02));
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 10px;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.shell06f6f-promo-row:active { transform: scale(0.97); border-color: var(--shell06f6f-red); }
.shell06f6f-promo-tag {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--shell06f6f-red);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-align: center;
  line-height: 1;
  box-shadow: var(--shell06f6f-shadow-red);
}
.shell06f6f-promo-body { flex: 1 1 auto; min-width: 0; }
.shell06f6f-promo-body b { display: block; font-size: 13px; color: #fff; }
.shell06f6f-promo-body span { display: block; font-size: 11.5px; color: var(--shell06f6f-text-dim); margin-top: 2px; }
.shell06f6f-promo-go {
  font-size: 11px;
  color: var(--shell06f6f-red);
  font-weight: 700;
  flex: 0 0 auto;
}

/* Testimonials */
.shell06f6f-testi-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shell06f6f-testi {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-left: 3px solid var(--shell06f6f-red);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 10px 12px;
}
.shell06f6f-testi-stars {
  color: var(--shell06f6f-gold);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.shell06f6f-testi p {
  margin: 0 0 6px;
  font-size: 12.5px;
  color: var(--shell06f6f-text-dim);
}
.shell06f6f-testi-meta {
  font-size: 11px;
  color: var(--shell06f6f-text-faint);
  display: flex;
  justify-content: space-between;
}

/* App download */
.shell06f6f-app-card {
  background: radial-gradient(120% 80% at 0% 0%, rgba(255, 0, 0, 0.18), transparent 60%), var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius);
  padding: 14px;
}
.shell06f6f-app-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.shell06f6f-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--shell06f6f-red-line);
  flex: 0 0 auto;
}
.shell06f6f-app-meta b { display: block; font-size: 15px; color: #fff; }
.shell06f6f-app-meta span { display: block; font-size: 11.5px; color: var(--shell06f6f-text-dim); margin-top: 2px; }
.shell06f6f-app-stars {
  color: var(--shell06f6f-gold);
  font-size: 11px;
  margin-top: 4px;
}
.shell06f6f-app-actions {
  display: flex;
  gap: 8px;
}
.shell06f6f-app-actions .shell06f6f-btn { flex: 1 1 0; }
.shell06f6f-btn-outline {
  background: transparent;
  color: var(--shell06f6f-text);
  border: 1px solid var(--shell06f6f-border-hi);
}
.shell06f6f-btn-outline:hover,
.shell06f6f-btn-outline:focus-visible {
  border-color: var(--shell06f6f-red-line);
  background: var(--shell06f6f-red-soft);
}

/* Achievement grid */
.shell06f6f-achv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.shell06f6f-achv {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.shell06f6f-achv-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--shell06f6f-red-soft);
  color: var(--shell06f6f-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 14px;
}
.shell06f6f-achv-body b { display: block; font-size: 12.5px; color: #fff; }
.shell06f6f-achv-body span { display: block; font-size: 11px; color: var(--shell06f6f-text-dim); margin-top: 2px; }

/* Key takeaways */
.shell06f6f-take-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shell06f6f-take-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--shell06f6f-text-dim);
}
.shell06f6f-take-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shell06f6f-red);
  margin-top: 7px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.18);
}
.shell06f6f-take-list li strong { color: #fff; }

/* Info / paragraph block */
.shell06f6f-prose p {
  margin: 0 0 10px;
  color: var(--shell06f6f-text-dim);
  font-size: 13px;
}
.shell06f6f-prose p strong { color: var(--shell06f6f-text); }
.shell06f6f-prose h3 {
  font-size: 14px;
  color: #fff;
  margin: 14px 0 6px;
}

/* ------------------------------------------------------------------
 * Homepage extended footer
 * ------------------------------------------------------------------ */
.shell06f6f-ext-footer {
  margin-top: 26px;
  padding: 16px 14px 18px;
  background: linear-gradient(180deg, #161616, #0f0f0f);
  border-top: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius) var(--shell06f6f-radius) 0 0;
}
.shell06f6f-ext-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.shell06f6f-ext-brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--shell06f6f-red-line);
}
.shell06f6f-ext-brand b { display: block; font-size: 14px; color: #fff; }
.shell06f6f-ext-brand span { display: block; font-size: 11.5px; color: var(--shell06f6f-text-dim); margin-top: 3px; }

.shell06f6f-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.shell06f6f-ext-promo {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 9px 10px;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.shell06f6f-ext-promo:active { transform: scale(0.96); border-color: var(--shell06f6f-red); }
.shell06f6f-ext-promo b { display: block; font-size: 12px; color: #fff; }
.shell06f6f-ext-promo span { display: block; font-size: 10.5px; color: var(--shell06f6f-text-faint); margin-top: 2px; }

.shell06f6f-ext-dir-label {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell06f6f-text-faint);
  margin: 8px 0 6px;
}
.shell06f6f-ext-dir {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.shell06f6f-ext-dir a {
  background: var(--shell06f6f-card);
  border: 1px solid var(--shell06f6f-border);
  border-radius: var(--shell06f6f-radius-sm);
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--shell06f6f-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.shell06f6f-ext-dir a::before {
  content: "›";
  color: var(--shell06f6f-red);
  font-weight: 800;
}
.shell06f6f-ext-dir a:hover,
.shell06f6f-ext-dir a:focus-visible {
  color: #fff;
  background: var(--shell06f6f-card-hi);
  border-color: var(--shell06f6f-red-line);
}
.shell06f6f-ext-dir a:active { transform: scale(0.97); }

.shell06f6f-ext-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--shell06f6f-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--shell06f6f-border-hi);
  font-size: 10.5px;
  color: var(--shell06f6f-text-faint);
  line-height: 1.5;
}

/* ------------------------------------------------------------------
 * Universal footer (shared, copyright + compact note)
 * ------------------------------------------------------------------ */
.shell06f6f-footer {
  background: #0b0b0b;
  border-top: 1px solid var(--shell06f6f-border);
  padding: 14px 14px calc(var(--shell06f6f-bottomnav-h) + 16px);
  text-align: center;
}
.shell06f6f-footer b {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}
.shell06f6f-footer p {
  margin: 0 0 4px;
  font-size: 11px;
  color: var(--shell06f6f-text-faint);
  line-height: 1.5;
}
.shell06f6f-footer .shell06f6f-footer-yr { color: var(--shell06f6f-red); font-weight: 700; }

/* ------------------------------------------------------------------
 * Mobile bottom navigation: compact icon shelf
 * ------------------------------------------------------------------ */
.shell06f6f-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  margin: 0 auto;
  max-width: 430px;
  height: var(--shell06f6f-bottomnav-h);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(12, 12, 12, 0.99));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--shell06f6f-border);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 4px;
}

.shell06f6f-bottomnav-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 2px 8px;
  color: var(--shell06f6f-text-faint);
  background: transparent;
  border: none;
  cursor: pointer;
  min-height: 44px;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.shell06f6f-bottomnav-item:active { transform: scale(0.9); }
.shell06f6f-bottomnav-item svg {
  width: 22px;
  height: 22px;
  display: block;
  transition: transform 0.18s ease;
}
.shell06f6f-bottomnav-item span {
  font-size: 9.5px;
  letter-spacing: 0.3px;
  font-weight: 600;
  line-height: 1;
}
.shell06f6f-bottomnav-item:hover,
.shell06f6f-bottomnav-item:focus-visible {
  color: var(--shell06f6f-text);
}

/* Active state: background carrier block + red icon */
.shell06f6f-bottomnav-active {
  color: #fff;
}
.shell06f6f-bottomnav-active::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 28px;
  background: var(--shell06f6f-red-soft);
  border: 1px solid var(--shell06f6f-red-line);
  border-radius: 14px;
  z-index: 0;
}
.shell06f6f-bottomnav-active svg {
  color: var(--shell06f6f-red);
  transform: translateY(-1px) scale(1.05);
  position: relative;
  z-index: 1;
}
.shell06f6f-bottomnav-active span {
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Center promo accent (slot 3) */
.shell06f6f-bottomnav-item.shell06f6f-bottomnav-promo svg {
  color: var(--shell06f6f-red);
}

/* ------------------------------------------------------------------
 * Utility
 * ------------------------------------------------------------------ */
.shell06f6f-hidden { display: none !important; }
.shell06f6f-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.shell06f6f-cta-band {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--shell06f6f-radius);
  background: linear-gradient(135deg, #1f0000, #2a0000 60%, #400000);
  border: 1px solid var(--shell06f6f-red-line);
  text-align: center;
}
.shell06f6f-cta-band b { display: block; color: #fff; font-size: 15px; margin-bottom: 3px; }
.shell06f6f-cta-band p { margin: 0 0 10px; font-size: 12px; color: var(--shell06f6f-text-dim); }
.shell06f6f-cta-band .shell06f6f-btn { width: 100%; }

@media (min-width: 410px) {
  .shell06f6f-ext-promos { grid-template-columns: repeat(3, 1fr); }
  .shell06f6f-ext-dir { grid-template-columns: repeat(3, 1fr); }
}
