.sk-screen {
  --sk-orange: #f59e0b;
  --sk-orange-deep: #ea580c;
  --sk-cyan: #22d3ee;
  --sk-purple: #a855f7;
  --sk-gold: #fbbf24;
  --sk-panel: rgba(255, 255, 255, 0.045);
  --sk-border: rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 100vh;
  padding: 10px 10px 92px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 85, 247, 0.18), transparent 42%),
    radial-gradient(ellipse at 80% 10%, rgba(34, 211, 238, 0.12), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(251, 191, 36, 0.08), transparent 45%),
    linear-gradient(180deg, #070b16 0%, #05070f 55%, #0a0614 100%);
  color: #f8fafc;
  overflow-x: hidden;
}

.sk-topbar.hidden {
  display: none !important;
}

.sk-boot-splash {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(251, 146, 60, 0.22), transparent 55%),
    linear-gradient(180deg, #120a04 0%, #070a12 100%);
}

.sk-boot-splash.is-active {
  display: flex;
}

.sk-boot-inner {
  width: min(320px, 92vw);
  text-align: center;
}

.sk-boot-emoji {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 10px 24px rgba(251, 146, 60, 0.4));
  animation: skBootPulse 1.2s ease-in-out infinite;
}

@keyframes skBootPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.sk-boot-title {
  margin: 14px 0 6px;
  font-size: 1.55rem;
  font-weight: 900;
}

.sk-boot-tag {
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.sk-boot-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 146, 60, 0.35);
  overflow: hidden;
}

.sk-boot-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ea580c, #fbbf24, #fdba74);
  background-size: 200% 100%;
  box-shadow: 0 0 14px rgba(251, 146, 60, 0.55);
  transition: width 0.08s linear;
  animation: skBootShimmer 1.4s linear infinite;
}

@keyframes skBootShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.sk-boot-percent {
  margin: 12px 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fdba74;
  font-variant-numeric: tabular-nums;
}

.sk-topbar {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sk-topbar-center {
  text-align: center;
}

.sk-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sk-sub {
  margin: 2px 0 0;
  font-size: 0.7rem;
  color: #94a3b8;
}

.sk-top-stats {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.sk-chip {
  display: inline-flex;
  justify-content: center;
  min-width: 58px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--sk-border);
}

.sk-chip-cw {
  color: #67e8f9;
  border-color: rgba(34, 211, 238, 0.35);
}

.sk-view {
  animation: skFade 0.25s ease;
}

.sk-view.hidden {
  display: none !important;
}

@keyframes skFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sk-hero {
  margin-top: 36px;
  text-align: center;
}

.sk-hero-emoji {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 8px 20px rgba(251, 146, 60, 0.35));
  animation: skPulse 2.4s ease-in-out infinite;
}

@keyframes skPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.sk-hero h2 {
  margin: 12px 0 8px;
  font-size: 1.6rem;
}

.sk-hero-tag {
  margin: 0 auto 22px;
  max-width: 280px;
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 0.95rem;
}

.sk-section-title {
  margin: 8px 0 6px;
  font-size: 1.15rem;
}

.sk-h3 {
  margin: 16px 0 8px;
  font-size: 0.95rem;
  color: #fdba74;
}

.sk-section-hint {
  margin: 0 0 14px;
  color: #94a3b8;
  font-size: 0.88rem;
}

.sk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.sk-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sk-btn-primary {
  background: linear-gradient(135deg, var(--sk-orange), var(--sk-orange-deep));
  color: #111827;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.sk-btn-accent {
  background: linear-gradient(135deg, var(--sk-cyan), #0284c7);
  color: #082f49;
}

.sk-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border: 1px solid var(--sk-border);
}

.sk-btn-mini {
  border: 0;
  border-radius: 8px;
  padding: 6px 8px;
  font: inherit;
  cursor: pointer;
  background: rgba(34, 211, 238, 0.15);
  color: #a5f3fc;
}

.sk-cars-grid {
  display: grid;
  gap: 10px;
}

.sk-owned-grid {
  max-height: 180px;
  overflow: auto;
  margin-bottom: 8px;
}

.sk-car-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--sk-border);
  background: var(--sk-panel);
  text-align: right;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.sk-car-card.is-selected {
  border-color: rgba(251, 146, 60, 0.7);
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.35), 0 8px 18px rgba(234, 88, 12, 0.2);
}

