@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Fluentez Documentation — Bun.com Design System Theme (Light & Dark)
   Tokens matched with Bun.com (bun.com/docs):
   - Typography: Inter 400 (16px / 28px line-height)
   - Primary Accent: Bun Pink (#ff73a8) & Ambient Purple Top Glow
   - Light & Dark theme CSS variables
   ========================================================================== */

:root {
    --bun-pink: #ff73a8;
    --bun-pink-hover: #e65a93;
    --bun-pink-light: #fff0f5;
    --bun-pink-border: #ffd1e3;

    /* Light Theme Tokens */
    --bun-bg: #fdfcfd;
    --bun-surface: #ffffff;
    --bun-subtle-bg: #f8f7f8;
    --bun-border: #e8e6e8;
    --bun-border-subtle: #f0eef0;

    --bun-text-main: #1e1a1b;
    --bun-text-secondary: #524d4f;
    --bun-text-muted: #777375;
    --bun-text-light: #a6a2a3;

    --bun-code-bg: #141214;
    --bun-code-text: #f6f6f6;
    --bun-topbar-bg: rgba(255, 255, 255, 0.85);

    --bun-font-sans: 'Inter', -apple-system, "system-ui", "Segoe UI", system-ui, sans-serif;
    --bun-font-mono: ui-monospace, "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;

    --sidebar-width: 285px;
    --topbar-height: 64px;
    --toc-width: 220px;
}

/* Dark Theme Overrides */
html.dark {
    --bun-pink-light: rgba(255, 115, 168, 0.12);
    --bun-pink-border: rgba(255, 115, 168, 0.3);

    --bun-bg: #0e0b0e;
    --bun-surface: #141214;
    --bun-subtle-bg: #1c181b;
    --bun-border: #2a2528;
    --bun-border-subtle: #201c1f;

    --bun-text-main: #fdfcfd;
    --bun-text-secondary: #a6a2a3;
    --bun-text-muted: #8e888b;
    --bun-text-light: #6e676a;

    --bun-code-bg: #090709;
    --bun-code-text: #f6f6f6;
    --bun-topbar-bg: rgba(14, 11, 14, 0.85);
}

/* Disable transitions temporarily during theme toggle to prevent color delay lag */
.disable-transitions,
.disable-transitions * {
    transition: none !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bun-bg);
    color: var(--bun-text-main);
    font-family: var(--bun-font-sans);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient Purple & Pink Top Glow Effect (Bun.com Style) */
body::before {
    content: '';
    position: fixed;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1300px;
    height: 480px;
    background: radial-gradient(ellipse 75% 55% at 50% 0%,
            rgba(168, 85, 247, 0.22) 0%,
            rgba(236, 72, 153, 0.15) 45%,
            rgba(255, 115, 168, 0.04) 75%,
            transparent 100%);
    pointer-events: none;
    z-index: 0;
    filter: blur(55px);
    opacity: 0.92;
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100;
    padding: 8px 16px;
    background: var(--bun-pink);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Top Header (Bun.com Navbar)
   ========================================================================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    z-index: 40;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: var(--bun-topbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bun-border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bun-text-main);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--bun-text-main);
    color: var(--bun-bg);
    font-family: var(--bun-font-mono);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.brand:hover .brand-logo-img {
    transform: scale(1.08) rotate(3deg);
}

html.dark .brand-mark {
    background: var(--bun-pink);
    color: #000;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 40px;
}

.header-nav a {
    color: var(--bun-text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

.header-nav a:hover,
.header-nav a.current {
    color: var(--bun-text-main);
    font-weight: 600;
}

.header-nav a.current {
    color: var(--bun-pink);
}

.topbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: var(--bun-subtle-bg);
    border: 1px solid var(--bun-border);
    border-radius: 8px;
    color: var(--bun-text-muted);
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 1;
    min-width: 0;
}

.search-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.search-trigger:hover {
    border-color: var(--bun-pink-border);
    background: var(--bun-surface);
    color: var(--bun-text-secondary);
}

.search-trigger:hover .search-icon {
    opacity: 1;
    color: var(--bun-pink);
}

.search-shortcut {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    border-radius: 4px;
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 11px;
    margin-left: 4px;
}

/* Theme Toggle Button (Sun / Moon SVG) */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bun-subtle-bg);
    border: 1px solid var(--bun-border);
    border-radius: 8px;
    color: var(--bun-text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--bun-pink-border);
    background: var(--bun-pink-light);
    color: var(--bun-pink);
}

