* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f0fc 0%, #efe6fb 50%, #f4ecff 100%);
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 720px;
  width: 100%;
  padding: 40px 30px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #6b3fa0;
  margin-bottom: 20px;
}

.illustration {
  margin: 20px auto 30px;
}

.illustration img {
  border-radius: 24px;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight {
  font-weight: 600;
  color: #6b3fa0;
  font-size: 1.2rem;
}

a.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #6b3fa0;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s;
}

a.button:hover {
  background: #592e85;
}

footer {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}


    .btn {
      display: inline-block;
      margin: 0.8rem;
      padding: 0.9rem 1.6rem;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;
    }
    .btn-batoto {
      background: #6f42c1;
      color: #fff;
    }
    .btn-batoto:hover {
      background: #563d7c;
    }
    .btn-discord {
      background: #5865f2;
      color: #fff;
    }
    .btn-discord:hover {
      background: #4047d0;
    }

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
 .illustration img {
    width: 100%;
  }
}
