body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0c0e14;
  color: #ffffff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 2em;
  font-weight: bold;
  color: #31d0aa;
  display: flex;
  align-items: center;
}
.logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #31d0aa;
}
.docs-content {
  background-color: #1a1d26;
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
}
h1, h2, h3 {
  color: #31d0aa;
}
.code-block {
  background-color: #2c2f3a;
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.code-block pre {
  margin: 0;
  white-space: pre-wrap;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #2c2f3a;
}
th {
  color: #31d0aa;
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #31d0aa;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #28b090;
}
.mascot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
}