/**
 * Noscript Warning Styles
 * This file is loaded directly (not processed by Vite)
 * Only displayed when JavaScript is disabled
 */

.noscript-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  padding: 20px;
  z-index: 9999;
  margin: 0;
}

.noscript-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  text-align: center;
}

.noscript-content h1 {
  color: #e53935;
  font-size: 24px;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.noscript-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.noscript-content p:last-child {
  margin-bottom: 0;
}

.noscript-content strong {
  color: #333;
  font-weight: 600;
}

.noscript-footer {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}

