.vdl-devtools {
    --vdl-font-family: "JetBrains Mono", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --vdl-font-size: 12px;
    --vdl-text-primary: #e2e8f0;
    --vdl-text-muted: rgba(226, 232, 240, 0.7);
    --vdl-surface: rgba(9, 14, 34, 0.88);
    --vdl-surface-strong: rgba(15, 23, 42, 0.92);
    --vdl-surface-muted: rgba(30, 41, 59, 0.78);
    --vdl-surface-soft: rgba(46, 56, 97, 0.72);
    --vdl-border: rgba(148, 163, 184, 0.28);
    --vdl-border-strong: rgba(165, 180, 252, 0.45);
    --vdl-shadow: 0 25px 70px rgba(8, 12, 34, 0.6);
    --vdl-fetch: #38bdf8;
    --vdl-sse: #4ade80;
    --vdl-directive: #c084fc;
    --vdl-memory: #f97316;
    --vdl-system: #f472b6;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 420px;
    min-width: 320px;
    min-height: 260px;
    max-width: calc(100vw - 2rem);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(8, 11, 30, 0.95) 0%, rgba(15, 23, 42, 0.82) 50%, rgba(17, 24, 56, 0.92) 100%);
    color: var(--vdl-text-primary);
    font-family: var(--vdl-font-family);
    font-size: var(--vdl-font-size);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--vdl-shadow), inset 0 0 0 1px rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px) saturate(140%);
    z-index: 9999;
    transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vdl-devtools.is-hidden {
    display: none;
}

.vdl-devtools.is-detached {
    position: relative;
    inset: 0;
    width: 100%;
    max-width: none;
    max-height: none;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
}

.vdl-devtools.is-resizing {
    transition: none;
    user-select: none;
}

.vdl-devtools.is-dragging {
    cursor: grabbing;
}

.vdl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(46, 56, 97, 0.58));
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.08), 0 12px 35px rgba(8, 12, 34, 0.45);
    cursor: grab;
    gap: 0.9rem;
    user-select: none;
    backdrop-filter: blur(18px) saturate(130%);
}

.vdl-header.is-dragging {
    cursor: grabbing;
}

.vdl-title {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8fafc;
    text-shadow: 0 0 14px rgba(59, 130, 246, 0.65);
}

.vdl-header-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vdl-btn {
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.55), rgba(30, 41, 59, 0.75));
    color: inherit;
    padding: 0.25rem 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(8, 12, 34, 0.35);
    backdrop-filter: blur(10px);
}

.vdl-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.45), rgba(30, 41, 59, 0.7));
    border-color: rgba(96, 165, 250, 0.65);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35);
}

.vdl-btn:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.85);
    outline-offset: 2px;
}

.vdl-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vdl-btn-secondary {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.65), rgba(17, 24, 56, 0.65));
    border-color: rgba(129, 140, 248, 0.65);
}

.vdl-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(30, 64, 175, 0.75));
}

.vdl-tabs {
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0.8rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(135deg, rgba(10, 16, 38, 0.85), rgba(24, 33, 68, 0.7));
    backdrop-filter: blur(16px) saturate(130%);
}

.vdl-tab {
    flex: 1 1 auto;
    border: none;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.18), rgba(59, 130, 246, 0.12));
    color: inherit;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18), 0 8px 20px rgba(8, 12, 34, 0.35);
}

.vdl-tab:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28), 0 12px 24px rgba(59, 130, 246, 0.25);
}

.vdl-tab:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.75);
    outline-offset: 2px;
}

.vdl-tab.is-active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.45), rgba(14, 165, 233, 0.32));
    color: #f8fafc;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.55), 0 12px 30px rgba(56, 189, 248, 0.35);
}

.vdl-mini {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.55rem 0.75rem 0.6rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    color: #e2e8f0;
    font-size: 11px;
    align-items: stretch;
    gap: 0.45rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
    z-index: 9998;
    backdrop-filter: blur(8px);
    min-width: 14rem;
    max-width: min(20rem, calc(100vw - 3rem));
}

