/* ============================================
   getIA.md — Website Styles
   Dark theme, inspired by getdesign.md
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --bg-100: #0a0a0a;
  --bg-200: #111;
  --bg-300: #1a1a1a;
  --border: #2e2e2e;
  --border-light: #3a3a3a;
  --text: #ededed;
  --text-secondary: #a0a0a0;
  --text-muted: #666;
  --accent: #60a5fa; /* Blue accent */
  --accent-dim: rgba(96, 165, 250, 0.15);
  --green: #3dd68c;
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1400px;
  --header-height: 56px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.logo-icon {
  font-size: 22px;
}

.logo-text {
  font-family: var(--font-mono);
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--text);
}

.github-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  transition: border-color 0.15s, background 0.15s;
}

.github-link:hover {
  border-color: var(--border-light);
  background: var(--bg-200);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-100);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

body.menu-open .mobile-nav {
  display: flex;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-left: -3px;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.accent {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.hero-actions .btn {
  width: 180px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e0e0e0;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.stat-card {
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  flex: 1;
  max-width: 200px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============================================
   Marquee
   ============================================ */
.marquee-container {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  background: var(--bg-100);
  display: flex;
  align-items: center;
  height: 44px;
}

.marquee-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 20px 0 24px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  opacity: 0.5;
}

.marquee-item img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(30%);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-100);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.15s;
}

.feature-card:hover {
  border-color: var(--border-light);
}

.feature-icon {
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 10px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Code Block */
.code-block {
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-filename {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
  font-family: var(--font-mono);
}

.code-content {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
}

.code-comment { color: var(--text-muted); }
.code-prompt { color: var(--green); }

/* ============================================
   Catalog
   ============================================ */
.catalog-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}

.catalog-sidebar {
  border-right: 1px solid var(--border);
  padding-right: 0;
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.sidebar-nav {
  padding: 8px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.1s;
  border-left: 2px solid transparent;
}

.sidebar-item:hover {
  background: var(--bg-200);
  color: var(--text);
}

.sidebar-item.active {
  color: var(--text);
  background: var(--accent-dim);
  border-left-color: var(--accent);
  font-weight: 500;
}

.sidebar-count {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.catalog-main {
  min-height: 600px;
}

.catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.catalog-header .section-title {
  margin-bottom: 0;
  font-size: 20px;
}

.search-bar {
  position: relative;
  width: 280px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  border-color: var(--accent);
}

/* Table Header */
.catalog-table-header {
  display: grid;
  grid-template-columns: 50px 1fr 140px;
  padding: 10px 24px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-100);
}

/* Catalog List */
.catalog-list {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.catalog-row {
  display: grid;
  grid-template-columns: 50px 1fr 140px;
  padding: 0 24px;
  align-items: center;
  height: 52px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.1s;
}

.catalog-row:hover {
  background: var(--bg-200);
}

.row-index {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.row-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--bg-300);
  border: 1px solid var(--border);
  overflow: hidden;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand-info {
  min-width: 0;
}

.brand-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-category {
  font-size: 12px;
  color: var(--text-muted);
}

.category-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-300);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-secondary);
}

/* No results */
.no-results {
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 60px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0;
  }

  .sidebar-nav {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-item {
    white-space: nowrap;
    padding: 10px 14px;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 13px;
  }

  .sidebar-item.active {
    border-left: none;
    border-bottom-color: var(--accent);
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }

  .hero {
    padding: 48px 20px;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-card {
    min-width: 100px;
    padding: 14px 18px;
  }

  .stat-number {
    font-size: 28px;
  }

  .section {
    padding: 48px 20px;
  }

  .section-title {
    font-size: 24px;
  }

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

  .catalog-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .search-bar {
    width: 100%;
  }

  .catalog-table-header {
    grid-template-columns: 40px 1fr;
  }

  .catalog-row {
    grid-template-columns: 40px 1fr;
    height: auto;
    padding: 10px 16px;
  }

  .col-category,
  .row-category {
    display: none;
  }

  .marquee-container {
    display: none;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-light);
}

/* ============================================
   Detail Page
   ============================================ */

/* Back Link */
.detail-back {
  background: var(--bg);
}

.detail-back-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 24px 0;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.detail-back-link:hover {
  color: var(--accent);
}

/* Detail Header */
.detail-header {
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  background: var(--bg-100);
}

.detail-header-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.detail-brand-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: var(--bg-300);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
}

.detail-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.detail-brand-name {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.detail-brand-tagline {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.detail-category-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* Usage Section */
.detail-usage {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 24px;
}

.detail-usage-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-usage-left {
  width: 100%;
}

.detail-usage-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-curl-block {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-curl-code {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  white-space: nowrap;
  overflow-x: auto;
  min-width: 0;
}

.detail-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-300);
  border: none;
  border-left: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.detail-copy-btn:hover {
  background: var(--border);
  color: var(--text);
}

.detail-copy-btn.copied {
  color: var(--green);
}

.detail-usage-right {
  display: flex;
  gap: 10px;
}

/* Detail Content — Markdown Rendered */
.detail-content {
  padding: 48px 24px 80px;
}

.detail-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Headings */
.detail-content h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.detail-content h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}

.detail-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.detail-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

/* Paragraphs */
.detail-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.detail-content strong {
  color: var(--text);
  font-weight: 600;
}

.detail-content em {
  color: var(--text-secondary);
}

/* Links */
.detail-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}

.detail-content a:hover {
  opacity: 0.8;
}

/* Lists */
.detail-content ul,
.detail-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.detail-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.detail-content li strong {
  color: var(--text);
}

.detail-content ul ul,
.detail-content ol ol,
.detail-content ul ol,
.detail-content ol ul {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Tables */
.detail-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0 24px;
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
}

.detail-content thead {
  background: var(--bg-300);
}

.detail-content th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.detail-content td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.6;
}

.detail-content tr:last-child td {
  border-bottom: none;
}

.detail-content tbody tr:hover {
  background: var(--bg-300);
}

/* Code blocks */
.detail-content pre {
  background: var(--bg-200);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 16px 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.detail-content pre code {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  white-space: pre;
}

/* Inline code */
.detail-content code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-300);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--accent);
}

/* Blockquotes */
.detail-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 16px 0 24px;
  padding: 12px 20px;
  background: var(--accent-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.detail-content blockquote p {
  color: var(--text);
  margin-bottom: 0;
}

/* Horizontal rules */
.detail-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* Detail Page Responsive */
@media (max-width: 768px) {
  .detail-brand-name {
    font-size: 28px;
  }

  .detail-brand-tagline {
    font-size: 15px;
  }

  .detail-brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .detail-brand-icon img {
    padding: 8px;
  }

  .detail-header {
    padding: 32px 20px;
  }

  .detail-usage-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-usage-right {
    flex-direction: column;
  }

  .detail-usage-right .btn {
    justify-content: center;
  }

  .detail-content {
    padding: 32px 20px 60px;
  }

  .detail-content h1 {
    font-size: 24px;
  }

  .detail-content h2 {
    font-size: 20px;
    margin-top: 36px;
  }

  .detail-content table {
    font-size: 12px;
  }

  .detail-content th,
  .detail-content td {
    padding: 8px 10px;
  }

  .detail-curl-code {
    font-size: 11px;
  }
}