.sk-car-emoji {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.sk-car-meta strong {
  display: block;
}

.sk-car-meta small {
  color: #94a3b8;
}

.sk-race-track {
  margin: 12px 0 16px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.sk-lane {
  position: relative;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0 18px,
    rgba(255, 255, 255, 0.01) 18px 36px
  );
}

.sk-lane:last-child {
  margin-bottom: 0;
}

.sk-car-dot {
  position: absolute;
  top: 50%;
  inset-inline-start: 8%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  transition: inset-inline-start 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sk-lane.is-racing .sk-car-dot {
  inset-inline-start: 72%;
}

.sk-lane.is-win .sk-car-dot {
  inset-inline-start: 86%;
}

.sk-lane.is-lose .sk-car-dot {
  inset-inline-start: 58%;
}

.sk-nitro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sk-nitro-row .sk-btn {
  margin-top: 0;
  padding: 10px 6px;
  font-size: 0.82rem;
}

.sk-nitro-btn.is-active,
.sk-race-nitro.is-active,
.sk-mode-btn.is-active {
  outline: 2px solid #fbbf24;
}

.sk-status {
  min-height: 1.4em;
  margin-top: 12px;
  color: #fdba74;
  font-weight: 700;
  text-align: center;
}

.sk-hub-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.25);
  margin-bottom: 14px;
}

.sk-hub-car-emoji {
  margin: 0;
  font-size: 2.2rem;
}

.sk-muted {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.sk-center {
  text-align: center;
}

.sk-hub-actions,
.sk-quick-grid {
  display: grid;
  gap: 10px;
}

.sk-quick-grid {
  grid-template-columns: 1fr 1fr;
}

.sk-hub-tile {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--sk-border);
  background: var(--sk-panel);
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
}

.sk-hub-tile span {
  grid-row: span 2;
  font-size: 1.5rem;
}

.sk-hub-tile strong {
  font-size: 0.95rem;
}

.sk-hub-tile small {
  color: #94a3b8;
}

.sk-garage-parts {
  display: grid;
  gap: 8px;
}

.sk-part-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--sk-panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-part-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sk-part-row button[data-sk-upgrade] {
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sk-orange), var(--sk-orange-deep));
  color: #111827;
}

.sk-progress-block {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 14px;
  background: var(--sk-panel);
  border: 1px solid var(--sk-border);
}

.sk-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin: 6px 0 4px;
  color: #cbd5e1;
}

.sk-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 6px;
}

.sk-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sk-orange), var(--sk-cyan));
  border-radius: inherit;
}

.sk-bottom-nav {
  position: fixed;
  bottom: max(8px, env(safe-area-inset-bottom, 0px));
  inset-inline: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 3px;
  min-height: 64px;
  padding: 7px 5px 6px;
  border: 1px solid rgba(79, 70, 229, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 18, 34, 0.97), rgba(4, 7, 16, 0.98));
  backdrop-filter: blur(18px);
  z-index: 30;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.55),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.sk-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
  min-height: 50px;
  padding: 6px 2px 2px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #7d8aa5;
  font: inherit;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sk-nav-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.sk-nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px currentColor);
}

.sk-nav-btn small {
  max-width: 100%;
  font-size: 0.58rem;
  font-weight: 800;
  white-space: nowrap;
}

.sk-nav-btn.is-active {
  color: var(--sk-gold);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.1), transparent);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.sk-nav-btn:active {
  transform: scale(0.94);
}

.sk-nav-home {
  min-height: 68px;
  margin-top: -24px;
  color: #fbbf24;
  background: transparent !important;
}

.sk-nav-home-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(251, 191, 36, 0.8);
  border-radius: 50%;
  background: linear-gradient(145deg, #fbbf24, #d97706);
  color: #111827;
  box-shadow:
    0 0 0 5px #070b16,
    0 0 22px rgba(251, 191, 36, 0.52);
}

.sk-nav-home-icon svg {
  width: 25px;
  height: 25px;
  filter: none;
  stroke-width: 2.1;
}

.sk-nav-home small {
  color: #fde68a;
}

.sk-hub-body {
  padding-bottom: 8px;
}

.sk-mode-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.sk-mode-btn {
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid var(--sk-border);
  background: var(--sk-panel);
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sk-mode-btn strong {
  font-size: 0.72rem;
}

.sk-mode-btn small {
  font-size: 0.58rem;
  color: #94a3b8;
}

.sk-field {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.sk-field input,
.sk-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--sk-border);
  background: rgba(0, 0, 0, 0.35);
  color: #f8fafc;
  font: inherit;
}

.sk-card-soft {
  padding: 12px;
  border-radius: 14px;
  background: var(--sk-panel);
  border: 1px solid var(--sk-border);
  margin-bottom: 12px;
}

.sk-row-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sk-row-btns .sk-btn {
  margin-top: 8px;
}

