.noscript-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  font-family: "Arial", sans-serif;
}

.noscript-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  width: 90%;
  padding: 24px 20px;
  text-align: center;
  line-height: 1.6;
  color: #333;
  animation: noscript-fade 0.4s ease;
}

.noscript-modal h1 {
  font-size: 1.6rem;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.noscript-modal h2 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 1rem 0 0.5rem;
}

.noscript-modal a {
  color: #3498db;
  text-decoration: none;
}
.noscript-modal a:hover {
  color: #1e70bf;
  text-decoration: underline;
}

@keyframes noscript-fade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}