@charset "UTF-8";
.api-docs-modern {
  background: #0a0e27;
  color: white;
  min-height: 100vh;
}
.api-docs-modern .api-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}
.api-docs-modern .api-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(107, 95, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(196, 113, 237, 0.1) 0%, transparent 50%);
}
.api-docs-modern .api-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.api-docs-modern .api-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: api-float 20s ease-in-out infinite;
}
.api-docs-modern .api-gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #6b5fff 0%, #c471ed 100%);
  top: -10%;
  left: -10%;
}
.api-docs-modern .api-gradient-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f76b1c 0%, #fad961 100%);
  top: 50%;
  right: -10%;
  animation-delay: 5s;
}
@keyframes api-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}
.api-docs-modern .api-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.api-docs-modern .api-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.api-docs-modern .api-hero-tag {
  display: inline-block;
  background: rgba(107, 95, 255, 0.2);
  color: #b8b3ff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(107, 95, 255, 0.3);
}
.api-docs-modern .api-hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.api-docs-modern .api-hero-title a {
  color: white;
  text-decoration: none;
  background: linear-gradient(90deg, #6b5fff 0%, #c471ed 50%, #f76b1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}
.api-docs-modern .api-hero-title a:hover {
  opacity: 0.8;
}
.api-docs-modern .api-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 40px;
}
.api-docs-modern .api-version-switch {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(107, 95, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.api-docs-modern .api-version-switch:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(107, 95, 255, 0.4);
}
.api-docs-modern .api-version-switch h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: white;
}
.api-docs-modern .api-version-switch p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 24px;
}
.api-docs-modern .api-version-switch .api-switch-btn {
  background: linear-gradient(135deg, #6b5fff 0%, #c471ed 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(107, 95, 255, 0.3);
}
.api-docs-modern .api-version-switch .api-switch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(107, 95, 255, 0.5);
}
.api-docs-modern .api-nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0;
  justify-content: center;
}
.api-docs-modern .api-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(107, 95, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.api-docs-modern .api-chip a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.api-docs-modern .api-chip:hover {
  background: rgba(107, 95, 255, 0.2);
  border-color: rgba(107, 95, 255, 0.4);
  transform: translateY(-2px);
}
.api-docs-modern .api-chip:hover a {
  color: white;
}
.api-docs-modern .api-content {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.api-docs-modern .api-endpoint {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(107, 95, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  transition: all 0.3s ease;
}
.api-docs-modern .api-endpoint:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(107, 95, 255, 0.4);
  box-shadow: 0 10px 40px rgba(107, 95, 255, 0.2);
}
.api-docs-modern .api-endpoint h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 24px;
  color: white;
  letter-spacing: -0.5px;
}
.api-docs-modern .api-endpoint h2 a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.api-docs-modern .api-endpoint h2 a:hover {
  background: linear-gradient(90deg, #6b5fff 0%, #c471ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.api-docs-modern .api-endpoint h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: rgba(255, 255, 255, 0.95);
}
.api-docs-modern .api-endpoint p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 16px 0;
  font-size: 16px;
}
.api-docs-modern .codeExample {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 14, 39, 0.3) 100%);
  border: 1px solid rgba(107, 95, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin: 24px 0;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.api-docs-modern .codeExample::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(107, 95, 255, 0.6) 20%, rgba(196, 113, 237, 0.6) 50%, rgba(247, 107, 28, 0.6) 80%, transparent 100%);
}
.api-docs-modern .codeExample:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(10, 14, 39, 0.4) 100%);
  border-color: rgba(107, 95, 255, 0.5);
  box-shadow: 0 8px 32px rgba(107, 95, 255, 0.15);
}
.api-docs-modern .codeExample .code {
  margin-bottom: 32px;
  background-color: transparent;
}
.api-docs-modern .codeExample .code:last-child {
  margin-bottom: 0;
}
.api-docs-modern .codeExample .code-section-title {
  color: #b8b3ff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.api-docs-modern .codeExample .code-section-title .material-icons {
  color: #6b5fff;
}
.api-docs-modern .codeExample .lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 16px 0 8px;
}
.api-docs-modern .codeExample .lbl.lbl-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  margin: 64px 0 5px;
  flex: 1;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .lbl.lbl-subtitle {
    margin: 24px 0 8px;
    font-size: 15px;
  }
}
.api-docs-modern .codeExample .lbl.lblCredits {
  background: rgba(107, 95, 255, 0.2);
  border: 1px solid rgba(107, 95, 255, 0.4);
  color: #b8b3ff;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 0 0 16px;
  transition: all 0.3s ease;
}
.api-docs-modern .codeExample .lbl.lblCredits:hover {
  background: rgba(107, 95, 255, 0.3);
  border-color: rgba(107, 95, 255, 0.6);
}
.api-docs-modern .codeExample .lbl.lblV2 {
  margin: 8px 0;
}
.api-docs-modern .codeExample .lbl.lblV2.codepen-link {
  margin: 0;
}
.api-docs-modern .codeExample .lbl.lblV2.codepen-link a {
  background: linear-gradient(135deg, #6b5fff 0%, #c471ed 100%);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(107, 95, 255, 0.3);
}
.api-docs-modern .codeExample .lbl.lblV2.codepen-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 95, 255, 0.5);
}
.api-docs-modern .codeExample .lbl.lblV2.codepen-link a .material-icons {
  font-size: 18px;
}
.api-docs-modern .codeExample .lbl-subtitle + .lblV2.codepen-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: -48px 0 16px;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .lbl-subtitle + .lblV2.codepen-link {
    margin: 0 0 16px;
    justify-content: flex-start;
  }
}
.api-docs-modern .codeExample .credits-badge-link {
  text-decoration: none;
}
.api-docs-modern .codeExample .method-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.api-docs-modern .codeExample .method-badge.method-get {
  background: rgba(76, 217, 100, 0.2);
  color: #4cd964;
  border: 1px solid rgba(76, 217, 100, 0.4);
}
.api-docs-modern .codeExample .method-badge.method-post {
  background: rgba(107, 95, 255, 0.2);
  color: #b8b3ff;
  border: 1px solid rgba(107, 95, 255, 0.4);
}
.api-docs-modern .codeExample pre {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 1px solid rgba(107, 95, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  overflow-x: auto;
  margin: 16px 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.api-docs-modern .codeExample pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(107, 95, 255, 0.5) 50%, transparent 100%);
}
.api-docs-modern .codeExample pre code {
  color: #e4e4e7;
  font-family: "Monaco", "Menlo", "Consolas", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.7;
  display: block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.api-docs-modern .codeExample pre.post-example {
  background: linear-gradient(135deg, rgba(26, 14, 39, 0.8) 0%, rgba(10, 0, 20, 0.6) 100%);
  border-color: rgba(196, 113, 237, 0.3);
}
.api-docs-modern .codeExample pre::-webkit-scrollbar {
  height: 8px;
}
.api-docs-modern .codeExample pre::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.api-docs-modern .codeExample pre::-webkit-scrollbar-thumb {
  background: rgba(107, 95, 255, 0.5);
  border-radius: 4px;
}
.api-docs-modern .codeExample pre::-webkit-scrollbar-thumb:hover {
  background: rgba(107, 95, 255, 0.7);
}
.api-docs-modern .codeExample .api-params-table,
.api-docs-modern .codeExample table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table,
  .api-docs-modern .codeExample table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), radial-gradient(farthest-side at 100% 50%, rgba(107, 95, 255, 0.6), transparent), radial-gradient(farthest-side at 0% 50%, rgba(107, 95, 255, 0.6), transparent);
    background-position: 0 0, 100% 0, 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%, 40px 100%, 40px 100%;
    background-attachment: local, scroll, scroll;
  }
}
.api-docs-modern .codeExample .api-params-table thead tr,
.api-docs-modern .codeExample table thead tr {
  background: rgba(107, 95, 255, 0.2);
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table thead,
  .api-docs-modern .codeExample table thead {
    display: table;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table tbody,
  .api-docs-modern .codeExample table tbody {
    display: table;
    width: 100%;
  }
}
.api-docs-modern .codeExample .api-params-table th, .api-docs-modern .codeExample .api-params-table td,
.api-docs-modern .codeExample table th,
.api-docs-modern .codeExample table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(107, 95, 255, 0.1);
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table th, .api-docs-modern .codeExample .api-params-table td,
  .api-docs-modern .codeExample table th,
  .api-docs-modern .codeExample table td {
    padding: 10px 12px;
    font-size: 13px;
    min-width: 100px;
  }
}
.api-docs-modern .codeExample .api-params-table th,
.api-docs-modern .codeExample table th {
  background: rgba(107, 95, 255, 0.2);
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.api-docs-modern .codeExample .api-params-table th .material-icons,
.api-docs-modern .codeExample table th .material-icons {
  vertical-align: middle;
  margin-right: 4px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table th,
  .api-docs-modern .codeExample table th {
    font-size: 11px;
    white-space: nowrap;
  }
}
.api-docs-modern .codeExample .api-params-table td,
.api-docs-modern .codeExample table td {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.api-docs-modern .codeExample .api-params-table td.key,
.api-docs-modern .codeExample table td.key {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  width: 25%;
  background-color: rgba(236, 236, 236, 0.031372549);
}
.api-docs-modern .codeExample .api-params-table td.key code,
.api-docs-modern .codeExample table td.key code {
  background: rgba(107, 95, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  color: #b8b3ff;
  font-size: 13px;
  font-weight: 600;
  margin-left: 5px;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table td.key code,
  .api-docs-modern .codeExample table td.key code {
    font-size: 11px;
    padding: 3px 8px;
    margin-left: 0;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table td.key,
  .api-docs-modern .codeExample table td.key {
    min-width: 120px;
  }
}
.api-docs-modern .codeExample .api-params-table td.type,
.api-docs-modern .codeExample table td.type {
  width: 15%;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table td.type,
  .api-docs-modern .codeExample table td.type {
    min-width: 80px;
  }
}
.api-docs-modern .codeExample .api-params-table td.required,
.api-docs-modern .codeExample table td.required {
  width: 12%;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table td.required,
  .api-docs-modern .codeExample table td.required {
    min-width: 70px;
  }
}
.api-docs-modern .codeExample .api-params-table td.description,
.api-docs-modern .codeExample table td.description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.api-docs-modern .codeExample .api-params-table td code,
.api-docs-modern .codeExample table td code {
  background: rgba(107, 95, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  color: #b8b3ff;
  font-size: 13px;
}
.api-docs-modern .codeExample .api-params-table tr,
.api-docs-modern .codeExample table tr {
  transition: background 0.2s ease;
}
.api-docs-modern .codeExample .api-params-table tr:hover,
.api-docs-modern .codeExample table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.api-docs-modern .codeExample .api-params-table tr:last-child td,
.api-docs-modern .codeExample table tr:last-child td {
  border-bottom: none;
}
.api-docs-modern .codeExample .api-params-table.jsonPayload,
.api-docs-modern .codeExample table.jsonPayload {
  margin: 8px 0;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-params-table.jsonPayload,
  .api-docs-modern .codeExample table.jsonPayload {
    display: table;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), radial-gradient(farthest-side at 100% 50%, rgba(107, 95, 255, 0.6), transparent), radial-gradient(farthest-side at 0% 50%, rgba(107, 95, 255, 0.6), transparent);
    background-position: 0 0, 100% 0, 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%, 40px 100%, 40px 100%;
    background-attachment: local, scroll, scroll;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload thead, .api-docs-modern .codeExample .api-params-table.jsonPayload tbody,
  .api-docs-modern .codeExample table.jsonPayload thead,
  .api-docs-modern .codeExample table.jsonPayload tbody {
    display: table-header-group;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload tbody,
  .api-docs-modern .codeExample table.jsonPayload tbody {
    display: table-row-group;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload tr,
  .api-docs-modern .codeExample table.jsonPayload tr {
    display: table-row;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload th, .api-docs-modern .codeExample .api-params-table.jsonPayload td,
  .api-docs-modern .codeExample table.jsonPayload th,
  .api-docs-modern .codeExample table.jsonPayload td {
    display: table-cell;
    white-space: nowrap;
    min-width: auto;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload th,
  .api-docs-modern .codeExample table.jsonPayload th {
    font-size: 10px;
    padding: 8px 10px;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload td,
  .api-docs-modern .codeExample table.jsonPayload td {
    font-size: 12px;
    padding: 8px 10px;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload td.key,
  .api-docs-modern .codeExample table.jsonPayload td.key {
    min-width: 80px;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload td.key code,
  .api-docs-modern .codeExample table.jsonPayload td.key code {
    font-size: 10px;
    padding: 2px 6px;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload td.type,
  .api-docs-modern .codeExample table.jsonPayload td.type {
    min-width: 60px;
  }
  .api-docs-modern .codeExample .api-params-table.jsonPayload td.required,
  .api-docs-modern .codeExample table.jsonPayload td.required {
    min-width: 50px;
  }
}
.api-docs-modern .codeExample .type-badge {
  display: inline-block;
  background: rgba(196, 113, 237, 0.2);
  color: #c471ed;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(196, 113, 237, 0.3);
  margin-left: 5px;
}
.api-docs-modern .codeExample .required-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.api-docs-modern .codeExample .required-badge.required-yes {
  background: rgba(76, 217, 100, 0.2);
  color: #4cd964;
  border: 1px solid rgba(76, 217, 100, 0.3);
}
.api-docs-modern .codeExample .required-badge.required-no {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.api-docs-modern .codeExample .api-request-table {
  margin: 0;
  background: transparent;
  border: none;
}
.api-docs-modern .codeExample .api-request-table tbody {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.api-docs-modern .codeExample .api-request-table tr {
  border-bottom: 1px solid rgba(107, 95, 255, 0.1);
  display: table;
  width: 100%;
  table-layout: fixed;
}
.api-docs-modern .codeExample .api-request-table tr:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table tr {
    display: block;
    border-bottom: 2px solid rgba(107, 95, 255, 0.3);
    padding: 16px 0;
  }
  .api-docs-modern .codeExample .api-request-table tr:first-child {
    padding-top: 0;
  }
  .api-docs-modern .codeExample .api-request-table tr:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.api-docs-modern .codeExample .api-request-table td {
  padding: 16px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table td {
    display: block;
    padding: 8px 16px;
    width: 100% !important;
  }
}
.api-docs-modern .codeExample .api-request-table td.key {
  width: 20%;
  font-weight: 600;
  color: #b8b3ff;
  vertical-align: top;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table td.key {
    width: 100% !important;
    padding-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
  }
  .api-docs-modern .codeExample .api-request-table td.key .material-icons {
    font-size: 16px;
    margin-right: 4px;
  }
}
.api-docs-modern .codeExample .api-request-table td.description {
  width: 80%;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table td.description {
    width: 100% !important;
    padding-top: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.api-docs-modern .codeExample .api-request-table .line {
  margin: 0;
}
.api-docs-modern .codeExample .api-request-table .line.url-line {
  font-family: "Monaco", "Courier New", monospace;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 16px;
  border-radius: 8px;
  color: #4cd964;
  word-break: break-all;
  border: 1px solid rgba(107, 95, 255, 0.2);
  margin: 0;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table .line.url-line {
    font-size: 12px;
    padding: 10px 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
.api-docs-modern .codeExample .api-request-table .line.header-line {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 13px;
  padding: 6px 0;
  margin: 0;
}
.api-docs-modern .codeExample .api-request-table .line.header-line:first-child {
  padding-top: 0;
}
.api-docs-modern .codeExample .api-request-table .line.header-line:last-child {
  padding-bottom: 0;
}
.api-docs-modern .codeExample .api-request-table .line.header-line .header-key {
  color: #c471ed;
  font-weight: 600;
}
@media (max-width: 768px) {
  .api-docs-modern .codeExample .api-request-table .line.header-line {
    font-size: 12px;
    padding: 4px 0;
    word-break: break-word;
  }
}
.api-docs-modern .codeExample h3 {
  color: #b8b3ff;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.api-docs-modern .codeExample h3::before {
  content: "⚡";
  font-size: 20px;
}
.api-docs-modern .api-badge {
  display: inline-block;
  background: rgba(107, 95, 255, 0.2);
  color: #b8b3ff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
  border: 1px solid rgba(107, 95, 255, 0.3);
}
.api-docs-modern .status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  margin-left: 12px;
}
.api-docs-modern .status-badge.success {
  background: rgba(76, 217, 100, 0.2);
  color: #4cd964;
  border: 1px solid rgba(76, 217, 100, 0.3);
}
.api-docs-modern .status-badge.error {
  background: rgba(255, 59, 48, 0.2);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.3);
}
.api-docs-modern .status-badge.warning {
  background: rgba(255, 204, 0, 0.2);
  color: #ffcc00;
  border: 1px solid rgba(255, 204, 0, 0.3);
}
.api-docs-modern .openapi-section {
  background: rgba(107, 95, 255, 0.1);
  border: 1px solid rgba(107, 95, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.api-docs-modern .openapi-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: white;
}
.api-docs-modern .openapi-section p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px;
  font-size: 16px;
}
.api-docs-modern .openapi-section .openapi-btn {
  background: linear-gradient(135deg, #6b5fff 0%, #c471ed 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(107, 95, 255, 0.3);
  margin: 0 8px;
}
.api-docs-modern .openapi-section .openapi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(107, 95, 255, 0.5);
}
.api-docs-modern .openapi-section .openapi-btn.secondary {
  background: transparent;
  border: 2px solid rgba(107, 95, 255, 0.5);
  box-shadow: none;
}
.api-docs-modern .openapi-section .openapi-btn.secondary:hover {
  background: rgba(107, 95, 255, 0.1);
}
.api-docs-modern .api-footer-note {
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.api-docs-modern .api-footer-note a {
  color: #6b5fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.api-docs-modern .api-footer-note a:hover {
  color: #c471ed;
}
@media (max-width: 768px) {
  .api-docs-modern .api-hero-title {
    font-size: 36px;
  }
  .api-docs-modern .api-hero-description {
    font-size: 16px;
  }
  .api-docs-modern .api-container {
    padding: 0 20px;
  }
  .api-docs-modern .api-endpoint {
    padding: 24px;
  }
  .api-docs-modern .api-endpoint h2 {
    font-size: 24px;
  }
  .api-docs-modern .api-content {
    padding: 32px 20px;
  }
  .api-docs-modern .codeExample {
    padding: 20px;
  }
  .api-docs-modern .codeExample pre {
    padding: 16px;
  }
}

.api-docs-modern .hljs {
  background: transparent !important;
  color: #e4e4e7;
}
.api-docs-modern .hljs-comment,
.api-docs-modern .hljs-quote {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.api-docs-modern .hljs-string,
.api-docs-modern .hljs-template-variable,
.api-docs-modern .hljs-addition {
  color: #4cd964;
}
.api-docs-modern .hljs-number,
.api-docs-modern .hljs-regexp,
.api-docs-modern .hljs-literal,
.api-docs-modern .hljs-type {
  color: #f76b1c;
}
.api-docs-modern .hljs-keyword,
.api-docs-modern .hljs-selector-tag,
.api-docs-modern .hljs-deletion {
  color: #c471ed;
}
.api-docs-modern .hljs-name,
.api-docs-modern .hljs-section,
.api-docs-modern .hljs-selector-id,
.api-docs-modern .hljs-title {
  color: #6b5fff;
  font-weight: 600;
}
.api-docs-modern .hljs-attr,
.api-docs-modern .hljs-attribute,
.api-docs-modern .hljs-variable,
.api-docs-modern .hljs-template-tag {
  color: #fad961;
}
.api-docs-modern .hljs-symbol,
.api-docs-modern .hljs-bullet,
.api-docs-modern .hljs-link {
  color: #b8b3ff;
}
.api-docs-modern .hljs-built_in,
.api-docs-modern .hljs-builtin-name {
  color: #12c2e9;
}
.api-docs-modern .hljs-meta {
  color: rgba(255, 255, 255, 0.6);
}
.api-docs-modern .hljs-emphasis {
  font-style: italic;
}
.api-docs-modern .hljs-strong {
  font-weight: bold;
}
.api-docs-modern .language-json .hljs-attr {
  color: #b8b3ff;
}
.api-docs-modern .language-json .hljs-string {
  color: #4cd964;
}
.api-docs-modern .language-json .hljs-number {
  color: #f76b1c;
}
.api-docs-modern .language-json .hljs-literal {
  color: #c471ed;
}
.api-docs-modern .http .hljs-attribute {
  color: #fad961;
}
.api-docs-modern .http .hljs-string {
  color: #4cd964;
}

/*# sourceMappingURL=api-docs-modern.css.map */