.vdl-mini.is-visible {
    display: flex;
    flex-direction: column;
}

.vdl-mini.is-dragging {
    cursor: grabbing;
}

.vdl-mini:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.75);
    outline-offset: 2px;
}

.vdl-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.vdl-mini-title {
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 12px;
}

.vdl-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 0.75rem;
    width: 100%;
}

.vdl-mini-stats .vdl-mini-stat {
    width: 100%;
}

.vdl-mini-stat {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    color: rgba(226, 232, 240, 0.85);
}

.vdl-mini-sse {
    justify-content: flex-start;
}

.vdl-mini-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(226, 232, 240, 0.6);
}

.vdl-mini-value {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #e2e8f0;
}

.vdl-mini-value.is-hot {
    color: #fbbf24;
}

.vdl-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.vdl-mini-activity {
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vdl-mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(248, 113, 113, 0.9);
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.6);
}

.vdl-mini-dot.is-online {
    background: rgba(74, 222, 128, 0.9);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.6);
}

.vdl-mini-sse-label {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.vdl-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.6rem 0.75rem 1.4rem;
}

.vdl-resize-handle {
    position: absolute;
    bottom: 0.35rem;
    right: 0.35rem;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: auto;
    cursor: nwse-resize;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35);
}

.vdl-resize-handle::before,
.vdl-resize-handle::after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: rgba(226, 232, 240, 0.4);
    transform-origin: bottom right;
}

.vdl-resize-handle::before {
    transform: translate(-2px, -4px) rotate(45deg);
}

.vdl-resize-handle::after {
    transform: translate(-4px, -1px) rotate(45deg);
}

.vdl-resize-handle.is-active {
    background: rgba(30, 41, 59, 0.75);
    border-color: rgba(96, 165, 250, 0.6);
}

.vdl-devtools.is-detached .vdl-resize-handle,
.vdl-devtools.is-hidden .vdl-resize-handle {
    display: none;
}

.vdl-panel {
    display: none;
}

.vdl-panel.is-active {
    display: block;
}

.vdl-panel section {
    background: linear-gradient(150deg, rgba(17, 24, 56, 0.78), rgba(10, 16, 38, 0.82));
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    box-shadow: 0 18px 35px rgba(8, 12, 34, 0.4), inset 0 0 0 1px rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(14px);
}

.vdl-panel section + section {
    margin-top: 1rem;
}

.vdl-panel h3 {
    margin: 0 0 0.5rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bfdbfe;
    text-shadow: 0 0 16px rgba(96, 165, 250, 0.45);
}

.vdl-panel h4 {
    font-size: 11px;
    margin: 0.6rem 0 0.3rem;
    color: #cbd5f5;
    letter-spacing: 0.04em;
}