.theme-icon {
    display: block;
    transition: transform 0.2s ease;
}

.theme-toggle-btn:hover .theme-icon {
    transform: rotate(15deg);
}

.package-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bun-pink-light);
    border: 1px solid var(--bun-pink-border);
    border-radius: 20px;
    color: var(--bun-pink-hover);
    font-family: var(--bun-font-mono);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.package-tag:hover {
    transform: translateY(-1px);
}

.package-tag span {
    color: var(--bun-text-secondary);
    font-weight: 400;
}

.menu-button {
    display: none;
    padding: 6px 12px;
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    border-radius: 6px;
    color: var(--bun-text-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   Left Sidebar Navigation
   ========================================================================== */
.sidebar {
    position: fixed;
    top: var(--topbar-height);
    bottom: 0;
    left: 0;
    width: var(--sidebar-width);
    z-index: 30;
    padding: 24px 16px;
    background: var(--bun-surface);
    border-right: 1px solid var(--bun-border);
    overflow-y: auto;
}

.nav-group {
    margin-bottom: 24px;
}

.nav-label {
    margin: 16px 10px 8px;
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 3px;
    border-radius: 6px;
    color: var(--bun-text-secondary);
    font-size: 14px;
    /* Upgraded font size */
    font-weight: 450;
    text-decoration: none;
    transition: all 0.15s ease;
}

.nav-link:hover {
    background: var(--bun-subtle-bg);
    color: var(--bun-text-main);
}

.nav-link.active {
    background: var(--bun-pink-light);
    color: var(--bun-pink-hover);
    font-weight: 600;
}

.nav-link small {
    color: var(--bun-text-light);
    font-family: var(--bun-font-mono);
    font-size: 11px;
}

.nav-link.active small {
    color: var(--bun-pink);
}

.sidebar-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--bun-border-subtle);
    color: var(--bun-text-muted);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

/* ==========================================================================
   Right Table of Contents (On this page)
   ========================================================================== */
.toc {
    position: fixed;
    top: calc(var(--topbar-height) + 36px);
    right: max(24px, calc((100vw - 1520px) / 2));
    width: var(--toc-width);
    padding-left: 18px;
    border-left: 1px solid var(--bun-border);
    z-index: 20;
}

.toc-title {
    margin: 0 0 12px;
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.toc-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    color: var(--bun-text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 4px;
    border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
    color: var(--bun-pink);
    font-weight: 600;
    border-left-color: var(--bun-pink);
    padding-left: 8px;
}

/* ==========================================================================
   Main Content Area & Router Views
   ========================================================================== */
main {
    max-width: 820px;
    /* Upgraded max width for spacious reading */
    margin-left: calc(var(--sidebar-width) + max(48px, calc((100vw - 1200px) / 2)));
    padding-top: var(--topbar-height);
    padding-bottom: 80px;
}

/* Route View Page Switching */
.route-view {
    display: none;
    animation: fadeIn 0.2s ease;
}

.route-view.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 40px 0;
}

.section.bordered {
    border-bottom: 1px solid var(--bun-border);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--bun-pink);
    font-family: var(--bun-font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

h1 {
    margin: 0 0 18px;
    color: var(--bun-text-main);
    font-size: 42px;
    /* Matched to Bun.com 42px H1 heading */
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

h2 {
    margin: 32px 0 16px;
    color: var(--bun-text-main);
    font-size: 28px;
    /* Matched to Bun.com 28px H2 heading */
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

h3 {
    margin: 28px 0 14px;
    color: var(--bun-text-main);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.4;
}

.lede {
    margin: 0 0 28px;
    color: var(--bun-text-secondary);
    font-size: 18px;
    /* Upgraded 18px lede intro text */
    line-height: 1.6;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.button.primary {
    background: var(--bun-text-main);
    color: var(--bun-bg);
}

.button.primary:hover {
    background: var(--bun-pink);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 115, 168, 0.3);
}

.button.ghost {
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    color: var(--bun-text-main);
}

.button.ghost:hover {
    border-color: var(--bun-pink-border);
    background: var(--bun-pink-light);
    color: var(--bun-pink-hover);
}

/* Callout Box */
.callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 28px 0;
    padding: 16px 18px;
    background: var(--bun-pink-light);
    border-left: 2px solid var(--bun-pink);
    border-radius: 8px;
    color: var(--bun-text-secondary);
}

.callout-icon {
    color: var(--bun-pink);
    font-size: 18px;
    font-weight: 700;
}

.callout p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Code Blocks & Tabs (Bun Dark Code Style) */
.tabs {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    border-bottom: 1px solid var(--bun-border);
}

.tab {
    padding: 10px 4px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: none;
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tab:hover {
    color: var(--bun-text-main);
}

.tab.active {
    border-color: var(--bun-pink);
    color: var(--bun-pink);
    font-weight: 600;
}

.code-block {
    position: relative;
    margin: 0 0 28px;
    padding: 20px 82px 20px 20px;
    background: var(--bun-code-bg);
    color: var(--bun-code-text);
    border: 1px solid var(--bun-border-subtle);
    border-radius: 10px;
    font-family: var(--bun-font-mono);
    font-size: 13.5px;
    /* Upgraded font size */
    line-height: 1.75;
    overflow-x: auto;
    white-space: pre;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.tabs+.code-block {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.copy-button {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #d1d1d1;
    font-family: var(--bun-font-sans);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    z-index: 2;
    transition: all 0.15s ease;
}

.copy-button:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Syntax Highlighting */
.code-prompt {
    color: var(--bun-pink);
}

.comment {
    color: #777375;
    font-style: italic;
}

.keyword {
    color: var(--bun-pink);
    font-weight: 600;
}

.string {
    color: #fbe6a2;
}

.function {
    color: #9be1c3;
}

.type {
    color: #9ed3ff;
}

.tag {
    color: #ff9eba;
}

.boolean,
.number {
    color: #f7a68f;
}

/* Tables */
.table-wrap {
    margin: 24px 0 32px;
    overflow-x: auto;
    border: 1px solid var(--bun-border);
    border-radius: 10px;
    background: var(--bun-surface);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--bun-font-sans);
    font-size: 14.5px;
    line-height: 1.65;
    text-align: left;
}

th {
    padding: 14px 18px;
    background: var(--bun-subtle-bg);
    color: var(--bun-text-muted);
    font-family: var(--bun-font-sans);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--bun-border);
}

td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bun-border-subtle);
    color: var(--bun-text-secondary);
    font-family: var(--bun-font-sans);
    vertical-align: top;
}

tbody tr:last-child td {
    border-bottom: none;
}

td code {
    padding: 2px 7px;
    background: var(--bun-subtle-bg);
    border: 1px solid var(--bun-border);
    border-radius: 5px;
    color: var(--bun-text-secondary);
    font-family: var(--bun-font-mono);
    font-size: 13px;
    font-weight: 600;
}

/* Package Grid Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.package-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    border-radius: 12px;
    color: var(--bun-text-main);
    text-decoration: none;
    transition: all 0.2s ease;
}

.package-card.available {
    border-color: var(--bun-border);
}

.package-card.available:hover {
    border-color: var(--bun-pink);
    box-shadow: 0 6px 20px rgba(255, 115, 168, 0.15);
    transform: translateY(-2px);
}

.package-card.upcoming {
    background: var(--bun-subtle-bg);
    opacity: 0.85;
}

.package-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.package-card code {
    font-size: 15px;
    font-weight: 700;
    color: var(--bun-text-main);
}

.package-card p {
    margin: 0 0 18px;
    color: var(--bun-text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--bun-subtle-bg);
    border: 1px solid var(--bun-border);
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 11px;
    font-weight: 600;
}

.badge.active-badge {
    background: var(--bun-pink-light);
    border-color: var(--bun-pink-border);
    color: var(--bun-pink-hover);
}

.package-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--bun-pink);
    font-size: 13px;
    font-weight: 600;
}

/* Pagination Footer Navigation (Next / Previous Page) */
.page-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--bun-border);
}

