:root {
  --critical-bg: #fbfaf8;
  --critical-ink: #15171c;
  --critical-red: #e8192c;
}
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--critical-bg);
  color: var(--critical-ink);
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#root {
  min-height: 100vh;
  background: var(--critical-bg);
}
.boot-shell {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFBFB;
  overflow: hidden;
}
.boot-shell__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}
.boot-shell__logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0;
  animation: bootFadeIn 0.5s ease forwards;
}
.boot-shell__progress {
  width: 200px;
  height: 3px;
  background: rgba(232, 25, 44, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.boot-shell__bar {
  height: 100%;
  background: linear-gradient(135deg, #e8192c 0%, #C0142A 100%);
  border-radius: 4px;
  width: 0%;
  animation: bootProgressPulse 1.5s ease-in-out infinite;
}
@keyframes bootFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bootProgressPulse {
  0% { width: 0%; left: 0; }
  50% { width: 40%; left: 30%; }
  100% { width: 0%; left: 100%; }
}
noscript .seo-fallback {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--critical-red);
  color: white;
  padding: 8px 16px;
  z-index: 100000;
  transition: top 0.3s;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}
img {
  max-width: 100%;
  height: auto;
}