.sk-list {
  display: grid;
  gap: 8px;
}

.sk-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--sk-panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
}

.sk-list-row button {
  border: 0;
  border-radius: 10px;
  padding: 6px 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--sk-orange), var(--sk-orange-deep));
  color: #111827;
}

.sk-list-row button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sk-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sk-back-mini {
  border: 0;
  background: transparent;
  color: #67e8f9;
  font: inherit;
  font-weight: 700;
  padding: 0 0 8px;
  cursor: pointer;
}

.sk-inv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sk-pass-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  max-height: 280px;
  overflow: auto;
}

.sk-pass-row {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 6px;
  align-items: center;
}

.sk-pass-row button {
  border: 0;
  border-radius: 10px;
  padding: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.sk-pass-row button:disabled {
  opacity: 0.4;
}

@media (max-width: 380px) {
  .sk-mode-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .sk-quick-grid,
  .sk-more-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Street Kings Dashboard (mock layout) ===== */
.sk-dash {
  margin: 0;
}

#skViewHub.sk-dash {
  position: relative;
}

#streetKingsSection:has(#skViewHub:not(.hidden)) {
  padding: 6px 6px 86px;
}

.sk-dash-home {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sk-dash-panel.hidden,
.sk-dash-home.hidden {
  display: none !important;
}

.sk-panel-back {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
}

.sk-dash-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 10px 11px 9px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 17px;
  background:
    radial-gradient(circle at 82% 0%, rgba(34, 211, 238, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(8, 15, 30, 0.96));
  box-shadow:
    0 9px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.sk-dash-user {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-left: 42px;
}

.sk-dash-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: linear-gradient(145deg, #312e81, #0f172a);
  border: 2px solid rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.25);
  overflow: hidden;
}

.sk-dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sk-dash-user-meta {
  min-width: 0;
}

.sk-dash-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-dash-name::after {
  content: " 👑";
  font-size: 0.75rem;
}

.sk-dash-level {
  margin: 0;
  font-size: 0.68rem;
  color: #cbd5e1;
  font-weight: 700;
}

.sk-dash-xp {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 3px;
}

.sk-dash-xp > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #fde68a);
  border-radius: inherit;
}

.sk-dash-xp-text {
  font-size: 0.58rem;
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.sk-dash-wallets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.sk-wallet {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font: inherit;
  cursor: pointer;
  justify-content: flex-start;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.025);
}