.page-nav-card {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
    max-width: 50%;
}

.page-nav-card:hover {
    border-color: var(--bun-pink-border);
    background: var(--bun-pink-light);
}

.page-nav-card.next {
    margin-left: auto;
    text-align: right;
}

.page-nav-label {
    color: var(--bun-text-muted);
    font-family: var(--bun-font-mono);
    font-size: 12px;
    margin-bottom: 4px;
}

.page-nav-title {
    color: var(--bun-pink);
    font-size: 15px;
    font-weight: 700;
}

/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    padding: 28px 0;
    border-top: 1px solid var(--bun-border);
    color: var(--bun-text-muted);
    font-size: 13px;
    text-align: center;
}

/* Search Modal (⌘K Search) */
.search-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    background: rgba(14, 11, 14, 0.7);
    backdrop-filter: blur(6px);
    padding: 16px;
}

.search-modal-overlay.open {
    display: grid;
}

.search-modal {
    width: 100%;
    max-width: 620px;
    background: var(--bun-surface);
    border: 1px solid var(--bun-border);
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalIn 0.15s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.search-modal-header {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--bun-border);
}

.search-modal-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--bun-text-main);
    font-family: var(--bun-font-sans);
    font-size: 16px;
}

.search-modal-results {
    max-height: 380px;
    overflow-y: auto;
    padding: 10px;
}

