@charset "UTF-8";
* {
  box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  height: 100%;
  overflow-x: hidden; }

body {
  margin: 0;
  padding: 60px 0 0 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e6edf3;
  background-color: #0d1117;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; }
  @media (min-width: 992px) {
    .container {
      padding: 0 2rem; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.25;
  color: #f0f6fc;
  letter-spacing: -0.02em;
  scroll-margin-top: 60px; }

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem; }
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem; } }

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #30363d; }
  @media (max-width: 768px) {
    h2 {
      font-size: 1.75rem; } }

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem; }
  @media (max-width: 768px) {
    h3 {
      font-size: 1.25rem; } }

h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem; }

h5, h6 {
  font-size: 1rem;
  margin-top: 1rem; }

p {
  margin: 0 0 1rem 0;
  line-height: 1.6; }

a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.2s ease; }
  a:hover {
    color: #79c0ff;
    text-decoration: underline; }
  a:focus {
    outline: 2px solid #1f6feb;
    outline-offset: 2px; }

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 2rem; }
  ul li, ol li {
    margin-bottom: 0.5rem; }
  ul ul, ul ol, ol ul, ol ol {
    margin-top: 0.5rem;
    margin-bottom: 0; }

code {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  background-color: #21262d;
  color: #ff7b72;
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  border: 1px solid #30363d; }

pre {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  background-color: #161b22;
  color: #e6edf3;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #30363d;
  overflow-x: auto;
  margin: 1rem 0; }
  pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit; }

blockquote {
  margin: 1rem 0;
  padding: 0 1rem;
  border-left: 4px solid #30363d;
  color: #8b949e;
  font-style: italic; }
  blockquote p:last-child {
    margin-bottom: 0; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  overflow: hidden; }
  table th, table td {
    padding: 0.5rem 1rem;
    text-align: left;
    border-bottom: 1px solid #30363d; }
  table th {
    background-color: #21262d;
    font-weight: 600;
    color: #f0f6fc; }
  table tr:last-child td {
    border-bottom: none; }
  table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02); }

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px; }

hr {
  border: none;
  height: 1px;
  background-color: #30363d;
  margin: 2rem 0; }

::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

::-webkit-scrollbar-track {
  background: #0d1117; }

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover {
    background: #484f58; }

.site-header {
  background: linear-gradient(135deg, #1c2128 0%, #161b22 100%);
  border-bottom: 1px solid #30363d;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); }
  .site-header .header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem; }
    @media (min-width: 992px) {
      .site-header .header-container {
        padding: 0 2rem; } }
  .site-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    @media (max-width: 768px) {
      .site-header .header-content {
        flex-direction: row;
        align-items: center; } }
  .site-header .header-left {
    display: flex;
    align-items: center;
    gap: 1rem; }
  .site-header .sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px; }
    @media (max-width: 768px) {
      .site-header .sidebar-toggle {
        display: flex; } }
    .site-header .sidebar-toggle:hover {
      background-color: rgba(255, 255, 255, 0.1); }
    .site-header .sidebar-toggle .hamburger-line {
      width: 20px;
      height: 2px;
      background-color: #f0f6fc;
      margin: 2px 0;
      transition: all 0.3s ease;
      border-radius: 1px; }
    .site-header .sidebar-toggle.active .hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
    .site-header .sidebar-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0; }
    .site-header .sidebar-toggle.active .hamburger-line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px); }
  .site-header .site-branding {
    flex: 0 0 auto; }
    .site-header .site-branding .site-title {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 600; }
      .site-header .site-branding .site-title a {
        color: #f0f6fc;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
        white-space: nowrap; }
        .site-header .site-branding .site-title a:hover {
          color: #58a6ff;
          text-decoration: none;
          transform: translateX(2px); }
      .site-header .site-branding .site-title .github-icon {
        width: 20px;
        height: 20px;
        opacity: 0.8;
        transition: opacity 0.2s ease;
        flex-shrink: 0; }
      .site-header .site-branding .site-title a:hover .github-icon {
        opacity: 1; }
      @media (max-width: 768px) {
        .site-header .site-branding .site-title {
          font-size: 1.25rem; }
          .site-header .site-branding .site-title .github-icon {
            width: 18px;
            height: 18px; } }
  .site-header .header-actions {
    display: flex;
    align-items: center; }
    @media (max-width: 576px) {
      .site-header .header-actions {
        display: none; } }
    .site-header .header-actions .github-buttons {
      display: flex;
      gap: 0.5rem; }
      .site-header .header-actions .github-buttons iframe {
        vertical-align: middle; }

