.noscript-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.noscript-card {
  max-width: 520px;
  width: calc(100% - 2rem);
  padding: 2.5rem 2.75rem;
  border-radius: 12px;
  background: #ffffff;
  color: #111;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.noscript-card h1 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0;
  color: #ef4b4c;
}

.noscript-card p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.noscript-card::before {
  content: "⚠️";
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}
