.noscript-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #313131;
}

.noscript-container {
  background: #121212;
  padding: 40px 48px;
  border-radius: 20px;
  box-shadow: 0 4px 36px rgba(80, 0, 180, 0.25);
  max-width: 440px;
  width: min(440px, 92vw);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: noscriptFadeIn 0.4s ease-out;
}

.noscript-logo {
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.noscript-container h1 {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 600;
  color: #c57eff;
}

.noscript-container p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@keyframes noscriptFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .noscript-overlay { background: #1a1a1a; }
  .noscript-container {
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(80, 0, 180, 0.15);
  }
  .noscript-logo { width: 90px; margin-bottom: 20px; }
  .noscript-container h1 { font-size: 20px; margin-bottom: 10px; }
  .noscript-container p { font-size: 15px; line-height: 1.5; }
}