.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 280px;
  height: calc(100vh - 60px);
  background-color: #161b22;
  border-right: 1px solid #30363d;
  z-index: 500;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto; }
  @media (min-width: 769px) {
    .sidebar {
      transform: translateX(0); } }
  @media (max-width: 768px) {
    .sidebar {
      top: 0;
      height: 100vh;
      padding-top: 60px; } }
  .sidebar.open {
    transform: translateX(0); }
  .sidebar .sidebar-content {
    padding: 1rem;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; }
    @media (min-width: 769px) {
      .sidebar .sidebar-content {
        padding: 1.5rem 1rem; } }
    @media (max-width: 768px) {
      .sidebar .sidebar-content {
        height: calc(100vh - 60px); } }
  .sidebar .sidebar-nav .nav-section {
    margin-bottom: 1.5rem; }
    .sidebar .sidebar-nav .nav-section:last-child {
      margin-bottom: 0; }
    .sidebar .sidebar-nav .nav-section .nav-section-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.5rem;
      margin-bottom: 0.5rem;
      border-bottom: 1px solid #30363d;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.2s ease;
      user-select: none; }
      .sidebar .sidebar-nav .nav-section .nav-section-header:hover {
        background-color: rgba(255, 255, 255, 0.05);
        border-color: #484f58; }
      .sidebar .sidebar-nav .nav-section .nav-section-header.collapsible:hover {
        background-color: rgba(255, 255, 255, 0.08);
        transform: translateX(2px); }
      .sidebar .sidebar-nav .nav-section .nav-section-header.collapsible:active {
        transform: translateX(1px); }
      .sidebar .sidebar-nav .nav-section .nav-section-header .nav-section-icon {
        font-size: 1.1rem;
        flex-shrink: 0;
        transition: all 0.2s ease; }
      .sidebar .sidebar-nav .nav-section .nav-section-header .nav-section-title {
        font-weight: 600;
        color: #f0f6fc;
        flex: 1;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s ease; }
      .sidebar .sidebar-nav .nav-section .nav-section-header .nav-section-toggle {
        background: none;
        border: none;
        color: #e6edf3;
        cursor: pointer;
        padding: 4px;
        border-radius: 3px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none; }
        .sidebar .sidebar-nav .nav-section .nav-section-header .nav-section-toggle svg {
          transition: transform 0.2s ease;
          width: 12px;
          height: 12px; }
        .sidebar .sidebar-nav .nav-section .nav-section-header .nav-section-toggle[aria-expanded="true"] svg {
          transform: rotate(90deg); }
      .sidebar .sidebar-nav .nav-section .nav-section-header.collapsible:hover .nav-section-icon {
        transform: scale(1.1); }
      .sidebar .sidebar-nav .nav-section .nav-section-header.collapsible:hover .nav-section-title {
        color: #58a6ff; }
      .sidebar .sidebar-nav .nav-section .nav-section-header.collapsible:hover .nav-section-toggle {
        color: #f0f6fc; }
    .sidebar .sidebar-nav .nav-section .nav-section-items {
      list-style: none;
      margin: 0;
      padding: 0; }
      .sidebar .sidebar-nav .nav-section .nav-section-items.collapsible {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease; }
        .sidebar .sidebar-nav .nav-section .nav-section-items.collapsible.expanded {
          max-height: 1000px; }
      .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item {
        margin-bottom: 0.25rem; }
        .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link {
          display: block;
          padding: 0.5rem 1rem;
          color: #e6edf3;
          text-decoration: none;
          border-radius: 6px;
          font-weight: 400;
          transition: all 0.2s ease;
          position: relative;
          font-size: 0.9rem;
          border: 1px solid transparent; }
          .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #f0f6fc;
            text-decoration: none;
            transform: translateX(2px);
            border-color: rgba(255, 255, 255, 0.1); }
          .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link:focus {
            outline: 2px solid #1f6feb;
            outline-offset: 2px; }
          .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link.active {
            background-color: #1f6feb;
            color: white;
            font-weight: 500;
            border-color: #1f6feb;
            box-shadow: 0 2px 4px rgba(31, 111, 235, 0.3); }
            .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link.active:hover {
              background-color: #1f6feb;
              color: white;
              transform: translateX(0);
              border-color: #1f6feb; }
          .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link .nav-link-content {
            display: block; }
          .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link .nav-link-title {
            display: block;
            line-height: 1.4; }
        .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-item-description {
          display: block;
          font-size: 0.75rem;
          color: #8b949e;
          margin-top: 4px;
          line-height: 1.3;
          opacity: 0.8;
          transition: opacity 0.2s ease; }
        .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link:hover .nav-item-description {
          opacity: 1;
          color: rgba(255, 255, 255, 0.7); }
        .sidebar .sidebar-nav .nav-section .nav-section-items .nav-item .nav-link.active .nav-item-description {
          color: rgba(255, 255, 255, 0.8);
          opacity: 1; }

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 769px) {
    .sidebar-overlay {
      display: none; } }

body.sidebar-open {
  overflow: hidden; }
  @media (min-width: 769px) {
    body.sidebar-open {
      overflow: auto; } }

.layout-wrapper {
  position: relative;
  min-height: calc(100vh - 60px); }
  @media (max-width: 768px) {
    .layout-wrapper {
      display: block; } }

.main-content {
  min-height: calc(100vh - 60px);
  padding: 0;
  width: 100%;
  animation: fadeIn 0.3s ease-in; }
  @media (min-width: 769px) {
    .main-content {
      margin-left: 280px;
      width: calc(100% - 280px); } }
  @media (min-width: 1200px) {
    .main-content {
      margin-right: 250px;
      width: calc(100% - 530px); } }
  .main-content .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem; }
    @media (min-width: 769px) {
      .main-content .content-wrapper {
        padding: 2rem 3rem; } }
    @media (max-width: 768px) {
      .main-content .content-wrapper {
        padding: 1.5rem 1rem; } }
    @media (min-width: 1200px) {
      .main-content .content-wrapper {
        max-width: 800px; } }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.toc-sidebar {
  position: fixed;
  top: 60px;
  right: 0;
  width: 250px;
  height: calc(100vh - 60px);
  background-color: #161b22;
  border-left: 1px solid #30363d;
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 100;
  display: none; }
  @media (min-width: 1200px) {
    .toc-sidebar {
      display: block; } }
  .toc-sidebar .toc-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f0f6fc;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em; }
  .toc-sidebar .toc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .toc-sidebar .toc-nav ul li {
      margin: 0; }
      .toc-sidebar .toc-nav ul li a {
        display: block;
        padding: 0.25rem 0.5rem;
        color: #8b949e;
        text-decoration: none;
        font-size: 0.875rem;
        line-height: 1.4;
        border-radius: 4px;
        transition: all 0.2s ease;
        border-left: 2px solid transparent; }
        .toc-sidebar .toc-nav ul li a:hover {
          color: #e6edf3;
          background-color: rgba(255, 255, 255, 0.05);
          text-decoration: none; }
        .toc-sidebar .toc-nav ul li a.active {
          color: #1f6feb;
          background-color: rgba(31, 111, 235, 0.1);
          border-left-color: #1f6feb;
          font-weight: 500; }
      .toc-sidebar .toc-nav ul li.toc-h3 a {
        padding-left: 1rem;
        font-size: 0.8125rem; }
      .toc-sidebar .toc-nav ul li.toc-h4 a {
        padding-left: 1.5rem;
        font-size: 0.8125rem; }
      .toc-sidebar .toc-nav ul li.toc-h5 a, .toc-sidebar .toc-nav ul li.toc-h6 a {
        padding-left: 2rem;
        font-size: 0.75rem; }
  .toc-sidebar::-webkit-scrollbar {
    width: 4px; }
  .toc-sidebar::-webkit-scrollbar-track {
    background: transparent; }
  .toc-sidebar::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 2px; }
    .toc-sidebar::-webkit-scrollbar-thumb:hover {
      background: #484f58; }

.site-footer {
  background-color: #161b22;
  border-top: 1px solid #30363d;
  padding: 2rem 0;
  margin-top: 3rem;
  width: 100%; }
  @media (min-width: 769px) {
    .site-footer {
      margin-left: 280px;
      width: calc(100% - 280px); } }
  @media (min-width: 1200px) {
    .site-footer {
      margin-right: 250px;
      width: calc(100% - 530px); } }
  .site-footer .footer-content {
    text-align: center;
    color: #8b949e;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem; }
    @media (min-width: 769px) {
      .site-footer .footer-content {
        padding: 0 3rem; } }
    @media (min-width: 1200px) {
      .site-footer .footer-content {
        max-width: 800px; } }
    .site-footer .footer-content p {
      margin: 0.5rem 0; }
      .site-footer .footer-content p:first-child {
        font-weight: 500;
        color: #e6edf3; }
    .site-footer .footer-content a {
      color: #58a6ff; }
      .site-footer .footer-content a:hover {
        color: #79c0ff; }

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #1f6feb;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease; }
  .btn:hover {
    background-color: #1f6feb;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(31, 111, 235, 0.3);
    text-decoration: none;
    color: white; }
  .btn:focus {
    outline: 2px solid #1f6feb;
    outline-offset: 2px; }
  .btn.btn-secondary {
    background-color: #21262d;
    color: #f0f6fc;
    border: 1px solid #30363d; }
    .btn.btn-secondary:hover {
      background-color: #30363d;
      color: #f0f6fc; }
  .btn.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1.1rem; }
  .btn.btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem; }

.card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease; }
  .card:hover {
    border-color: #484f58;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px); }
  .card .card-title {
    margin: 0 0 1rem 0;
    color: #f0f6fc;
    font-size: 1.25rem;
    font-weight: 600; }
  .card .card-content {
    color: #e6edf3; }
    .card .card-content p:last-child {
      margin-bottom: 0; }

.callout {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  border-left: 4px solid;
  background-color: #161b22; }
  .callout.callout-info {
    border-left-color: #1f6feb;
    background-color: rgba(88, 166, 255, 0.1); }
    .callout.callout-info .callout-title {
      color: #1f6feb; }
  .callout.callout-warning {
    border-left-color: #d29922;
    background-color: rgba(210, 153, 34, 0.1); }
    .callout.callout-warning .callout-title {
      color: #d29922; }
  .callout.callout-danger {
    border-left-color: #da3633;
    background-color: rgba(218, 54, 51, 0.1); }
    .callout.callout-danger .callout-title {
      color: #da3633; }
  .callout.callout-success {
    border-left-color: #238636;
    background-color: rgba(35, 134, 54, 0.1); }
    .callout.callout-success .callout-title {
      color: #238636; }
  .callout .callout-title {
    font-weight: 600;
    margin: 0 0 0.5rem 0; }
  .callout p:last-child {
    margin-bottom: 0; }

.highlight {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  overflow: hidden;
  margin: 1rem 0; }
  .highlight pre {
    margin: 0;
    padding: 1rem;
    background: transparent;
    border: none;
    overflow-x: auto; }
    .highlight pre code {
      background: none;
      border: none;
      padding: 0;
      color: #e6edf3; }
  .highlight[data-lang]::before {
    content: attr(data-lang);
    display: block;
    background-color: #21262d;
    color: #8b949e;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #30363d; }

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #8b949e; }
  .breadcrumb .breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #30363d; }
  .breadcrumb .breadcrumb-item a {
    color: #58a6ff; }
    .breadcrumb .breadcrumb-item a:hover {
      color: #79c0ff; }
  .breadcrumb .breadcrumb-item.active {
    color: #e6edf3; }

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0; }

.command-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease; }
  .command-card:hover {
    border-color: #484f58;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px); }
  .command-card .command-title {
    color: #1f6feb;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem; }
  .command-card .command-description {
    color: #8b949e;
    font-size: 0.9rem;
    margin: 0; }
  .command-card .command-usage {
    background-color: #21262d;
    border: 1px solid #30363d;
    border-radius: 4px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.8rem;
    color: #ff7b72; }

.feature-list {
  list-style: none;
  padding: 0; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem; }
    .feature-list li::before {
      content: '✓';
      color: #238636;
      font-weight: bold;
      margin-right: 0.5rem;
      margin-top: 2px;
      flex-shrink: 0; }

.quick-nav {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0; }
  .quick-nav .quick-nav-title {
    color: #f0f6fc;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem 0; }
  .quick-nav .quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem; }
  .quick-nav .quick-nav-section h4 {
    color: #1f6feb;
    font-size: 1rem;
    margin: 0 0 0.5rem 0; }
  .quick-nav .quick-nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .quick-nav .quick-nav-section ul li {
      margin-bottom: 0.25rem; }
      .quick-nav .quick-nav-section ul li a {
        color: #e6edf3;
        font-size: 0.9rem; }
        .quick-nav .quick-nav-section ul li a:hover {
          color: #58a6ff; }

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

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

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

.text-primary {
  color: #f0f6fc; }

.text-secondary {
  color: #e6edf3; }

.text-muted {
  color: #8b949e; }

.text-link {
  color: #58a6ff; }

.text-small {
  font-size: 0.875rem; }

.text-large {
  font-size: 1.125rem; }

.font-weight-normal {
  font-weight: 400; }

.font-weight-medium {
  font-weight: 500; }

.font-weight-semibold {
  font-weight: 600; }

.font-weight-bold {
  font-weight: 700; }

.mt-0 {
  margin-top: 0; }

.mt-1 {
  margin-top: 0.25rem; }

.mt-2 {
  margin-top: 0.5rem; }

.mt-3 {
  margin-top: 1rem; }

.mt-4 {
  margin-top: 1.5rem; }

.mt-5 {
  margin-top: 2rem; }

.mt-6 {
  margin-top: 3rem; }

.mb-0 {
  margin-bottom: 0; }

.mb-1 {
  margin-bottom: 0.25rem; }

.mb-2 {
  margin-bottom: 0.5rem; }

.mb-3 {
  margin-bottom: 1rem; }

.mb-4 {
  margin-bottom: 1.5rem; }

.mb-5 {
  margin-bottom: 2rem; }

.mb-6 {
  margin-bottom: 3rem; }

.ml-0 {
  margin-left: 0; }

.ml-1 {
  margin-left: 0.25rem; }

.ml-2 {
  margin-left: 0.5rem; }

.ml-3 {
  margin-left: 1rem; }

.ml-4 {
  margin-left: 1.5rem; }

.mr-0 {
  margin-right: 0; }

.mr-1 {
  margin-right: 0.25rem; }

.mr-2 {
  margin-right: 0.5rem; }

.mr-3 {
  margin-right: 1rem; }

.mr-4 {
  margin-right: 1.5rem; }

.pt-0 {
  padding-top: 0; }

.pt-1 {
  padding-top: 0.25rem; }

.pt-2 {
  padding-top: 0.5rem; }

.pt-3 {
  padding-top: 1rem; }

.pt-4 {
  padding-top: 1.5rem; }

.pb-0 {
  padding-bottom: 0; }

.pb-1 {
  padding-bottom: 0.25rem; }

.pb-2 {
  padding-bottom: 0.5rem; }

.pb-3 {
  padding-bottom: 1rem; }

.pb-4 {
  padding-bottom: 1.5rem; }

.pl-0 {
  padding-left: 0; }

.pl-1 {
  padding-left: 0.25rem; }

.pl-2 {
  padding-left: 0.5rem; }

.pl-3 {
  padding-left: 1rem; }

.pl-4 {
  padding-left: 1.5rem; }

.pr-0 {
  padding-right: 0; }

.pr-1 {
  padding-right: 0.25rem; }

.pr-2 {
  padding-right: 0.5rem; }

.pr-3 {
  padding-right: 1rem; }

.pr-4 {
  padding-right: 1.5rem; }

.d-none {
  display: none; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-flex {
  display: flex; }

.d-grid {
  display: grid; }

.flex-row {
  flex-direction: row; }

.flex-column {
  flex-direction: column; }

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

.flex-nowrap {
  flex-wrap: nowrap; }

.justify-start {
  justify-content: flex-start; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.align-start {
  align-items: flex-start; }

.align-center {
  align-items: center; }

.align-end {
  align-items: flex-end; }

.align-stretch {
  align-items: stretch; }

.flex-1 {
  flex: 1; }

.flex-auto {
  flex: auto; }

.flex-none {
  flex: none; }

.border {
  border: 1px solid #30363d; }

.border-top {
  border-top: 1px solid #30363d; }

.border-bottom {
  border-bottom: 1px solid #30363d; }

.border-left {
  border-left: 1px solid #30363d; }

.border-right {
  border-right: 1px solid #30363d; }

.border-0 {
  border: none; }

.border-radius {
  border-radius: 6px; }

.border-radius-sm {
  border-radius: 3px; }

.border-radius-lg {
  border-radius: 8px; }

.bg-primary {
  background-color: #0d1117; }

.bg-secondary {
  background-color: #161b22; }

.bg-tertiary {
  background-color: #21262d; }

.w-25 {
  width: 25%; }

.w-50 {
  width: 50%; }

.w-75 {
  width: 75%; }

.w-100 {
  width: 100%; }

.w-auto {
  width: auto; }

.h-25 {
  height: 25%; }

.h-50 {
  height: 50%; }

.h-75 {
  height: 75%; }

.h-100 {
  height: 100%; }

.h-auto {
  height: auto; }

.position-static {
  position: static; }

.position-relative {
  position: relative; }

.position-absolute {
  position: absolute; }

.position-fixed {
  position: fixed; }

.position-sticky {
  position: sticky; }

.overflow-hidden {
  overflow: hidden; }

.overflow-auto {
  overflow: auto; }

.overflow-scroll {
  overflow: scroll; }

.overflow-visible {
  overflow: visible; }

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4); }

.shadow-none {
  box-shadow: none; }

@media (max-width: 576px) {
  .d-sm-none {
    display: none; }

  .d-sm-block {
    display: block; }

  .d-sm-flex {
    display: flex; }

  .text-sm-center {
    text-align: center; }

  .text-sm-left {
    text-align: left; }

  .flex-sm-column {
    flex-direction: column; }

  .justify-sm-center {
    justify-content: center; } }
@media (max-width: 768px) {
  .d-md-none {
    display: none; }

  .d-md-block {
    display: block; }

  .d-md-flex {
    display: flex; }

  .text-md-center {
    text-align: center; }

  .text-md-left {
    text-align: left; }

  .flex-md-column {
    flex-direction: column; }

  .justify-md-center {
    justify-content: center; } }
.fade-in {
  animation: fadeIn 0.3s ease-in; }

.slide-up {
  animation: slideUp 0.3s ease-out; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
