/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 130:0 Unexpected "{"
Line 130:1 Expected identifier but found "%"

**/
{% style %}
  .kobold-container {
    background: #000000;
    color: #e5e5e5;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  .glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
  }
  .glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
  }
  .badge-base {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid;
  }
  .badge-method {
    color: #60A5FA;
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.1);
  }
  .badge-result {
    color: #34D399;
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.1);
  }
  .badge-note {
    color: #A78BFA;
    border-color: rgba(167, 139, 250, 0.3);
    background: rgba(167, 139, 250, 0.1);
  }
  .gradient-text {
    background: linear-gradient(135deg, #00FF94 0%, #00CC76 50%, #00AA60 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .bg-grid {
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .feature-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
  }
  .feature-card:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
  }
  .step-card {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  .step-card:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
  }
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
  }
  .product-card.highlighted {
    border-color: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  }
  .sidebar-link {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    border-left: 2px solid transparent;
    color: #6b7280;
    text-decoration: none;
  }
  .sidebar-link:hover {
    color: white;
    border-left-color: white;
  }
  .sidebar-link.active {
    color: white;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: #10b981;
  }
  details > summary {
    list-style: none;
    cursor: pointer;
  }
  details > summary::-webkit-details-marker {
    display: none;
  }
  details[open] > summary .chevron {
    transform: rotate(180deg);
  }
  @media (max-width: 768px) {
    .kobold-container .text-7xl {
      font-size: 2.5rem;
    }
    .kobold-container .text-5xl {
      font-size: 2rem;
    }
  }
{% endstyle %}