.gst-root {
    width: 100%;
  }

  .gst-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .gst-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
  }

  .theme-dark .gst-glass-card {
    background: rgba(20, 20, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .gst-section-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .gst-group-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgb(100, 116, 139);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .theme-dark .gst-group-title {
    color: rgb(148, 163, 184);
  }

  .gst-icon {
    width: 1rem;
    height: 1rem;
    color: var(--gst-theme-color, #4f46e5);
  }

  .gst-input-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .gst-input-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(51, 65, 85);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .theme-dark .gst-input-field label {
    color: rgb(203, 213, 225);
  }

  .gst-icon-small {
    width: 0.875rem;
    height: 0.875rem;
  }

  .gst-premium-input {
    background: white;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .theme-dark .gst-premium-input {
    background: rgb(15, 23, 42);
    border-color: rgb(51, 65, 85);
    color: white;
  }

  .gst-premium-input:focus {
    border-color: var(--gst-theme-color, #4f46e5);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  }

  .gst-field-tip {
    font-size: 0.75rem;
    color: rgb(100, 116, 139);
  }

  .theme-dark .gst-field-tip {
    color: rgb(148, 163, 184);
  }

  .gst-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .gst-result-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgb(30, 41, 59);
  }

  .theme-dark .gst-result-title {
    color: white;
  }

  .gst-code-display {
    background: rgba(0, 0, 0, 0.03);
    padding: 1.25rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgb(51, 65, 85);
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .theme-dark .gst-code-display {
    background: rgba(255, 255, 255, 0.03);
    color: rgb(203, 213, 225);
    border-color: rgba(255, 255, 255, 0.05);
  }

  .gst-code-display pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
  }

  .gst-actions {
    display: flex;
    gap: 0.75rem;
  }

  .gst-btn-primary {
    background: var(--gst-theme-color, #4f46e5);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
  }

  .gst-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .gst-btn-secondary {
    background: white;
    color: rgb(30, 41, 59);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 0.75rem;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
  }

  .theme-dark .gst-btn-secondary {
    background: rgb(30, 41, 59);
    color: white;
    border-color: rgb(51, 65, 85);
  }

  .gst-btn-secondary:hover {
    background: rgb(248, 250, 252);
  }

  .theme-dark .gst-btn-secondary:hover {
    background: rgb(51, 65, 85);
  }

  @media (max-width: 640px) {
    .gst-result-header {
      flex-direction: column;
      align-items: stretch;
    }

    .gst-actions {
      flex-direction: column;
      width: 100%;
    }

    .gst-actions button {
      width: 100%;
      justify-content: center;
    }
  }