@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");
body {
  font-family: "Inter", sans-serif;
  color: #e2e8f0;
}
.aurora-background {
  background: linear-gradient(
    135deg,
    #1b3a8e,
    #33862e,
    #483081,
    #943c91,
    #9c5930
  );
  background-size: 400% 400%;
  animation: aurora-flow 20s ease infinite;
}
@keyframes aurora-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.text-shadow {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.inline-code {
  background-color: rgba(129, 140, 248, 0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: monospace;
  font-size: 0.9em;
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.2);
}
header {
  transition: all 0.3s ease-in-out;
  background-color: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-scrolled {
  background-color: rgba(15, 23, 42, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
nav a {
  color: #cbd5e1;
}
nav a:hover {
  color: white;
}
nav a.text-indigo-500 {
  color: #a5b4fc !important;
  font-weight: 600;
}
.card-base {
  border-radius: 1rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
[data-animate="reveal-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--animation-delay, 0s);
}
[data-animate="reveal-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.validator-textarea {
  background-color: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 1);
  color: #e2e8f0;
  border-radius: 0.5rem;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.validator-textarea:focus {
  outline: none;
  border-color: #818cf8;
  box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.4);
}
.action-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.action-btn:hover {
  transform: translateY(-2px);
}
.action-btn:disabled {
  background-color: #475569;
  cursor: not-allowed;
  transform: none;
}
@media (min-width: 640px) {
  .action-btn {
    width: auto;
  }
}
.message-success {
  background-color: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #bbf7d0;
}
.message-success i {
  color: #4ade80;
}
.message-warning {
  background-color: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  color: #fef08a;
}
.message-warning i {
  color: #facc15;
}
.message-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fecaca;
}
.message-error i {
  color: #f87171;
}
input:checked ~ .toggle-bg {
  background-color: #4f46e5;
}
input:checked ~ .toggle-dot {
  transform: translateX(1.5rem);
}
.toggle-dot {
  transition: transform 0.2s ease-in-out;
}
#auto-fix-container.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#auto-fix-container.disabled label {
  pointer-events: none;
}
footer.bg-slate-800 {
  background-color: #1e293b;
}
#scrollToTopBtn {
  background-color: #818cf8;
}
#scrollToTopBtn:hover {
  background-color: #6366f1;
}
#mobile-menu {
  background-color: #1e293b;
  border-top-color: rgba(255, 255, 255, 0.1);
}
#mobile-menu a {
  color: #cbd5e1;
}
#mobile-menu a:hover {
  color: white;
}
#mobile-menu a.text-indigo-500 {
  color: #a5b4fc !important;
}
main > div > p {
  color: #e2e8f0;
}