.sk-wallet strong {
  min-width: 0;
  font-size: 0.7rem;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-wallet-ico {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
}

.sk-wallet-plus {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
  background: #22c55e;
  color: #052e16;
}

.sk-wallet-coins {
  border-color: rgba(251, 191, 36, 0.45);
}
.sk-wallet-gems {
  border-color: rgba(168, 85, 247, 0.5);
}
.sk-wallet-cw {
  border-color: rgba(34, 211, 238, 0.5);
}

.sk-dash-menu {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(129, 140, 248, 0.42);
  background: linear-gradient(145deg, rgba(49, 46, 129, 0.48), rgba(15, 23, 42, 0.88));
  color: #e2e8f0;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 7px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
}

.sk-dash-menu svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sk-dash-menu:active {
  transform: scale(0.92);
}

.sk-quick-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.sk-quick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 2px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.sk-quick span {
  font-size: 1.15rem;
}
.sk-quick small {
  font-size: 0.55rem;
  font-weight: 700;
  color: #cbd5e1;
}
.sk-quick-vip {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: inset 0 0 12px rgba(251, 191, 36, 0.12);
}

.sk-badge {
  position: absolute;
  top: -4px;
  inset-inline-end: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #070b16;
}
.sk-badge-green {
  background: #22c55e;
}
.sk-dot {
  position: absolute;
  top: 4px;
  inset-inline-end: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px #070b16;
}

.sk-dash-main {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.sk-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sk-rail-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 7px 2px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.sk-rail-btn span {
  font-size: 1rem;
}
.sk-rail-btn small {
  font-size: 0.5rem;
  font-weight: 700;
  color: #94a3b8;
}

.sk-stage {
  position: relative;
  min-height: 292px;
  border-radius: 20px;
  padding: 10px 10px 12px;
  background:
    radial-gradient(ellipse at 50% 85%, rgba(34, 211, 238, 0.15), transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(168, 85, 247, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.35), rgba(2, 6, 23, 0.88));
  border: 1px solid rgba(129, 140, 248, 0.35);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(88, 28, 135, 0.15);
}

.sk-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.sk-car-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.sk-car-stars {
  color: #fbbf24;
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

.sk-rarity {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: rgba(168, 85, 247, 0.25);
  border: 1px solid rgba(192, 132, 252, 0.55);
  color: #e9d5ff;
}
.sk-rarity[data-rarity="common"] {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.45);
  color: #e2e8f0;
}
.sk-rarity[data-rarity="mythic"] {
  background: rgba(234, 88, 12, 0.35);
  border-color: rgba(251, 146, 60, 0.55);
  color: #ffedd5;
}

.sk-power-box {
  margin-top: 8px;
  display: inline-flex;
  flex-direction: column;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.sk-power-box strong {
  font-size: 1.05rem;
  color: #67e8f9;
  font-variant-numeric: tabular-nums;
}
.sk-power-box strong::after {
  content: " ▲";
  color: #4ade80;
  font-size: 0.7rem;
}
.sk-power-box small {
  font-size: 0.55rem;
  color: #94a3b8;
}

.sk-stage-side {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  min-width: 108px;
  max-width: 42%;
}

.sk-season-card {
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.85), rgba(76, 29, 149, 0.75));
  border: 1px solid rgba(216, 180, 254, 0.35);
  box-shadow: 0 8px 18px rgba(88, 28, 135, 0.35);
}
.sk-season-label {
  margin: 0;
  font-size: 0.55rem;
  font-weight: 800;
  opacity: 0.85;
  letter-spacing: 0.08em;
}
.sk-season-card h3 {
  margin: 2px 0;
  font-size: 0.72rem;
  font-weight: 900;
}
.sk-season-eta {
  margin: 0;
  font-size: 0.58rem;
  color: #f5d0fe;
}

.sk-fuel-card {
  padding: 8px;
  border-radius: 12px;
  background: rgba(8, 47, 73, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.sk-fuel-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
}
.sk-fuel-card strong {
  display: block;
  font-size: 0.95rem;
  color: #67e8f9;
}
.sk-fuel-eta {
  margin: 2px 0 6px;
  font-size: 0.55rem;
  color: #94a3b8;
}
.sk-fuel-ad {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 5px 4px;
  font: inherit;
  font-size: 0.55rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  color: #0f172a;
}

.sk-car-stage {
  position: relative;
  height: 118px;
  margin: -8px 0 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.sk-car-hero {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.sk-car-hero-emoji,
.sk-car-placeholder-mark.sk-car-emoji-lg {
  position: relative;
  z-index: 2;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(248, 250, 252, 0.95);
  filter: drop-shadow(0 12px 28px rgba(168, 85, 247, 0.55)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transform: scaleX(-1);
}

.sk-car-placeholder {
  display: none;
}

.sk-car-floor {
  position: absolute;
  bottom: 8px;
  width: 78%;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.45), transparent 72%);
  filter: blur(3px);
}

@keyframes skDashGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.sk-car-placeholder-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 58%);
  animation: skDashGlow 2.8s ease-in-out infinite;
}

.sk-race-actions {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 6px;
  align-items: end;
  position: relative;
  z-index: 3;
  margin-top: -4px;
}

.sk-act {
  border: 0;
  border-radius: 14px;
  color: #fff;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.sk-act small {
  font-size: 0.55rem;
  font-weight: 800;
}
.sk-act-quick {
  background: linear-gradient(180deg, #a855f7, #6b21a8);
  border: 1px solid rgba(216, 180, 254, 0.4);
}
.sk-act-quick span {
  font-size: 1.2rem;
}
.sk-act-vs {
  background: linear-gradient(180deg, #0ea5e9, #1d4ed8);
  border: 1px solid rgba(125, 211, 252, 0.4);
}
.sk-act-vs span {
  font-size: 0.95rem;
  font-weight: 900;
}
.sk-act-main {
  background: linear-gradient(180deg, #fde047, #f59e0b 55%, #d97706);
  color: #111827;
  border: 1px solid rgba(254, 240, 138, 0.7);
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.35), 0 10px 20px rgba(0, 0, 0, 0.35);
  min-height: 58px;
  border-radius: 16px;
}
.sk-act-main strong {
  font-size: 1.12rem;
  font-weight: 900;
}
.sk-act-main small {
  font-size: 0.58rem;
  font-weight: 800;
}

.sk-mid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.sk-mid {
  border-radius: 14px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 118px;
}
.sk-mid h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
}
.sk-mid-ico {
  font-size: 1.2rem;
}
.sk-mid-tour {
  background: linear-gradient(160deg, rgba(109, 40, 217, 0.55), rgba(30, 27, 75, 0.75));
}
.sk-mid-pass {
  background: linear-gradient(160deg, rgba(8, 47, 73, 0.85), rgba(30, 58, 138, 0.65));
}
.sk-mid-club {
  background: linear-gradient(160deg, rgba(20, 83, 45, 0.55), rgba(15, 23, 42, 0.8));
}
.sk-mid-kicker {
  margin: 0;
  font-size: 0.55rem;
  color: #93c5fd;
  font-weight: 800;
}
.sk-mid-sub,
.sk-mid p {
  margin: 0;
  font-size: 0.55rem;
  color: #cbd5e1;
}
.sk-mid-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.sk-mid-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  border-radius: inherit;
}
.sk-mid-crest {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(145deg, #fbbf24, #b45309);
  color: #111;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}
.sk-mid-btn {
  margin-top: auto;
  border: 0;
  border-radius: 8px;
  padding: 6px 4px;
  font: inherit;
  font-size: 0.55rem;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.sk-mid-btn-gold {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #111;
}
.sk-mid-btn-green {
  background: linear-gradient(90deg, #22c55e, #15803d);
  color: #fff;
}

.sk-cities {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.sk-cities::-webkit-scrollbar {
  display: none;
}

.sk-city {
  flex: 0 0 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.65);
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.sk-city.is-active {
  border-color: rgba(251, 191, 36, 0.75);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.35), 0 0 16px rgba(251, 191, 36, 0.2);
}
.sk-city.is-locked {
  opacity: 0.55;
}
.sk-city-thumb {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(168, 85, 247, 0.3)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 6px, transparent 6px 12px);
}
.sk-city-thumb[data-city="tokyo"] {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}
.sk-city-thumb[data-city="dubai"] {
  background: linear-gradient(135deg, #0ea5e9, #f59e0b);
}
.sk-city-thumb[data-city="downtown"] {
  background: linear-gradient(135deg, #334155, #64748b);
}
.sk-city-thumb[data-city="desert"] {
  background: linear-gradient(135deg, #d97706, #92400e);
}
.sk-city-thumb[data-city="harbor"] {
  background: linear-gradient(135deg, #0369a1, #0f172a);
}
.sk-city-thumb[data-city="snow"] {
  background: linear-gradient(135deg, #e2e8f0, #64748b);
}
.sk-city-thumb[data-city="king"] {
  background: linear-gradient(135deg, #fbbf24, #7c2d12);
}
.sk-city strong {
  font-size: 0.62rem;
  font-weight: 800;
}
.sk-city small {
  font-size: 0.55rem;
  color: #94a3b8;
}

.sk-ticker {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sk-ticker-chat,
.sk-ticker-offer {
  border: 0;
  border-radius: 10px;
  padding: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.sk-ticker-chat {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}
.sk-ticker-offer {
  background: linear-gradient(90deg, #fde047, #f59e0b);
  color: #111;
  font-size: 0.62rem;
  white-space: nowrap;
  position: relative;
  padding-inline-end: 14px;
}
.sk-ticker-offer::after {
  content: "";
  position: absolute;
  top: 4px;
  inset-inline-end: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px #111;
}
.sk-ticker-text {
  margin: 0;
  font-size: 0.68rem;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sk-dash-status {
  margin: 0;
  font-size: 0.75rem;
}

@media (max-width: 360px) {
  .sk-dash-wallets {
    gap: 4px;
  }
  .sk-wallet {
    padding-inline: 4px;
  }
  .sk-wallet-plus {
    display: none;
  }
  .sk-mid-cards {
    grid-template-columns: 1fr;
  }
}

.sk-car-placeholder-mark.sk-car-emoji-lg {
  font-size: 4.2rem;
  transform: scaleX(-1);
}

.sk-dash-panel .sk-hub-body {
  padding: 4px 2px 12px;
}

.sk-panel-screen {
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12), transparent 55%),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.sk-panel-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fde68a;
}

.sk-race-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(6px);
}

.sk-race-overlay.hidden {
  display: none !important;
}

.sk-race-overlay-inner {
  width: min(340px, 92vw);
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.sk-race-track--overlay {
  margin: 0 0 12px;
}

.sk-overlay-status {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fdba74;
  min-height: 2.4em;
}

.sk-start-overlay {
  position: absolute;
  inset: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

.sk-start-overlay.hidden {
  display: none !important;
}

.sk-start-card {
  width: min(300px, 88vw);
  padding: 22px 18px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.sk-start-emoji {
  margin: 0;
  font-size: 2.5rem;
}

.sk-start-title {
  margin: 10px 0 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.sk-start-tag {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.sk-start-btn {
  margin-top: 0;
}
