* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0e23;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.home-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/background.webp") no-repeat center center;
  background-size: 60%;
  background-attachment: fixed;
  z-index: -1;
}

.main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.nav {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 14, 35, 0.95);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  position: relative;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  color: #a0a8b8;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: white;
}

.nav__link.active {
  color: #00ffc6;
}

.nav__link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ffc6;
  border-radius: 2px;
}

.nav__link--cta {
  background: #ff3e7a;
  color: white !important;
  border-radius: 30px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.nav__link--cta:hover {
  background: #ff2a6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 62, 122, 0.4);
}

.nav__link--cta.active {
  color: white !important;
}

.nav__link--cta.active::after {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
}

.nav__burger-line {
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.nav__burger.active .nav__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__burger.active .nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav__burger.active .nav__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  margin-top: 80px;
  text-align: center;
}

.hero__container {
  max-width: 800px;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content.show {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #00ffc6;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 198, 0.5), 0 0 20px rgba(0, 255, 198, 0.3),
    0 0 30px rgba(0, 255, 198, 0.2);
}

.hero__description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
  text-align: center;
}

.hero__cta {
  background: #ff3e7a;
  border: none;
  padding: 1rem 2.5rem;
  color: white;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 62, 122, 0.3);
}

.hero__cta:hover {
  background: #ff2a6a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 62, 122, 0.4);
}

.hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 62, 122, 0.3);
}

.footer {
  padding: 1.25rem 0 1.88rem;
  text-align: center;
  margin-top: auto;
}

.footer__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.pricing {
  padding: 100px 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pricing__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 3rem;
  color: #ff3e7a;
}

.pricing__toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__toggle-option {
  flex: 1;
  padding: 0.75rem 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #00ffc6;
}

.pricing__toggle-option.active {
  background: #00ffc6;
  color: #0a0e23;
}

.pricing__plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing__plan {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.pricing__plan:nth-child(1) {
  animation-delay: 0.1s;
}
.pricing__plan:nth-child(2) {
  animation-delay: 0.2s;
}
.pricing__plan:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing__plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 198, 0.3);
}

.pricing__plan-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing__plan-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00ffc6;
}

.pricing__plan-price {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff3e7a;
}

.pricing__plan-period {
  color: #aaa;
  font-size: 0.9rem;
}

.pricing__plan-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing__plan-feature {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  position: relative;
  padding-left: 1.5rem;
}

.pricing__plan-feature:last-child {
  border-bottom: none;
}

.pricing__plan-feature::before {
  content: "•";
  color: #00ffc6;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.pricing__plan-button {
  background: #ff3e7a;
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.pricing__plan-button:hover {
  background: #ff2a6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 62, 122, 0.4);
}

.docs {
  display: flex;
  padding: 100px 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.docs__sidebar {
  width: 280px;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 1rem;
  position: fixed;
  height: calc(100vh - 100px);
  overflow-y: auto;
  border-radius: 15px;
  margin: 0.5rem 0 1rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.docs__nav {
  padding: 0 0.25rem;
}

.docs__nav-item {
  display: block;
  padding: 0.75rem 0.75rem;
  color: #aaa;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.docs__nav-item:hover,
.docs__nav-item.active {
  background: rgba(0, 255, 198, 0.1);
  color: #00ffc6;
}

.docs__content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem 0 3rem 2rem;
  max-width: 900px;
}

.docs__section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  transition: all 0.3s ease;
}

.docs__section:hover {
  transform: translateY(-5px);
}

.docs__section:nth-child(1) {
  animation-delay: 0.1s;
}
.docs__section:nth-child(2) {
  animation-delay: 0.2s;
}
.docs__section:nth-child(3) {
  animation-delay: 0.3s;
}
.docs__section:nth-child(4) {
  animation-delay: 0.4s;
}

.docs__section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: #ff3e7a;
  border-bottom: 2px solid rgba(255, 62, 122, 0.3);
  padding-bottom: 0.5rem;
}

.docs__section-content {
  color: #aaa;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.docs__code {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 1rem 0.2rem 0.2rem 1rem;
  margin: 1.5rem 0;
  font-family: "Courier New", monospace;
  overflow-x: auto;
  border-left: 3px solid #00ffc6;
  position: relative;
}

.docs__code pre {
  margin: 0;
  white-space: pre-wrap;
  color: #00ffc6;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  max-height: 300px;
  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color: #00ffc6 #1a1a1a;
}

.docs__code pre::-webkit-scrollbar {
  width: 6px;
}

.docs__code pre::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 3px;
}

.docs__code pre::-webkit-scrollbar-thumb {
  background: #00ffc6;
  border-radius: 3px;
}

.docs__code pre::-webkit-scrollbar-thumb:hover {
  background: #00e6b8;
}

.docs__copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  color: #ff3e7a;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.docs__copy-btn:hover {
  background: rgba(255, 62, 122, 0.1);
}

.docs__copy-btn.copied {
  color: #00ffc6;
}

.docs__copy-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.login-page .main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem 2rem;
}

.login__container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  transition: all 0.3s ease;
}

.login__container:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 198, 0.3);
}

.login__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 2rem;
  color: #ff3e7a;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login__label {
  color: #aaa;
  font-size: 0.9rem;
}

.login__input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login__input:focus {
  outline: none;
  border-color: #ff3e7a;
  box-shadow: 0 0 0 2px rgba(255, 62, 122, 0.2);
}

.login__button {
  background: #ff3e7a;
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.login__button:hover {
  background: #ff2a6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 62, 122, 0.4);
}

.login__footer {
  text-align: center;
  margin-top: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}

.login__link {
  color: #00ffc6;
  text-decoration: none;
}

.login__link:hover {
  text-decoration: underline;
}

.docs-mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 35, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  padding: 0.75rem 1rem;
}