.vdl-list,
.vdl-log {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.vdl-list li,
.vdl-log li {
    position: relative;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(150deg, rgba(17, 24, 56, 0.78), rgba(15, 23, 42, 0.65));
    box-shadow: 0 12px 28px rgba(8, 12, 34, 0.35), inset 0 0 0 1px rgba(148, 163, 184, 0.08);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(10px);
}

.vdl-list li:hover,
.vdl-log li:hover {
    transform: translateY(-1px);
    border-color: rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 32px rgba(59, 130, 246, 0.25), inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.vdl-empty {
    color: var(--vdl-text-muted);
    font-style: italic;
    margin: 0;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.32);
    background: rgba(15, 23, 42, 0.28);
    text-align: center;
    letter-spacing: 0.05em;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.vdl-empty:hover {
    transform: none;
    border-color: rgba(148, 163, 184, 0.32);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.vdl-log pre,
.vdl-panel pre {
    background: linear-gradient(145deg, rgba(8, 11, 30, 0.92), rgba(17, 24, 56, 0.78));
    color: #e2e8f0;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    overflow-x: auto;
    max-height: 200px;
    margin: 0.45rem 0 0;
    white-space: pre-wrap;
    word-break: break-word;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
}

.vdl-log-time {
    color: rgba(148, 163, 184, 0.85);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.vdl-log-entry {
    --vdl-entry-accent: rgba(96, 165, 250, 0.35);
    padding: 0.75rem 0.85rem;
    background: linear-gradient(155deg, rgba(13, 18, 40, 0.95), rgba(17, 24, 56, 0.78));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 14px 34px rgba(8, 12, 34, 0.45), inset 0 0 0 1px rgba(148, 163, 184, 0.12), 0 0 26px var(--vdl-entry-accent);
    animation: vdlLogEnter 0.45s ease;
    animation-fill-mode: both;
}

.vdl-log-entry:hover {
    border-color: rgba(148, 163, 184, 0.4);
}

.vdl-log-entry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
}

.vdl-log-meta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.vdl-log-actions {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.vdl-log-entry .vdl-tree-host {
    margin-top: 0.45rem;
}

.vdl-event-badge {
    --vdl-badge-bg: rgba(148, 163, 184, 0.18);
    --vdl-badge-border: rgba(148, 163, 184, 0.35);
    --vdl-badge-color: #e2e8f0;
    --vdl-badge-glow: rgba(148, 163, 184, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vdl-badge-color);
    background: var(--vdl-badge-bg);
    border: 1px solid var(--vdl-badge-border);
    box-shadow: 0 0 0 1px rgba(8, 12, 34, 0.55), 0 0 20px var(--vdl-badge-glow);
    white-space: nowrap;
}

.vdl-event-label {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.vdl-event-icon {
    width: 0.85rem;
    height: 0.85rem;
}

.vdl-event-badge[data-event-kind="fetch"],
.vdl-log-entry[data-event-kind="fetch"] {
    --vdl-badge-bg: rgba(56, 189, 248, 0.16);
    --vdl-badge-border: rgba(56, 189, 248, 0.55);
    --vdl-badge-color: #bae6fd;
    --vdl-badge-glow: rgba(14, 165, 233, 0.6);
    --vdl-entry-accent: rgba(14, 165, 233, 0.45);
}

.vdl-event-badge[data-event-kind="sse"],
.vdl-log-entry[data-event-kind="sse"] {
    --vdl-badge-bg: rgba(74, 222, 128, 0.15);
    --vdl-badge-border: rgba(74, 222, 128, 0.45);
    --vdl-badge-color: #bbf7d0;
    --vdl-badge-glow: rgba(74, 222, 128, 0.5);
    --vdl-entry-accent: rgba(74, 222, 128, 0.4);
}

.vdl-event-badge[data-event-kind="directive"],
.vdl-log-entry[data-event-kind="directive"] {
    --vdl-badge-bg: rgba(192, 132, 252, 0.18);
    --vdl-badge-border: rgba(192, 132, 252, 0.52);
    --vdl-badge-color: #f5d0fe;
    --vdl-badge-glow: rgba(192, 132, 252, 0.55);
    --vdl-entry-accent: rgba(192, 132, 252, 0.45);
}

.vdl-event-badge[data-event-kind="memory"],
.vdl-log-entry[data-event-kind="memory"] {
    --vdl-badge-bg: rgba(249, 115, 22, 0.18);
    --vdl-badge-border: rgba(249, 115, 22, 0.5);
    --vdl-badge-color: #fed7aa;
    --vdl-badge-glow: rgba(249, 115, 22, 0.55);
    --vdl-entry-accent: rgba(249, 115, 22, 0.45);
}

.vdl-event-badge[data-event-kind="system"],
.vdl-log-entry[data-event-kind="system"] {
    --vdl-badge-bg: rgba(244, 114, 182, 0.18);
    --vdl-badge-border: rgba(244, 114, 182, 0.52);
    --vdl-badge-color: #fbcfe8;
    --vdl-badge-glow: rgba(244, 114, 182, 0.55);
    --vdl-entry-accent: rgba(244, 114, 182, 0.45);
}

@keyframes vdlLogEnter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vdl-definition {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 0.5rem;
    margin: 0;
}

.vdl-definition dt {
    font-weight: 500;
    color: #cbd5f5;
}

.vdl-definition dd {
    margin: 0;
    color: #f8fafc;
}

.vdl-directive-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.vdl-type-meta {
    margin-top: 0.3rem;
    color: rgba(226, 232, 240, 0.8);
}

.vdl-tree-host {
    margin-top: 0.5rem;
}

.vdl-inspector {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(12, 18, 46, 0.9), rgba(17, 24, 56, 0.82));
    padding: 0.55rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    box-shadow: 0 16px 35px rgba(8, 12, 34, 0.4), inset 0 0 0 1px rgba(148, 163, 184, 0.12);
    backdrop-filter: blur(12px);
}

.vdl-inspector-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vdl-inspector-actions {
    display: flex;
    gap: 0.35rem;
}

.vdl-inspector-view {
    max-height: 260px;
    overflow: auto;
    border-radius: 10px;
    background: linear-gradient(150deg, rgba(9, 14, 34, 0.85), rgba(17, 24, 56, 0.75));
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
    padding: 0.35rem 0.3rem;
}

.vdl-btn-ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.3);
}

.vdl-btn-ghost:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.5);
}

