    body {
      font-family: 'Poppins', sans-serif;
      background-color: #6b21a8;
      color: white;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .main-container {
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 16px;
      padding: 2rem 2.5rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      text-align: left;
      margin: 2rem auto 1rem auto;
      position: relative;
      color: white;
      animation: fadeIn 0.7s;
    }
    h1, h2 {
      font-family: 'Poppins', sans-serif;
      color: #c084fc;
      margin-top: 1.5rem;
      margin-bottom: 0.7rem;
      letter-spacing: 0.01em;
    }
    h1 {
      font-size: 2.2rem;
      margin-top: 0;
      margin-bottom: 1.5rem;
      background: linear-gradient(90deg, #c084fc, #a855f7, #7e22ce);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    ul, p {
      color: #fff;
      font-size: 1.08rem;
      line-height: 1.7;
      margin-bottom: 1.1rem;
    }
    ul {
      padding-left: 1.5rem;
      margin-bottom: 1.5rem;
    }
    li {
      margin-bottom: 0.5rem;
    }
    a {
      color: #c084fc;
      text-decoration: underline;
      transition: color 0.2s;
    }
    a:hover {
      color: #a855f7;
    }
    code {
      background: rgba(127, 17, 224, 0.15);
      color: #f3e8ff;
      border-radius: 4px;
      padding: 2px 6px;
      font-size: 0.98em;
    }
    @media (max-width: 600px) {
      .main-container {
        padding: 1rem 0.7rem;
      }
      h1 {
        font-size: 1.4rem;
      }
      h2 {
        font-size: 1.1rem;
      }
    }
    footer {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

footer a {
  color: #c084fc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #a855f7;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  margin: 2rem 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  color: white;
}

.gradient-text {
  background: linear-gradient(90deg, #c084fc, #a855f7, #7e22ce);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}