.docs-mobile-nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  gap: 0.5rem;
}

.docs-mobile-nav__item {
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  color: #aaa;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  white-space: nowrap;
}

.docs-mobile-nav__item:hover,
.docs-mobile-nav__item.active {
  background: rgba(0, 255, 198, 0.1);
  color: #00ffc6;
}

@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 0;
  }

  .home-page::before {
    background-size: 85%;
    background-attachment: scroll;
  }

  .nav__container {
    padding: 0 1.25rem;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 35, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.88rem;
    transition: all 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }

  .nav__links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
    padding: 0.94rem 0;
  }

  .nav__link--cta {
    padding: 1rem 3rem;
    font-size: 1.1rem;
  }

  .nav__burger {
    display: flex;
    right: 1.25rem;
  }

  .hero {
    margin-top: 70px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1.1rem;
  }

  .pricing {
    padding: 90px 1rem 1rem;
  }

  .pricing__plans {
    grid-template-columns: 1fr;
  }

  .docs {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .docs__sidebar {
    display: none;
  }

  .docs-mobile-nav {
    display: block;
    top: 50px;
  }

  .docs__content {
    margin-left: 0;
    padding: 1rem 1rem 2rem;
  }

  .login {
    padding: 80px 1rem 1rem;
  }

  .login__container {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.7rem 0;
  }

  .home-page::before {
    background-size: 95%;
  }

  .nav__container {
    padding: 0 1rem;
  }

  .hero {
    margin-top: 65px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .pricing {
    padding: 80px 1rem 1rem;
  }

  .pricing__title {
    font-size: 1.8rem;
  }

  .docs {
    padding-top: 110px;
    padding-bottom: 0;
  }

  .docs-mobile-nav {
    top: 49px;
    background: rgba(10, 14, 35, 0.95);
    padding: 0.6rem 0.75rem;
  }

  .docs__content {
    padding: 1rem 0.75rem 1.5rem;
  }

  .docs-mobile-nav__item {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .login {
    padding: 75px 0.75rem 0.75rem;
  }

  .login__container {
    padding: 1.5rem 1.25rem;
    max-width: 320px;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .pricing__plan {
    padding: 1.5rem;
  }

  .docs-mobile-nav__container {
    gap: 0.25rem;
  }

  .docs-mobile-nav__item {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  .login__container {
    padding: 1.25rem 1rem;
    max-width: 300px;
  }
}
.api-accordion {
  margin: 2rem 0;
}

.api-endpoint {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.api-endpoint:hover {
  border-color: rgba(0, 255, 198, 0.3);
}

.api-endpoint__header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  gap: 1rem;
  position: relative;
}

.api-endpoint__header:hover {
  background: rgba(0, 255, 198, 0.1);
}

.api-endpoint__method {
  background: #ff3e7a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}

.api-endpoint__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.api-endpoint__path {
  font-family: "Courier New", monospace;
  color: #00ffc6;
  font-size: 0.95rem;
  font-weight: 600;
}

.api-endpoint__summary {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.4;
}

.api-endpoint__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.api-endpoint__toggle-icon {
  width: 20px;
  height: 20px;
  fill: #aaa;
  transition: all 0.3s ease;
}

.api-endpoint.active .api-endpoint__toggle-icon {
  transform: rotate(180deg);
  fill: #00ffc6;
}

.api-endpoint__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.api-endpoint.active .api-endpoint__content {
  max-height: 100%;
  opacity: 1;
  padding: 1.5rem;
}

.api-endpoint__description {
  margin-bottom: 1.5rem;
  color: #aaa;
  line-height: 1.6;
}

.api-endpoint__description p {
  margin-bottom: 0.75rem;
}

.api-endpoint__description ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.api-endpoint__description li {
  margin-bottom: 0.5rem;
}

.api-endpoint__parameters,
.api-endpoint__responses {
  margin-bottom: 1.5rem;
}

.api-endpoint__parameters h4,
.api-endpoint__responses h4 {
  color: #ff3e7a;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.api-endpoint__parameters ul,
.api-endpoint__responses ul {
  margin-left: 1rem;
}

.api-endpoint__parameters li,
.api-endpoint__responses li {
  margin-bottom: 0.5rem;
  color: #aaa;
}

.api-endpoint__parameters code {
  background: rgba(255, 62, 122, 0.2);
  color: #ff3e7a;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
}

.api-endpoint__responses strong {
  color: #00ffc6;
}

.docs__copy-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: #ff3e7a;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: absolute;
}

.docs__copy-btn:hover {
  background: rgba(255, 62, 122, 0.1);
}

.docs__copy-btn.copied {
  color: #00ffc6;
}

.docs__copy-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.docs__copy-icon--default {
  opacity: 1;
}

.docs__copy-icon--success {
  opacity: 0;
  color: #00ffc6;
}

.docs__copy-btn.copied .docs__copy-icon--default {
  opacity: 0;
}

.docs__copy-btn.copied .docs__copy-icon--success {
  opacity: 1;
}

@media (max-width: 768px) {
  .api-endpoint__header {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .api-endpoint__method {
    min-width: 50px;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .api-endpoint__path {
    font-size: 0.85rem;
  }

  .api-endpoint__summary {
    font-size: 0.8rem;
  }

  .api-endpoint.active .api-endpoint__content {
    padding: 1rem;
  }

  .docs__code {
    padding: 1rem 0.2rem 0.2rem 1rem;
  }

  .docs__copy-btn {
    top: 0.5rem;
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .api-endpoint__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .api-endpoint__info {
    width: 100%;
  }

  .api-endpoint__toggle {
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .docs__code pre {
    padding-right: 2.5rem;
    max-height: 300px;
    overflow-y: auto;
  }
}