.search-result-item {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--bun-text-main);
    text-decoration: none;
    transition: background 0.1s ease;
}

.search-result-item:hover {
    background: var(--bun-pink-light);
}

.search-result-title {
    font-weight: 650;
    color: var(--bun-pink);
    margin-bottom: 3px;
}

.search-result-snippet {
    font-size: 13px;
    color: var(--bun-text-secondary);
}

/* Media Queries for Responsive Design */
@media (max-width: 1350px) {
    .toc {
        display: none;
    }

    main {
        margin-left: calc(var(--sidebar-width) + max(32px, calc((100vw - 1100px) / 2)));
        margin-right: 48px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .sidebar {
        transform: translateX(-105%);
        transition: transform 0.2s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    main {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topbar .search-shortcut {
        display: none;
    }

    .topbar-actions {
        gap: 10px;
    }
}

@media (max-width: 520px) {
    .topbar {
        padding: 0 14px;
    }

    .topbar .search-trigger {
        padding: 0;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        justify-content: center;
        flex-shrink: 0;
    }

    .topbar .search-trigger .search-label {
        display: none;
    }

    .topbar .search-icon {
        width: 16px;
        height: 16px;
    }

    .topbar-actions {
        gap: 8px;
    }

    .package-tag {
        display: none;
    }

    h1 {
        font-size: 32px;
    }

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

    .code-block {
        padding: 44px 14px 14px 14px;
        font-size: 12.5px;
    }

    .copy-button {
        top: 8px;
        right: 8px;
        padding: 4px 9px;
        font-size: 11px;
    }
}

@keyframes skelPulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}