.vdl-json-view {
    margin: 0;
    white-space: pre;
}

.vdl-inspector-view > .vdl-tree,
.vdl-inspector-view > .vdl-tree-primitive {
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.vdl-tree {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    background: linear-gradient(150deg, rgba(13, 19, 45, 0.9), rgba(17, 24, 56, 0.75));
    padding: 0.4rem 0.3rem;
    max-height: 260px;
    overflow: auto;
    font-family: inherit;
    color: var(--vdl-text-primary);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.vdl-tree-node + .vdl-tree-node {
    margin-top: 0.15rem;
}

.vdl-tree-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1.4;
    border-radius: 8px;
    padding: 0.25rem 0.4rem;
    cursor: default;
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.vdl-tree-row.is-expandable {
    cursor: pointer;
}

.vdl-tree-row.is-expandable:hover,
.vdl-tree-row.is-expandable:focus-visible {
    background: rgba(56, 189, 248, 0.12);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.vdl-tree-row.is-expandable:focus-visible {
    outline: none;
}

.vdl-tree-toggle {
    width: 1.25rem;
    height: 1.25rem;
    border: none;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.12);
    color: #bfdbfe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vdl-tree-toggle:hover {
    background: rgba(59, 130, 246, 0.22);
    color: #e0f2fe;
}

.vdl-tree-toggle.is-placeholder {
    cursor: default;
    color: transparent;
    background: transparent;
}

.vdl-tree-key {
    color: #e0f2fe;
    font-weight: 600;
    flex-shrink: 0;
}

.vdl-tree-summary {
    color: #93c5fd;
}

.vdl-tree-value {
    color: #bfdbfe;
    white-space: pre-wrap;
    word-break: break-word;
}

.vdl-tree-children {
    margin-top: 0.2rem;
}

.vdl-tree-node.is-collapsed > .vdl-tree-children {
    display: none;
}

.vdl-tree-primitive {
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    background: linear-gradient(150deg, rgba(13, 19, 45, 0.9), rgba(17, 24, 56, 0.75));
    padding: 0.45rem 0.5rem;
    color: #bfdbfe;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.vdl-graph {
    display: grid;
    gap: 0.6rem;
}

.vdl-content details {
    background: linear-gradient(150deg, rgba(17, 24, 56, 0.78), rgba(10, 16, 38, 0.72));
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
    backdrop-filter: blur(10px);
}

.vdl-content summary {
    cursor: pointer;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: 0.04em;
}

.vdl-content code {
    background: rgba(15, 23, 42, 0.6);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    color: #bae6fd;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.15);
}
