
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;
}
main {
  display: flex;
  margin-top: 50px;
}
.sidebar {
  width: 250px;
  padding-right: 30px;
}
.content {
  flex: 1;
}
.doc-section {
  background-color: #1a1d26;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
  color: #31d0aa;
}
pre {
  background-color: #2c2f3a;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
}
code {
  font-family: 'Fira Code', monospace;
  color: #f8f8f2;
}
.toc {
  position: sticky;
  top: 20px;
}
.toc ul {
  list-style-type: none;
  padding-left: 0;
}
.toc li {
  margin-bottom: 10px;
}
.toc a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.toc a:hover {
  color: #31d0aa;
}
.mascot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
}