@charset "UTF-8";
.text-primary {
  color: #ff0080;
}

.bg-primary-light {
  background-color: rgba(255, 0, 128, 0.1);
}

.bg-primary-medium {
  background-color: rgba(255, 0, 128, 0.2);
}

.rounded {
  border-radius: 8px;
}

.rounded-circle {
  border-radius: 50%;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.code-font {
  font-family: monospace;
  white-space: pre;
}

.custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  outline: none;
}
.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff0080;
  cursor: pointer;
}
.custom-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff0080;
  cursor: pointer;
  border: none;
}

.hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.hero-features li:last-child {
  margin-bottom: 0;
}
.hero-features .feature-icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ff0080;
  flex-shrink: 0;
}

.feature-card {
  height: 100%;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.feature-card .feature-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto 15px;
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0080;
}
.feature-card .feature-icon span {
  font-size: 30px;
}

.pricing-tag {
  display: inline-block;
  background-color: rgba(255, 0, 128, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
  color: #ff0080;
  font-weight: 500;
}

.image-placeholder {
  height: 300px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.cta-section {
  padding: 40px;
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 8px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.card {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card.featured {
  background-color: rgba(255, 0, 128, 0.05);
}

.section {
  margin: 5rem 0;
}
.section h2 {
  margin-bottom: 1rem;
}
.section .lead {
  margin-bottom: 2rem;
}

.code-example {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  overflow: auto;
  margin-bottom: 1.5rem;
}
.code-example pre {
  margin: 0;
  color: #f8f8f2;
  font-size: 14px;
}

.api-example {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.api-example .api-request, .api-example .api-response {
  padding: 20px;
}
.api-example .api-request {
  background-color: #1a1a1a;
}
.api-example .api-response {
  background-color: #252525;
}
.api-example h3 {
  color: #ff0080;
  margin-bottom: 15px;
}

.step-card {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.step-card .step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 0, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0080;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 15px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}
.faq-item summary {
  font-weight: bold;
  cursor: pointer;
  outline: none;
  color: #fff;
}
.faq-item summary:hover {
  color: #ff0080;
}
.faq-item summary::-webkit-details-marker {
  color: #ff0080;
}
.faq-item div {
  margin-top: 15px;
}

.highlight {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
  font-size: 0.9rem;
}
.highlight pre {
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.highlight pre code {
  font-family: "Menlo", "Monaco", "Consolas", "Courier New", monospace;
  line-height: 1.4;
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
}

.highlight { /* Comment */
  /* Error */
  /* Generic */
  /* Keyword */
  /* Literal */
  /* Name */
  /* Operator */
  /* Other */
  /* Punctuation */
  /* Comment.Hashbang */
  /* Comment.Multiline */
  /* Comment.Preproc */
  /* Comment.PreprocFile */
  /* Comment.Single */
  /* Comment.Special */
  /* Generic.Deleted */
  /* Generic.Emph */
  /* Generic.Error */
  /* Generic.Heading */
  /* Generic.Inserted */
  /* Generic.Output */
  /* Generic.Prompt */
  /* Generic.Strong */
  /* Generic.Subheading */
  /* Generic.Traceback */
  /* Keyword.Constant */
  /* Keyword.Declaration */
  /* Keyword.Namespace */
  /* Keyword.Pseudo */
  /* Keyword.Reserved */
  /* Keyword.Type */
  /* Literal.Date */
  /* Literal.Number */
  /* Literal.String */
  /* Name.Attribute */
  /* Name.Builtin */
  /* Name.Class */
  /* Name.Constant */
  /* Name.Decorator */
  /* Name.Entity */
  /* Name.Exception */
  /* Name.Function */
  /* Name.Label */
  /* Name.Namespace */
  /* Name.Other */
  /* Name.Property */
  /* Name.Tag */
  /* Name.Variable */
  /* Operator.Word */
  /* Text.Whitespace */
  /* Literal.Number.Bin */
  /* Literal.Number.Float */
  /* Literal.Number.Hex */
  /* Literal.Number.Integer */
  /* Literal.Number.Oct */
  /* Literal.String.Affix */
  /* Literal.String.Backtick */
  /* Literal.String.Char */
  /* Literal.String.Delimiter */
  /* Literal.String.Doc */
  /* Literal.String.Double */
  /* Literal.String.Escape */
  /* Literal.String.Heredoc */
  /* Literal.String.Interpol */
  /* Literal.String.Other */
  /* Literal.String.Regex */
  /* Literal.String.Single */
  /* Literal.String.Symbol */
  /* Name.Builtin.Pseudo */
  /* Name.Function.Magic */
  /* Name.Variable.Class */
  /* Name.Variable.Global */
  /* Name.Variable.Instance */
  /* Name.Variable.Magic */
  /* Literal.Number.Integer.Long */
}
.highlight .c {
  color: #6272a4;
}
.highlight .err {
  color: #ff5555;
}
.highlight .g {
  color: #f8f8f2;
}
.highlight .k {
  color: #ff79c6;
}
.highlight .l {
  color: #f8f8f2;
}
.highlight .n {
  color: #f8f8f2;
}
.highlight .o {
  color: #ff79c6;
}
.highlight .x {
  color: #f8f8f2;
}
.highlight .p {
  color: #f8f8f2;
}
.highlight .ch {
  color: #6272a4;
}
.highlight .cm {
  color: #6272a4;
}
.highlight .cp {
  color: #6272a4;
}
.highlight .cpf {
  color: #6272a4;
}
.highlight .c1 {
  color: #6272a4;
}
.highlight .cs {
  color: #6272a4;
}
.highlight .gd {
  color: #ff5555;
}
.highlight .ge {
  color: #f8f8f2;
  font-style: italic;
}
.highlight .gr {
  color: #ff5555;
}
.highlight .gh {
  color: #f8f8f2;
  font-weight: bold;
}
.highlight .gi {
  color: #50fa7b;
}
.highlight .go {
  color: #6272a4;
}
.highlight .gp {
  color: #f8f8f2;
}
.highlight .gs {
  color: #f8f8f2;
  font-weight: bold;
}
.highlight .gu {
  color: #f8f8f2;
  font-weight: bold;
}
.highlight .gt {
  color: #ff5555;
}
.highlight .kc {
  color: #ff79c6;
}
.highlight .kd {
  color: #ff79c6;
}
.highlight .kn {
  color: #ff79c6;
}
.highlight .kp {
  color: #ff79c6;
}
.highlight .kr {
  color: #ff79c6;
}
.highlight .kt {
  color: #8be9fd;
}
.highlight .ld {
  color: #f1fa8c;
}
.highlight .m {
  color: #bd93f9;
}
.highlight .s {
  color: #f1fa8c;
}
.highlight .na {
  color: #50fa7b;
}
.highlight .nb {
  color: #8be9fd;
  font-style: italic;
}
.highlight .nc {
  color: #50fa7b;
}
.highlight .no {
  color: #f8f8f2;
}
.highlight .nd {
  color: #f8f8f2;
}
.highlight .ni {
  color: #f8f8f2;
}
.highlight .ne {
  color: #f8f8f2;
}
.highlight .nf {
  color: #50fa7b;
}
.highlight .nl {
  color: #f8f8f2;
}
.highlight .nn {
  color: #f8f8f2;
}
.highlight .nx {
  color: #f8f8f2;
}
.highlight .py {
  color: #f8f8f2;
}
.highlight .nt {
  color: #ff79c6;
}
.highlight .nv {
  color: #8be9fd;
}
.highlight .ow {
  color: #ff79c6;
}
.highlight .w {
  color: #f8f8f2;
}
.highlight .mb {
  color: #bd93f9;
}
.highlight .mf {
  color: #bd93f9;
}
.highlight .mh {
  color: #bd93f9;
}
.highlight .mi {
  color: #bd93f9;
}
.highlight .mo {
  color: #bd93f9;
}
.highlight .sa {
  color: #f1fa8c;
}
.highlight .sb {
  color: #f1fa8c;
}
.highlight .sc {
  color: #f1fa8c;
}
.highlight .dl {
  color: #f1fa8c;
}
.highlight .sd {
  color: #f1fa8c;
}
.highlight .s2 {
  color: #f1fa8c;
}
.highlight .se {
  color: #f1fa8c;
}
.highlight .sh {
  color: #f1fa8c;
}
.highlight .si {
  color: #f1fa8c;
}
.highlight .sx {
  color: #f1fa8c;
}
.highlight .sr {
  color: #f1fa8c;
}
.highlight .s1 {
  color: #f1fa8c;
}
.highlight .ss {
  color: #f1fa8c;
}
.highlight .bp {
  color: #8be9fd;
  font-style: italic;
}
.highlight .fm {
  color: #50fa7b;
}
.highlight .vc {
  color: #8be9fd;
}
.highlight .vg {
  color: #8be9fd;
}
.highlight .vi {
  color: #8be9fd;
}
.highlight .vm {
  color: #8be9fd;
}
.highlight .il {
  color: #bd93f9;
}

pre.highlight {
  padding: 1rem;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #f8f8f2;
  overflow-x: auto;
  border: none !important;
  box-shadow: none !important;
}

.language-json pre.highlight {
  color: #f8f8f2;
  border: none !important;
  background-color: transparent !important;
}

.language-bash pre.highlight {
  color: #f8f8f2;
  border: none !important;
  background-color: transparent !important;
}

.language-bash { /* Comment */
  /* Name.Builtin */
  /* Name.Variable */
  /* Literal.String */
  /* Operator */
}
.language-bash .c {
  color: #75715e;
  font-style: italic;
}
.language-bash .nb {
  color: #f92672;
  font-style: normal;
}
.language-bash .nv {
  color: #66d9ef;
}
.language-bash .s {
  color: #e6db74;
}
.language-bash .o {
  color: #f92672;
}

.language-json { /* Punctuation */
  /* String */
  /* String */
  /* Number */
  /* Keyword Constant (true/false/null) */
}
.language-json .p {
  color: #f8f8f2;
}
.language-json .s2 {
  color: #a6e22e;
}
.language-json .s1 {
  color: #a6e22e;
}
.language-json .mi {
  color: #ae81ff;
}
.language-json .kc {
  color: #66d9ef;
}

.docs-content-body .highlight pre {
  padding: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.docs-content-body .highlight pre code {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
}

.highlight.language-json, .highlight.language-bash, .highlight.language-ruby, .highlight.language-python, .highlight.language-javascript, pre.highlight.language-json, pre.highlight.language-bash, pre.highlight.language-ruby, pre.highlight.language-python, pre.highlight.language-javascript, .highlight pre.language-json, .highlight pre.language-bash, .highlight pre.language-ruby, .highlight pre.language-python, .highlight pre.language-javascript, code.language-json, code.language-bash, code.language-ruby, code.language-python, code.language-javascript {
  border: none !important;
  box-shadow: none !important;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}
.logo:hover .logo-text {
  color: #ff0080;
}
.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.logo-text {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
}
.logo-text.gradient {
  background: linear-gradient(90deg, #ff0080, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Testimonial Card Styling */
.testimonial-card {
  height: 100%;
  padding: 30px 25px 25px 25px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Ensure no content spills out */
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff0080;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 14px; /* Smaller stars */
  background-color: rgba(0, 0, 0, 0.1); /* Semi-transparent background */
  padding: 3px 6px;
  border-radius: 4px;
}

.testimonial-card:hover .testimonial-stars {
  transform: scale(1.2) rotate(5deg);
  color: #ff3399;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-right: 30px; /* Ensure the name doesn't overlap with stars */
}

.testimonial-avatar {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #333;
  font-weight: bold;
  flex-shrink: 0;
}

.testimonial-author {
  flex: 1;
  min-width: 0; /* Allow this to shrink if needed */
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-author p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-body {
  padding-top: 5px; /* Add space between header and content */
  position: relative;
}

.testimonial-content {
  margin: 0;
  font-style: italic;
  line-height: 1.5;
  width: 100%; /* Ensure the content uses the full width of the container */
  box-sizing: border-box; /* Include padding in width calculation */
  word-wrap: break-word; /* Allow long words to break */
  display: inline-block; /* Makes the content flow better */
}

/* Hero testimonial variation */
.hero-testimonial .testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
}

/* API testimonial variation */
.api-testimonial .testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Featured testimonial variation */
.featured-testimonial .testimonial-card {
  background-color: rgba(255, 0, 128, 0.05);
}

.smallwrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.error {
  color: var(--pico-del-color);
}

table.striped tbody tr:nth-child(odd) {
  background-color: var(--pico-card-background-color);
}

.text-right {
  text-align: right;
}

.post-article {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.post-article .post-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .post-article .post-title {
    font-size: 2rem;
  }
}
.post-article .post-meta {
  font-size: 0.95rem;
}
.post-article .post-summary .lead {
  font-size: 1.25rem;
  color: #8b949e;
  font-weight: 400;
}
.post-article .post-content {
  font-size: 1.05rem;
  line-height: 1.7;
}
.post-article .post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #30363d;
}
.post-article .post-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-article .post-content h4 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.post-article .post-content p {
  margin-bottom: 1.25rem;
}
.post-article .post-content ul, .post-article .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.75rem;
}
.post-article .post-content ul li, .post-article .post-content ol li {
  margin-bottom: 0.5rem;
}
.post-article .post-content blockquote {
  border-left: 4px solid #ff0080;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #8b949e;
}
.post-article .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.post-article .post-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}
.post-article .post-content table th, .post-article .post-content table td {
  padding: 0.75rem;
  border: 1px solid #30363d;
  text-align: left;
}
.post-article .post-content table th {
  background-color: #161b22;
  font-weight: 600;
}

.calculator-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.pricing-result {
  padding: 15px;
  background-color: rgba(255, 0, 128, 0.05);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.price-display {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff0080;
  line-height: 1;
}

.price-per-unit, .savings {
  font-size: 0.85rem;
  color: #888;
}

.savings {
  background-color: rgba(255, 0, 128, 0.1);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 30px;
}

.pricing-table-container {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.pricing-table-container table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table-container table th, .pricing-table-container table td {
  padding: 10px;
}
.pricing-table-container table th {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-table-container table th:first-child {
  text-align: left;
}
.pricing-table-container table td {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-table-container table td:first-child {
  text-align: left;
}
.pricing-table-container table tr.highlight {
  background-color: rgba(255, 0, 128, 0.05);
}
.pricing-table-container table thead tr {
  background-color: rgba(255, 255, 255, 0.05);
}

.pricing-features .feature-card {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.pricing-features .feature-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 0, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ff0080;
}

.credit-explainer {
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.api-walkthrough {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.api-walkthrough .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.api-walkthrough .step:last-child {
  margin-bottom: 0;
}
.api-walkthrough .step .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 0, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0080;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}
.api-walkthrough .step h4 {
  margin-bottom: 0.5rem;
}

.lang-card {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lang-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.lang-card div {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lang-card h4 {
  margin-bottom: 0;
}

.api-features {
  height: 100%;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.feature-card {
  height: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 1rem;
}
.feature-card h4 {
  margin-bottom: 1rem;
  color: #ff0080;
  font-size: 1rem;
}
.feature-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.list-verification-demo {
  margin-bottom: 2.5rem;
}
.list-verification-demo .demo-image {
  height: 400px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.verification-details {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.verification-details h3 {
  margin-bottom: 1.5rem;
}
.verification-details ul {
  padding-left: 20px;
}
.verification-details strong {
  color: #ff0080;
}

.step-card {
  height: 100%;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.step-card .step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 0, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0080;
  font-weight: bold;
}
.step-card h3 {
  margin-bottom: 1rem;
}

.list-screenshot {
  height: 100%;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: #666;
}

.docs-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.docs-content-body table th, .docs-content-body table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.docs-content-body table th {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}
.docs-content-body table tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.docs-content-body pre code {
  display: block;
  padding: 1rem;
  overflow-x: auto;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-family: monospace;
}
.docs-content-body blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.7);
}
.docs-content-body .note, .docs-content-body .warning, .docs-content-body .tip {
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.docs-content-body .note:before, .docs-content-body .warning:before, .docs-content-body .tip:before {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.docs-content-body .note {
  background-color: rgba(0, 122, 255, 0.1);
  border-left: 4px solid rgba(0, 122, 255, 0.5);
}
.docs-content-body .note:before {
  content: "Note";
  color: rgba(0, 122, 255, 0.8);
}
.docs-content-body .warning {
  background-color: rgba(255, 59, 48, 0.1);
  border-left: 4px solid rgba(255, 59, 48, 0.5);
}
.docs-content-body .warning:before {
  content: "Warning";
  color: rgba(255, 59, 48, 0.8);
}
.docs-content-body .tip {
  background-color: rgba(52, 199, 89, 0.1);
  border-left: 4px solid rgba(52, 199, 89, 0.5);
}
.docs-content-body .tip:before {
  content: "Tip";
  color: rgba(52, 199, 89, 0.8);
}

.docs-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.docs-navigation a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: background-color 0.2s;
}
.docs-navigation a:hover {
  background-color: rgba(255, 0, 128, 0.1);
}
.docs-navigation a span {
  font-weight: 500;
}
.docs-navigation .prev-link span:before {
  content: "←";
  margin-right: 8px;
}
.docs-navigation .next-link span:after {
  content: "→";
  margin-left: 8px;
}

@media (max-width: 768px) {
  .docs-content {
    padding: 20px;
  }
  .docs-navigation {
    flex-direction: column;
    gap: 10px;
  }
}
@media print {
  .docs-sidebar, .docs-navigation {
    display: none;
  }
  .docs-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
}
.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.page-header .page-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #ff0080;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.about-intro h2,
.about-values h2,
.about-advantage h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}
.about-intro p,
.about-values p,
.about-advantage p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-quote {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}
.about-quote:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.about-quote .icon-container {
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-quote blockquote {
  font-style: italic;
  text-align: center;
}
.about-quote blockquote footer {
  margin-top: 15px;
  font-weight: bold;
}

.value-card {
  height: 100%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  text-align: center;
}
.value-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.value-card .icon-container {
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 0, 128, 0.05) 100%);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.advantage-container:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.advantage-container .background-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 0, 128, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 0, 128, 0.03) 0%, transparent 40%);
}
.advantage-container .content {
  position: relative;
  z-index: 1;
}
.advantage-container h4 .checkmark {
  color: #ff0080;
}

.about-cta {
  background-color: rgba(255, 0, 128, 0.1);
  padding: 40px;
  border-radius: 12px;
}
.about-cta .pricing-tag {
  display: inline-block;
  background-color: rgba(255, 0, 128, 0.2);
  padding: 5px 15px;
  border-radius: 30px;
  color: #ff0080;
  font-weight: 500;
}

.post-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.post-card .post-content {
  padding: 30px;
}
.post-card .post-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.post-card .post-category {
  background-color: rgba(255, 0, 128, 0.1);
  padding: 2px 8px;
  border-radius: 30px;
  color: #ff0080;
  font-size: 0.75rem;
  font-weight: 500;
}
.post-card .post-date {
  margin-left: 0.5rem;
}
.post-card .post-title-container {
  min-height: 80px;
}
.post-card .post-title-container h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.post-card .post-title-container h3 a {
  text-decoration: none;
}
.post-card .post-description {
  font-size: 0.95rem;
  opacity: 0.9;
  min-height: 60px;
  margin-bottom: 1.5rem;
}
.post-card .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-card .post-footer .post-author {
  font-size: 0.85rem;
  opacity: 0.8;
}
.post-card .post-footer .read-more {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #ff0080;
}
.post-card .post-footer .read-more .arrow {
  margin-left: 5px;
}

.featured-post {
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  margin-bottom: 2rem;
}
.featured-post .post-content {
  padding: 40px;
}

.newsletter-card {
  border-radius: 8px;
  background-color: rgba(255, 0, 128, 0.05);
  border: none;
  padding: 30px;
}
.newsletter-card .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 0, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ff0080;
}

main.container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: calc(100vh - 400px);
}

.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hero .lead {
  font-size: 1.25rem;
  color: #8b949e;
}
.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
  }
  .hero .cta-buttons .btn {
    width: 100%;
  }
}
.hero .pricing-tag {
  display: inline-block;
  background-color: rgba(255, 0, 128, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  color: #ff0080;
  font-weight: 500;
  font-size: 0.9rem;
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
section.hero {
  padding-top: 4rem;
}

.feature-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 128, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.feature-card .icon-circle {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ff0080;
}

.code-container {
  background-color: #1a1a1a;
  border-radius: 0.75rem;
  overflow: hidden;
}
.code-container .code-header {
  padding: 1rem;
  background-color: #222;
  border-bottom: 1px solid #333;
  color: #ff0080;
  font-family: monospace;
  font-size: 0.9rem;
}
.code-container .code-body {
  padding: 1rem;
  overflow-x: auto;
}
.code-container .code-body pre {
  margin: 0;
}

.content-section {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 2rem;
}

.highlight {
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.highlight pre {
  margin: 0;
  padding: 1rem;
  background-color: #282a36;
  overflow-x: auto;
}
.highlight code {
  background-color: transparent;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.api-response-wrapper .highlight {
  margin: 0;
  max-height: none;
}
.api-response-wrapper .highlight pre {
  padding: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.4;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: auto;
}
.api-response-wrapper .highlight pre code {
  font-size: 0.8rem;
  word-wrap: normal;
  white-space: pre;
}

@media (max-width: 768px) {
  .api-response-wrapper .highlight pre {
    font-size: 0.7rem;
  }
}
code:not(.highlight code) {
  background-color: #161b22;
  color: #ff0080;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

article ul, article ol, .content ul, .content ol {
  padding-left: 1.5rem;
}
article ul li, article ol li, .content ul li, .content ol li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */