.hero-logo {
    max-width: 260px;
    height: auto;
}

.hero-subtitle-small {
    font-size: 0.95rem;
    opacity: 0.9;
}

.feature-icon {
    font-size: 1.3rem;
    margin-right: 0.35rem;
}

.github-cta img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.github-cta span {
    font-weight: 600;
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 12px 16px;
    max-width: 38em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 15px;
}

.alert-icon {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23856404'><path stroke-linecap='round' stroke-linejoin='round' d='M12 9v4m0 4h.01M10.29 3.86l-8.2 14.14A2 2 0 004 21h16a2 2 0 001.71-3l-8.2-14.14a2 2 0 00-3.42 0z'/></svg>");
}

.alert-title {
    font-weight: 600;
}

.codeblock-wrapper {
    position: relative;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .codeblock-copy {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 10;
  }
  .codeblock-wrapper:hover .codeblock-copy {
    opacity: 1;
  }
  .codeblock-body pre {
    margin: 0 !important;
  }

  .codeblock-visible {
    user-select: text;
    -webkit-user-select: text;
  }

  .codeblock-raw {
    display: none;
  }

  .codeblock-visible span,
  .codeblock-visible .token {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-width: 0 !important;
    height: auto !important;
    white-space: pre !important;
    vertical-align: baseline !important;
  }
