:root{
      --primary:#00aad5;
      --secondary:#00d400;
      --bg-dark:#0a0e1a;
      --bg-gradient-start:#0d1117;
      --bg-gradient-end:#0a1929;
      --card:#141b2d;
      --card-hover:#1a2332;
      --muted:#8b92a8;
      --text-light:#e8eef7;
      --glass:rgba(0,170,213,0.05);
      --border:rgba(255,255,255,0.06);
      --shadow:rgba(0,0,0,0.4);
    }
    
    *{box-sizing:border-box;margin:0;padding:0}
    
    body{
      font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
      margin:0;
      background:linear-gradient(135deg,var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
      background-attachment:fixed;
      color:var(--text-light);
      line-height:1.6;
      -webkit-font-smoothing:antialiased;
    }
    
    header {
      padding: 24px 40px;
      background: rgba(20, 27, 45, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 20px var(--shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      will-change: transform;
    }

    header.scrolled {
      padding: 16px 40px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }
    
    header h1 {
      margin: 0;
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      line-height: 1.2;
    }
    
    .badge {
      background: linear-gradient(135deg, rgba(0,170,213,0.2), rgba(0,212,0,0.15));
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid rgba(0,170,213,0.4);
      color: var(--primary);
      display: inline-block;
      margin-left: 10px;
      white-space: nowrap;
      vertical-align: middle;
      transition: all 0.3s ease;
    }

    .badge:hover {
      background: linear-gradient(135deg, rgba(0,170,213,0.3), rgba(0,212,0,0.2));
      border-color: var(--primary);
    }
    
    .container{
      max-width:1200px;
      margin:40px auto;
      padding:0 24px;
    }
    
    .card{
      background:var(--card);
      padding:32px;
      border-radius:16px;
      box-shadow:0 8px 32px var(--shadow);
      border:1px solid var(--border);
      margin-bottom:28px;
      transition:all 0.3s ease;
      position:relative;
      overflow:hidden;
    }
    
    .card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg, var(--primary), var(--secondary));
      opacity:0;
      transition:opacity 0.3s ease;
    }
    
    .card:hover{
      transform:translateY(-4px);
      box-shadow:0 12px 48px rgba(0,170,213,0.2);
      border-color:rgba(0,170,213,0.3);
    }
    
    .card:hover::before{
      opacity:1;
    }
    
    h2{
      margin:0 0 20px 0;
      font-size:24px;
      font-weight:700;
      color:var(--text-light);
    }
    
    h3{
      margin:16px 0 12px 0;
      font-size:18px;
      font-weight:600;
    }
    
    .muted{
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    
    pre{
      background:rgba(0,0,0,0.4);
      padding:20px;
      border-radius:12px;
      overflow:auto;
      color:#e0f2fe;
      border:1px solid rgba(0,170,213,0.15);
      margin:16px 0;
      box-shadow:inset 0 2px 8px rgba(0,0,0,0.3);
    }
    
    code{
      font-family:'Fira Code','Source Code Pro',Monaco,Consolas,monospace;
      font-size:13px;
    }
    
    .endpoint{
      border-left:4px solid var(--primary);
      padding:16px 18px;
      margin-bottom:16px;
      border-radius:10px;
      background:linear-gradient(90deg, rgba(0,170,213,0.08), transparent);
      transition:all 0.2s ease;
      border:1px solid rgba(0,170,213,0.1);
      border-left:4px solid var(--primary);
    }
    
    .endpoint:hover{
      background:linear-gradient(90deg, rgba(0,170,213,0.15), transparent);
      border-color:rgba(0,170,213,0.3);
      transform:translateX(4px);
    }
    
    .method{
      display:inline-block;
      padding:6px 12px;
      border-radius:8px;
      font-weight:700;
      margin-right:12px;
      font-size:12px;
      letter-spacing:0.5px;
    }
    
    .GET{
      background:linear-gradient(135deg, rgba(0,170,213,0.2), rgba(0,212,0,0.2));
      color:var(--secondary);
      border:1px solid rgba(0,212,0,0.3);
    }
    
    .path{
      font-family:'Fira Code',monospace;
      color:#b8e7f5;
      font-weight:500;
    }
    
    .btn-request-access {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #ffffff;
      padding: 12px 24px;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 16px rgba(0, 170, 213, 0.3);
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .btn-request-access::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s;
    }

    .btn-request-access:hover::before {
      left: 100%;
    }
    
    .btn-request-access:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(0, 170, 213, 0.5);
    }

    .btn-request-access:active {
      transform: translateY(0);
      box-shadow: 0 2px 12px rgba(0, 170, 213, 0.4);
    }
    
    .tabs{
      display:flex;
      gap:8px;
      margin-bottom:20px;
      border-bottom:2px solid var(--border);
      flex-wrap:wrap;
    }
    
    .tab-button{
      background:transparent;
      color:var(--muted);
      border:none;
      padding:12px 24px;
      cursor:pointer;
      font-size:14px;
      font-weight:600;
      transition:all 0.3s ease;
      border-bottom:2px solid transparent;
      margin-bottom:-2px;
      position:relative;
    }
    
    .tab-button:hover{
      color:var(--primary);
      background:rgba(0,170,213,0.05);
    }
    
    .tab-button.active{
      color:var(--primary);
      border-bottom-color:var(--primary);
    }
    
    .tab-content{
      display:none;
    }
    
    .tab-content.active{
      display:block;
      animation:fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn{
      from{opacity:0;transform:translateY(10px)}
      to{opacity:1;transform:translateY(0)}
    }

    /* Sidebar Navigation Styles */
    .sidebar{
      position:fixed;
      left:0;
      top:120px;
      width:260px;
      height:calc(100vh - 120px);
      background:rgba(20,27,45,0.95);
      backdrop-filter:blur(20px);
      border-right:1px solid var(--border);
      padding:32px 20px;
      overflow-y:auto;
      z-index:99;
      transition:transform 0.3s ease;
    }

    .sidebar::-webkit-scrollbar{
      width:6px;
    }

    .sidebar::-webkit-scrollbar-track{
      background:rgba(0,0,0,0.2);
    }

    .sidebar::-webkit-scrollbar-thumb{
      background:var(--primary);
      border-radius:3px;
    }

    .sidebar-title{
      font-size:14px;
      font-weight:700;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:20px;
      padding-bottom:12px;
      border-bottom:1px solid var(--border);
    }

    .nav-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .nav-link{
      display:block;
      padding:10px 16px;
      margin-bottom:4px;
      color:var(--muted);
      text-decoration:none;
      font-size:14px;
      border-radius:8px;
      transition:all 0.2s ease;
      cursor:pointer;
      position:relative;
      overflow:hidden;
    }

    .nav-link::before{
      content:'';
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:3px;
      background:var(--primary);
      transform:scaleY(0);
      transition:transform 0.2s ease;
    }

    .nav-link:hover{
      color:var(--text-light);
      background:rgba(0,170,213,0.1);
      padding-left:20px;
    }

    .nav-link.active{
      color:var(--primary);
      background:rgba(0,170,213,0.15);
      font-weight:600;
      padding-left:20px;
    }

    .nav-link.active::before{
      transform:scaleY(1);
    }

    .sidebar-toggle{
      background:transparent;
      border:none;
      color:var(--primary);
      width:40px;
      height:40px;
      border-radius:8px;
      cursor:pointer;
      display:none;
      align-items:center;
      justify-content:center;
      transition:all 0.3s ease;
      flex-shrink:0;
      padding:0;
      margin-right:8px;
    }

    .sidebar-toggle:hover{
      background:rgba(0,170,213,0.1);
      transform:scale(1.05);
    }

    .sidebar-toggle:active{
      transform:scale(0.95);
    }

    .content-with-sidebar{
      margin-left:280px;
    }

    /* Header styles */
    .header-container {
      display: flex;
      align-items: center;
      gap: 24px;
      max-width: 100%;
      position: relative;
    }

    .header-logo {
      height: 48px;
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .header-logo:hover {
      transform: scale(1.05);
    }

    .header-content {
      flex: 1;
      min-width: 0;
    }

    .header-subtitle {
      margin-top: 6px;
      font-size: 14px;
      line-height: 1.4;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Form styles */
    .info-box {
      background: rgba(0, 170, 213, 0.08);
      border-left: 4px solid var(--primary);
      padding: 16px;
      border-radius: 8px;
      margin: 20px 0;
    }

    .info-box p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .info-box strong {
      color: var(--primary);
    }

    /* Feature box */
    .feature-box {
      background: linear-gradient(135deg, rgba(0,170,213,0.1), rgba(0,212,0,0.05));
      border: 1px solid rgba(0,170,213,0.2);
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
    }

    .feature-box h3 {
      margin: 0 0 12px 0;
      font-size: 16px;
      color: var(--primary);
    }

    .feature-box p {
      margin: 0;
      color: var(--text-light);
      font-size: 14px;
    }

    .feature-box p:not(:first-of-type) {
      margin-top: 12px;
    }

    .feature-box strong {
      color: var(--secondary);
    }

    /* Section heading */
    .section-heading {
      margin-top: 24px;
      font-size: 16px;
      color: var(--primary);
    }

    /* Endpoint details */
    .endpoint h3,
    .endpoint-heading {
      margin-top: 16px;
      font-size: 14px;
      color: var(--primary);
    }

    .endpoint .param-list {
      margin-left: 16px;
    }

    .endpoint .muted {
      margin-left: 16px;
    }

    /* Utility classes */
    .mt-16 {
      margin-top: 16px;
    }

    .ml-16 {
      margin-left: 16px;
    }

    /* Table styles for authentication section */
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 14px;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      overflow: hidden;
    }

    table thead tr {
      background: rgba(0, 170, 213, 0.15);
    }

    table th {
      padding: 14px;
      text-align: left;
      border: 1px solid var(--border);
      font-weight: 600;
      color: var(--primary);
    }

    table td {
      padding: 12px 14px;
      border: 1px solid var(--border);
      color: var(--text-light);
    }

    table tbody tr {
      transition: background 0.2s ease;
    }

    table tbody tr:hover {
      background: rgba(0, 170, 213, 0.05);
    }

    table code {
      background: rgba(0, 170, 213, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 12px;
    }

    /* Responsive tables */
    @media (max-width: 768px) {
      table {
        font-size: 12px;
      }

      table th,
      table td {
        padding: 8px 10px;
      }

      table code {
        font-size: 11px;
        padding: 2px 4px;
      }
    }

    /* Tab styles (if needed) */
    .tab-buttons {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .tab-button {
      padding: 10px 20px;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      color: var(--text-light);
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .tab-button:hover {
      background: rgba(0, 170, 213, 0.1);
      border-color: var(--primary);
    }

    .tab-button.active {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: var(--primary);
      color: #ffffff;
      box-shadow: 0 4px 16px rgba(0, 170, 213, 0.3);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: rgba(0, 0, 0, 0.4);
      color: var(--text-light);
      font-size: 14px;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-textarea {
      resize: vertical;
      font-family: inherit;
      line-height: 1.6;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 170, 213, 0.1);
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #ffffff;
      padding: 14px 32px;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(0, 170, 213, 0.3);
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(0, 170, 213, 0.4);
    }

    .success-message {
      display: none;
      margin-top: 24px;
      padding: 18px 20px;
      background: linear-gradient(135deg, rgba(0, 212, 0, 0.1), rgba(0, 170, 213, 0.05));
      border: 1px solid rgba(0, 212, 0, 0.4);
      border-radius: 12px;
      color: var(--secondary);
      font-weight: 500;
      box-shadow: 0 4px 16px rgba(0, 212, 0, 0.15);
    }

    /* Footer styles */
    footer {
      padding: 48px 32px;
      text-align: center;
      color: var(--muted);
      font-size: 13px;
      background: rgba(20, 27, 45, 0.4);
      border-top: 1px solid var(--border);
      margin-top: 40px;
    }

    .footer-title {
      font-weight: 500;
      margin-bottom: 8px;
    }

    .footer-copyright {
      font-size: 12px;
      opacity: 0.7;
    }

    @media (max-width: 1024px){
      .sidebar{
        transform:translateX(-100%);
      }

      .sidebar.open{
        transform:translateX(0);
      }

      .sidebar-toggle{
        display:flex;
      }

      .content-with-sidebar{
        margin-left:0;
      }

      header {
        padding: 20px 24px;
      }

      .header-container {
        gap: 16px;
      }

      .btn-request-access {
        padding: 10px 20px;
        font-size: 13px;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 16px 20px;
      }

      header h1 {
        font-size: 20px;
      }

      .header-logo {
        height: 40px;
      }

      .header-container {
        gap: 12px;
        flex-wrap: wrap;
      }

      .header-subtitle {
        font-size: 13px;
        white-space: normal;
      }

      .badge {
        display: inline-block;
        margin: 4px 0 0 0;
        padding: 4px 10px;
        font-size: 11px;
      }

      .btn-request-access {
        width: 100%;
        margin-top: 8px;
        padding: 12px 20px;
      }

      .card {
        padding: 20px;
      }

      .card h2 {
        font-size: 20px;
      }

      .tab-buttons {
        flex-direction: column;
      }

      .tab-button {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      header {
        padding: 12px 16px;
      }

      .sidebar-toggle{
        width:36px;
        height:36px;
        margin-right:4px;
      }

      .sidebar-toggle svg{
        width:18px;
        height:18px;
      }

      .header-container {
        gap: 8px;
      }

      .header-logo {
        height: 36px;
      }

      header h1 {
        font-size: 18px;
      }

      .header-subtitle {
        font-size: 12px;
      }

      .badge {
        font-size: 10px;
        padding: 3px 8px;
      }
    }