* {
      font-family: 'Inter', sans-serif;
    }
    body {
      background: linear-gradient(135deg, #0e0e0e 0%, #1a1a2e 100%);
      color: #fff;
      min-height: 100vh;
    }
    .glass-box {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 30px;
      border-radius: 12px;
      backdrop-filter: blur(8px);
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }
    .glass-box:hover {
      border-color: rgba(13,110,253,0.5);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .code-block {
      background: rgba(0,0,0,0.4);
      padding: 20px;
      border-radius: 8px;
      border-left: 4px solid #0d6efd;
      overflow-x: auto;
      font-family: 'Courier New', monospace;
      font-size: 14px;
      position: relative;
      transition: all 0.3s ease;
    }
    .code-block:hover {
      border-left-color: #6610f2;
      background: rgba(0,0,0,0.5);
    }
    .copy-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .code-block:hover .copy-btn {
      opacity: 1;
    }
    .endpoint-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
      margin-right: 10px;
    }
    .badge-get {
      background: #28a745;
      color: #fff;
    }
    .badge-post {
      background: #0d6efd;
      color: #fff;
    }
    .badge-premium {
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: #000;
      font-weight: 700;
    }
    .navbar {
      background: rgba(0,0,0,0.3) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .nav-link {
      color: rgba(255,255,255,0.8) !important;
      transition: all 0.3s;
    }
    .nav-link:hover {
      color: #0d6efd !important;
      transform: translateY(-1px);
    }
    pre {
      color: #fff;
      margin: 0;
      white-space: pre-wrap;
      word-wrap: break-word;
    }
    .response-field {
      margin-left: 20px;
      margin-top: 10px;
    }
    .field-type {
      color: #0d6efd;
      font-weight: 600;
    }
    .field-description {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      margin-top: 4px;
    }
    .field-descriptions {
      transition: all 0.3s ease;
    }
    .field-descriptions.collapse:not(.show) {
      display: none;
    }
    .sidebar-link {
      display: block;
      padding: 8px 12px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s;
      margin-bottom: 4px;
    }
    .sidebar-link:hover {
      background: rgba(13,110,253,0.2);
      color: #0d6efd;
      transform: translateX(5px);
    }
    .endpoint-card {
      cursor: pointer;
      transition: all 0.3s;
    }
    .endpoint-card:hover {
      transform: scale(1.02);
    }
    .collapse-section {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .collapse-section.show {
      max-height: 2000px;
    }
    .table-dark {
      --bs-table-bg: rgba(0,0,0,0.3);
    }
    .table-dark tbody tr:hover {
      background: rgba(13,110,253,0.1);
    }
    .premium-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 10px;
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: #000;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 700;
      margin-left: 10px;
    }
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #0d6efd, #6610f2);
      z-index: 9999;
      transition: width 0.3s;
    }
