body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1f2937;
  margin: 0;
  overflow-x: hidden;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1e40af, #a855f7, #1e40af);
  background-size: 400%;
  animation: gradient 10s ease infinite;
  opacity: 0.1;
  z-index: -1;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.container {
  max-width: 7xl;
  width: 90%;
  margin: 3rem auto;
}
.section {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
}
a {
  color: #93c5fd;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover {
  color: #60a5fa;
}
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #365177;
  text-align: center;
  margin-bottom: 2rem;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
p,
ul {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.1rem;
}
ul {
  list-style: disc;
  padding-left: 2rem;
}
ul ul {
  list-style-type: square;
  padding-left: 2.5rem;
  font-size: 1rem;
  color: #6b7280;
}
.text-red {
  color: #dc2626;
  font-size: 1.8rem;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 1.5rem;
}
th,
td {
  border: 1px solid #e5e7eb;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
}
th {
  background-color: #1f2937;
  color: #ffffff;
  font-weight: 600;
}
tr:nth-child(even) {
  background-color: #f9fafb;
}
tr:hover {
  background-color: #eff6ff;
  transition: background-color 0.3s;
}
.noscript-warning {
  background-color: #fef2f2;
  color: #dc2626;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.tagcolor {
  color: #3593eb;
}
.titles{
  color: #000000;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .section {
    padding: 1.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  th,
  td {
    font-size: 0.85rem;
    padding: 15px;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
