@import"https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;600&display=swap";:root{--primary-color: #00ffcc;--secondary-color: #ffffff;--accent-color: #ffff00;--background-color: #13345f;--card-background: #1a4a73;--code-background: #0a1a2a;--text-color: #ffffff;--text-muted: #cccccc;--border-color: #00ffcc;--tag-background: #00ffcc;--tag-color: #13345f;--prompt-color: #00ffcc;--error-color: #ff6b6b;--success-color: #51cf66;--warning-color: #ffd43b;--glow-primary: 0 0 10px var(--primary-color);--glow-accent: 0 0 5px var(--accent-color);--shadow-card: 0 0 20px rgba(0, 255, 204, .1);--shadow-card-hover: 0 0 30px rgba(0, 255, 204, .3);--font-family: "Menlo", "Courier New", "Monaco", "Ubuntu Mono", monospace;--font-size-base: 14px;--font-size-small: 12px;--line-height-base: 1.6;--spacing-xs: .25rem;--spacing-sm: .5rem;--spacing-md: 1rem;--spacing-lg: 1.5rem;--spacing-xl: 2rem;--spacing-xxl: 3rem;--transition-fast: .15s ease;--transition-normal: .3s ease;--transition-slow: .5s ease}a{color:var(--primary-color);text-decoration:none;transition:var(--transition-normal)}.terminal-cursor:after{content:"_";animation:blink 1s infinite;color:var(--accent-color);margin-left:var(--spacing-sm)}.container{max-width:1200px;margin:0 auto;display:flex;flex-direction:column}.terminal-header{display:flex;justify-content:space-between;align-items:center;padding:var(--spacing-xl) 0;border-bottom:1px solid var(--border-color);margin-bottom:var(--spacing-xl);position:relative}.terminal-title{color:var(--primary-color);font-size:2rem;font-weight:700;text-shadow:var(--glow-primary)}.terminal-nav{display:flex;gap:var(--spacing-md);flex-wrap:wrap}.terminal-nav a{padding:var(--spacing-sm) var(--spacing-md);border:1px solid transparent;transition:var(--transition-normal);position:relative}.terminal-card{background:var(--card-background);border:2px solid var(--border-color);padding:var(--spacing-lg);transition:var(--transition-normal);position:relative;box-shadow:var(--shadow-card);animation:fadeInTerminal var(--transition-slow) ease-out}.terminal-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-card-hover);border-color:var(--accent-color)}.terminal-tag{background:var(--tag-background);color:var(--tag-color);padding:var(--spacing-xs) var(--spacing-sm);font-size:var(--font-size-small);font-weight:600;border:1px solid var(--tag-background);display:inline-block}.terminal-meta{display:flex;justify-content:space-between;align-items:center;padding:var(--spacing-sm) 0;border-top:1px dashed var(--border-color);border-bottom:1px dashed var(--border-color);margin:var(--spacing-md) 0;flex-wrap:wrap;gap:var(--spacing-sm)}.terminal-code{background:var(--code-background);color:var(--primary-color);padding:var(--spacing-md);border:1px solid var(--border-color);overflow-x:auto;font-family:var(--font-family);position:relative}.terminal-code:before{content:"┌─[terminal]─";position:absolute;top:-1px;left:10px;background:var(--code-background);color:var(--border-color);padding:0 5px;font-size:10px}.inline-code{background:#00ffcc1a;color:var(--primary-color);padding:var(--spacing-xs);font-family:var(--font-family);border:1px solid rgba(0,255,204,.3);font-size:.875em}.terminal-footer{text-align:center;padding:var(--spacing-xl) 0;border-top:1px solid var(--border-color);color:var(--text-muted);font-size:.875rem;position:relative;margin-top:auto}.terminal-footer:before{content:"EOF";position:absolute;left:50%;top:-10px;transform:translate(-50%);background:var(--background-color);padding:0 10px;color:var(--border-color);font-size:var(--font-size-small)}@media (max-width: 768px){.container{padding:0 var(--spacing-md)}.terminal-header{flex-direction:column;gap:var(--spacing-md);text-align:center}.terminal-nav{justify-content:center}.terminal-meta{flex-direction:column;align-items:flex-start}}@media (max-width: 480px){:root{--font-size-base: 12px}.terminal-title{font-size:1.5rem}}body{background-color:#13345f;color:#fff;background-image:linear-gradient(rgba(0,255,204,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,255,204,.05) 1px,transparent 1px);background-size:40px 40px;background-attachment:fixed;margin:0}.content-bounds{max-width:1000px;border-left:1px solid var(--border-color);border-right:1px solid var(--border-color);background-color:#13345fd9;min-height:100vh;margin:0 auto}.mono-text{font-family:var(--font-mono)}.blink{animation:blinker 1s step-end infinite}@keyframes blinker{50%{opacity:0}}.blog-container{max-width:1200px;margin:0 auto;padding:0 var(--spacing-lg);min-height:100vh;display:flex;flex-direction:column}.blog-top-nav{position:sticky;top:0;z-index:100;display:flex;justify-content:space-between;align-items:center;padding:10px 20px;background-color:var(--code-background);border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color)}.blog-top-nav .current-path{color:#fff;transition:opacity .15s}.blog-top-nav .blink{color:var(--primary-color)}.blog-nav{display:flex;gap:20px;text-transform:lowercase}.blog-nav a{text-decoration:none;color:#ccc;padding:0;border:1px solid transparent;transition:color .2s;font-family:inherit;position:relative}.blog-nav a:before{content:none}.blog-nav a:after{content:none}.blog-nav a span:first-child,.blog-nav a span:last-child{opacity:.6}.blog-nav a:hover,.blog-nav a.active{color:#0fc}.blog-main{padding-top:var(--spacing-xl)}.blog-main{flex:1;margin-bottom:var(--spacing-xl)}.blog-heading{border:1px solid var(--border-color);background:#0a1a2a6b;padding:var(--spacing-lg);margin-bottom:var(--spacing-xl)}.blog-kicker{color:var(--primary-color);font-size:.9rem;margin:0 0 var(--spacing-sm)}.blog-title{font-size:2rem;font-weight:600;margin:0 0 var(--spacing-sm);color:var(--primary-color);text-shadow:var(--glow-primary)}.blog-intro{margin:0;color:var(--text-muted);line-height:1.7}.posts-grid{display:grid;gap:var(--spacing-xl);grid-template-columns:repeat(auto-fill,minmax(350px,1fr))}.post-card{background:var(--card-background);border:2px solid var(--border-color);padding:var(--spacing-lg);transition:var(--transition-normal);position:relative;box-shadow:var(--shadow-card);animation:fadeInTerminal var(--transition-slow) ease-out}.post-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-card-hover);border-color:var(--accent-color)}.post-card h3{margin-bottom:.75rem;margin-top:var(--spacing-md)}.post-card h3 a{text-decoration:none;color:var(--text-color);font-size:1.25rem;font-weight:600;position:relative}.post-card h3 a:before{content:"▶ ";color:var(--primary-color);margin-right:var(--spacing-sm)}.post-card h3 a:hover{color:var(--accent-color);text-shadow:var(--glow-accent)}.post-card h3 a:hover:before{color:var(--accent-color)}.post-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--spacing-md);flex-wrap:wrap;gap:var(--spacing-sm);padding:var(--spacing-sm) 0;border-top:1px dashed var(--border-color);border-bottom:1px dashed var(--border-color)}.post-meta time{color:var(--primary-color);font-size:.875rem;font-family:inherit}.post-meta time:before{content:"[";color:var(--border-color)}.post-meta time:after{content:"]";color:var(--border-color)}.post-tags{display:flex;gap:var(--spacing-sm);flex-wrap:wrap}.tag{background:var(--tag-background);color:var(--tag-color);padding:var(--spacing-xs) var(--spacing-sm);font-size:.75rem;font-weight:600;font-family:inherit;border:1px solid var(--tag-background);position:relative}.tag:before{content:"#";margin-right:2px}.post-description{color:var(--secondary-color);line-height:1.5;font-style:italic;opacity:.9}.post-article{background:transparent;padding:var(--spacing-lg) 0;position:relative}.post-article:before{content:none}.post-header{margin-bottom:var(--spacing-xl);padding-bottom:var(--spacing-md);position:relative}.post-header:before{content:"#!/usr/bin/blog";position:absolute;top:-1.5rem;left:0;color:var(--primary-color);font-size:.875rem;opacity:.7}.post-title{font-size:2.25rem;font-weight:700;margin-bottom:var(--spacing-md);margin-top:var(--spacing-sm);color:var(--text-color);line-height:1.2;position:relative}.post-title:before{content:"# ";color:var(--primary-color);margin-right:var(--spacing-sm)}.post-content{line-height:1.7}.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6{margin-top:var(--spacing-xl);margin-bottom:var(--spacing-md);color:var(--text-color);font-weight:600;position:relative}.post-content h1:before{content:"# ";color:var(--primary-color)}.post-content h2:before{content:"## ";color:var(--primary-color)}.post-content h3:before{content:"### ";color:var(--primary-color)}.post-content h4:before{content:"#### ";color:var(--primary-color)}.post-content h5:before{content:"##### ";color:var(--primary-color)}.post-content h6:before{content:"###### ";color:var(--primary-color)}.post-content h1{font-size:2rem}.post-content h2{font-size:1.75rem}.post-content h3{font-size:1.5rem}.post-content p,.post-content hr{margin-bottom:var(--spacing-md)}.post-content ul,.post-content ol{margin-bottom:var(--spacing-md);padding-left:var(--spacing-xl)}.post-content li{margin-bottom:var(--spacing-sm);position:relative}.post-content ul li{list-style:none}.post-content ul li:before{content:"→";position:absolute;left:-1.5rem;color:var(--primary-color)}.post-content ol li:before{color:var(--primary-color)}.post-content a{color:var(--primary-color);text-decoration:none;position:relative}.post-content a:before{content:"[";color:var(--border-color)}.post-content a:after{content:"]";color:var(--border-color)}.post-content a:hover{color:var(--accent-color);text-shadow:var(--glow-accent)}.post-content a:hover:before,.post-content a:hover:after{color:var(--accent-color)}.post-content blockquote{border-left:4px solid var(--primary-color);margin:var(--spacing-lg) 0;padding:var(--spacing-md) var(--spacing-lg);background:#00ffcc1a;font-style:italic;position:relative}.post-content blockquote:before{content:"▸ ";color:var(--primary-color);font-weight:700;font-style:normal}.post-content pre{background:var(--code-background);color:var(--primary-color);padding:var(--spacing-md);border:1px solid var(--border-color);overflow-x:auto;margin:var(--spacing-md) 0;position:relative}.post-content pre:before{content:"┌─[code]─";position:absolute;top:-1px;left:10px;background:var(--code-background);color:var(--border-color);padding:0 5px;font-size:10px}.post-content code{background:#00ffcc1a;color:var(--primary-color);padding:.125rem .25rem;font-size:.875rem;font-family:inherit;border:1px solid rgba(0,255,204,.3)}.post-content pre code{background:none;color:inherit;padding:0;border:none}.post-content img{max-width:100%;height:auto;border:2px solid var(--border-color);margin:var(--spacing-md) 0;filter:brightness(.9) contrast(1.1)}.post-content table{width:100%;border-collapse:collapse;margin:var(--spacing-md) 0;border:2px solid var(--border-color)}.post-content th,.post-content td{border:1px solid var(--border-color);padding:.75rem;text-align:left}.post-content th{background:#00ffcc1a;font-weight:600;color:var(--primary-color)}.post-content tr:nth-child(2n){background:#00ffcc0d}.post-nav{display:grid;grid-template-columns:1fr 1fr;gap:var(--spacing-lg);margin-top:var(--spacing-xl);padding-top:var(--spacing-lg);border-top:1px dashed var(--border-color)}.post-nav-spacer{display:block}.post-nav-link{display:flex;flex-direction:column;gap:6px;background:var(--card-background);border:2px solid var(--border-color);padding:var(--spacing-md);text-decoration:none;color:var(--text-color);transition:var(--transition-normal);box-shadow:var(--shadow-card)}.post-nav-link:hover{border-color:var(--accent-color);transform:translateY(-3px);box-shadow:var(--shadow-card-hover);color:var(--accent-color)}.post-nav-link.prev:before,.post-nav-link.next:before{content:attr(rel);display:inline-block;color:var(--primary-color);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase}.post-nav-link .nav-label{display:none}.post-nav-link .nav-title{font-weight:600}.post-nav-link time{font-size:.85rem;color:var(--secondary-color)}@media (max-width: 768px){.post-nav{grid-template-columns:1fr}}.no-posts{text-align:center;padding:4rem var(--spacing-xl);color:var(--secondary-color);font-size:1.125rem;position:relative}.no-posts:before{content:"404: Posts not found";display:block;color:var(--primary-color);font-size:1.5rem;margin-bottom:var(--spacing-md);text-shadow:var(--glow-primary)}.blog-footer{border-top:1px dashed #00ffcc;background:#0a1a2a;color:#ccc;font-size:.85rem;padding:3.75rem 0}.blog-footer-inner{line-height:1.9}.footer-eof{color:#0fc;margin:0 0 .9rem}.footer-brand{color:#fff}.footer-sep{color:#0fc;margin:0 .45rem}.footer-link{border-bottom:1px solid transparent;color:#ccc;text-decoration:none;transition:border-color .2s,color .2s}.footer-link:hover{border-color:#0fc;color:#0fc}@media (max-width: 768px){.blog-container{padding:0 var(--spacing-md)}.blog-top-nav{flex-wrap:wrap;gap:var(--spacing-sm)}.blog-title{font-size:2rem}.post-title{font-size:1.75rem}.posts-grid{grid-template-columns:1fr}.post-article{padding:var(--spacing-lg)}.post-meta{flex-direction:column;align-items:flex-start}.post-article:before{display:none}.post-content{font-size:16px}.post-content h1{font-size:1.75rem}.post-content h2{font-size:1.5rem}.post-content h3{font-size:1.25rem}}/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-leading:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-content:""}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--leading-relaxed:1.625;--radius-sm:.25rem;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.start{inset-inline-start:var(--spacing)}.end{inset-inline-end:var(--spacing)}.top-0{top:calc(var(--spacing) * 0)}.z-50{z-index:50}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-2{margin-inline:calc(var(--spacing) * 2)}.mx-auto{margin-inline:auto}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows),0 3px 0 var(--tw-prose-kbd-shadows);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose{--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:oklab(21% -.00316127 -.0338527/.1);--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:#ffffff1a;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-4{margin-top:calc(var(--spacing) * 4)}.mt-6{margin-top:calc(var(--spacing) * 6)}.mt-16{margin-top:calc(var(--spacing) * 16)}.mr-1{margin-right:calc(var(--spacing) * 1)}.mr-5{margin-right:calc(var(--spacing) * 5)}.mb-1{margin-bottom:calc(var(--spacing) * 1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-3{margin-bottom:calc(var(--spacing) * 3)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.mb-5{margin-bottom:calc(var(--spacing) * 5)}.mb-6{margin-bottom:calc(var(--spacing) * 6)}.mb-10{margin-bottom:calc(var(--spacing) * 10)}.ml-1{margin-left:calc(var(--spacing) * 1)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.h-5{height:calc(var(--spacing) * 5)}.h-\[90vh\]{height:90vh}.h-full{height:100%}.max-h-80{max-height:calc(var(--spacing) * 80)}.min-h-screen{min-height:100vh}.w-5{width:calc(var(--spacing) * 5)}.w-full{width:100%}.max-w-none{max-width:none}.flex-1{flex:1}.flex-grow{flex-grow:1}.cursor-default{cursor:default}.resize{resize:both}.list-none{list-style-type:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-\[1fr_1px_1fr\]{grid-template-columns:1fr 1px 1fr}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-5{gap:calc(var(--spacing) * 5)}.gap-10{gap:calc(var(--spacing) * 10)}.gap-16{gap:calc(var(--spacing) * 16)}.overflow-hidden{overflow:hidden}.scroll-smooth{scroll-behavior:smooth}.rounded-sm{border-radius:var(--radius-sm)}.border{border-style:var(--tw-border-style);border-width:1px}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-\[\#00ffcc\]{border-color:#0fc}.border-\[\#00ffcc\]\/20{border-color:#0fc3}.border-\[\#00ffcc\]\/30{border-color:#00ffcc4d}.border-\[\#00ffcc\]\/35{border-color:#00ffcc59}.border-\[\#00ffcc\]\/40{border-color:#0fc6}.border-\[\#00ffcc\]\/70{border-color:#00ffccb3}.border-transparent{border-color:#0000}.bg-\[\#0a1a2a\]{background-color:#0a1a2a}.bg-\[\#00ffcc\]{background-color:#0fc}.bg-\[rgba\(0\,255\,204\,0\.06\)\]{background-color:#00ffcc0f}.bg-\[rgba\(10\,26\,42\,0\.3\)\]{background-color:#0a1a2a4d}.bg-\[rgba\(10\,26\,42\,0\.5\)\]{background-color:#0a1a2a80}.bg-\[rgba\(10\,26\,42\,0\.35\)\]{background-color:#0a1a2a59}.bg-\[rgba\(10\,26\,42\,0\.45\)\]{background-color:#0a1a2a73}.object-cover{object-fit:cover}.p-3{padding:calc(var(--spacing) * 3)}.p-5{padding:calc(var(--spacing) * 5)}.p-6{padding:calc(var(--spacing) * 6)}.p-10{padding:calc(var(--spacing) * 10)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-5{padding-inline:calc(var(--spacing) * 5)}.px-10{padding-inline:calc(var(--spacing) * 10)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-4{padding-block:calc(var(--spacing) * 4)}.py-5{padding-block:calc(var(--spacing) * 5)}.py-15{padding-block:calc(var(--spacing) * 15)}.text-center{text-align:center}.text-left{text-align:left}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[0\.85rem\]{font-size:.85rem}.text-\[0\.95rem\]{font-size:.95rem}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.tracking-\[1px\]{--tw-tracking:1px;letter-spacing:1px}.text-\[\#00ffcc\]{color:#0fc}.text-\[\#00ffcc\]\/85{color:#00ffccd9}.text-\[\#00ffcc\]\/90{color:#00ffcce6}.text-\[\#cccccc\]{color:#ccc}.text-\[\#cccccc\]\/70{color:#ccccccb3}.text-white{color:var(--color-white)}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.italic{font-style:italic}.opacity-60{opacity:.6}.shadow-\[10px_10px_0px_rgba\(0\,255\,204\,0\.1\)\]{--tw-shadow:10px 10px 0px var(--tw-shadow-color,#00ffcc1a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.prose-invert{--tw-prose-body:var(--tw-prose-invert-body);--tw-prose-headings:var(--tw-prose-invert-headings);--tw-prose-lead:var(--tw-prose-invert-lead);--tw-prose-links:var(--tw-prose-invert-links);--tw-prose-bold:var(--tw-prose-invert-bold);--tw-prose-counters:var(--tw-prose-invert-counters);--tw-prose-bullets:var(--tw-prose-invert-bullets);--tw-prose-hr:var(--tw-prose-invert-hr);--tw-prose-quotes:var(--tw-prose-invert-quotes);--tw-prose-quote-borders:var(--tw-prose-invert-quote-borders);--tw-prose-captions:var(--tw-prose-invert-captions);--tw-prose-kbd:var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows:var(--tw-prose-invert-kbd-shadows);--tw-prose-code:var(--tw-prose-invert-code);--tw-prose-pre-code:var(--tw-prose-invert-pre-code);--tw-prose-pre-bg:var(--tw-prose-invert-pre-bg);--tw-prose-th-borders:var(--tw-prose-invert-th-borders);--tw-prose-td-borders:var(--tw-prose-invert-td-borders)}.before\:text-\[\#00ffcc\]:before{content:var(--tw-content);color:#0fc}.before\:content-\[\'\*_\'\]:before{--tw-content:"* ";content:var(--tw-content)}.last\:border-b-0:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media (hover:hover){.hover\:border-\[\#00ffcc\]:hover{border-color:#0fc}.hover\:bg-\[\#00ffcc\]:hover{background-color:#0fc}.hover\:bg-\[rgba\(10\,26\,42\,0\.6\)\]:hover{background-color:#0a1a2a99}.hover\:text-\[\#0a1a2a\]:hover{color:#0a1a2a}.hover\:text-\[\#00ffcc\]:hover{color:#0fc}}@media not all and (min-width:48rem){.max-md\:h-px{height:1px}.max-md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.max-md\:flex-col{flex-direction:column}.max-md\:items-start{align-items:flex-start}.max-md\:gap-1{gap:calc(var(--spacing) * 1)}.max-md\:p-5{padding:calc(var(--spacing) * 5)}.max-md\:p-8{padding:calc(var(--spacing) * 8)}.max-md\:px-5{padding-inline:calc(var(--spacing) * 5)}.max-md\:py-10{padding-block:calc(var(--spacing) * 10)}}@media (min-width:48rem){.md\:col-span-2{grid-column:span 2/span 2}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:flex-row-reverse{flex-direction:row-reverse}.md\:border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.md\:border-l-\[\#00ffcc\]\/30{border-left-color:#00ffcc4d}}@media (min-width:64rem){.lg\:col-span-1{grid-column:span 1/span 1}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.lg\:border-b-0{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.lg\:border-l-0{border-left-style:var(--tw-border-style);border-left-width:0}.lg\:border-r-\[\#00ffcc\]\/30{border-right-color:#00ffcc4d}}}:root{--primary-color:#0fc;--secondary-color:#fff;--accent-color:#ff0;--background-color:#13345f;--card-background:#1a4a73;--code-background:#0a1a2a;--text-color:#fff;--text-muted:#ccc;--border-color:#0fc;--tag-background:#0fc;--tag-color:#13345f;--prompt-color:#0fc;--error-color:#ff6b6b;--success-color:#51cf66;--warning-color:#ffd43b;--glow-primary:0 0 10px var(--primary-color);--glow-accent:0 0 5px var(--accent-color);--shadow-card:0 0 20px #00ffcc1a;--shadow-card-hover:0 0 30px #00ffcc4d;--font-family:"Menlo", "Courier New", "Monaco", "Ubuntu Mono", monospace;--font-size-base:14px;--font-size-small:12px;--line-height-base:1.6;--spacing-xs:.25rem;--spacing-sm:.5rem;--spacing-md:1rem;--spacing-lg:1.5rem;--spacing-xl:2rem;--spacing-xxl:3rem;--transition-fast:.15s ease;--transition-normal:.3s ease;--transition-slow:.5s ease}body{font-family:var(--font-family);line-height:var(--line-height-base);color:var(--text-color);background-color:var(--background-color);font-size:var(--font-size-base)}h1,h2,h3,h4,h5,h6{font-family:var(--font-family);font-weight:700;line-height:1.2}a{color:var(--primary-color);transition:var(--transition-normal);text-decoration:none}a:hover{color:var(--accent-color);text-shadow:var(--glow-accent)}.terminal-prompt:before{content:"> ";color:var(--prompt-color);font-weight:700}.terminal-command:before{content:"$ ";color:var(--prompt-color);margin-right:var(--spacing-sm)}.terminal-cursor:after{content:"_";color:var(--accent-color);margin-left:var(--spacing-sm);animation:1s infinite blink}.terminal-brackets:before{content:"[ ";color:var(--border-color)}.terminal-brackets:after{content:" ]";color:var(--border-color)}.terminal-hash:before{content:"# ";color:var(--primary-color)}.terminal-arrow:before{content:"▶ ";color:var(--primary-color);margin-right:var(--spacing-sm)}@keyframes blink{0%,50%{opacity:1}51%,to{opacity:0}}@keyframes fadeInTerminal{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes typing{0%{width:0}to{width:120px}}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.container{flex-direction:column;max-width:1200px;margin:0 auto;display:flex}.terminal-window{background:var(--card-background);border:2px solid var(--border-color);box-shadow:var(--shadow-card);transition:var(--transition-normal)}.terminal-window:hover{box-shadow:var(--shadow-card-hover);border-color:var(--accent-color)}.terminal-header{padding:var(--spacing-xl) 0;border-bottom:1px solid var(--border-color);margin-bottom:var(--spacing-xl);justify-content:space-between;align-items:center;display:flex;position:relative}.terminal-title{color:var(--primary-color);text-shadow:var(--glow-primary);font-size:2rem;font-weight:700}.terminal-nav{gap:var(--spacing-md);flex-wrap:wrap;display:flex}.terminal-nav a{padding:var(--spacing-sm) var(--spacing-md);transition:var(--transition-normal);border:1px solid #0000;position:relative}.terminal-nav a:hover,.terminal-nav a.active{color:var(--accent-color);border-color:var(--accent-color);text-shadow:var(--glow-accent)}.terminal-card{background:var(--card-background);border:2px solid var(--border-color);padding:var(--spacing-lg);transition:var(--transition-normal);box-shadow:var(--shadow-card);animation:fadeInTerminal var(--transition-slow) ease-out;position:relative}.terminal-card:hover{box-shadow:var(--shadow-card-hover);border-color:var(--accent-color);transform:translateY(-5px)}.terminal-tag{background:var(--tag-background);color:var(--tag-color);padding:var(--spacing-xs) var(--spacing-sm);font-size:var(--font-size-small);border:1px solid var(--tag-background);font-weight:600;display:inline-block}.terminal-meta{padding:var(--spacing-sm) 0;border-top:1px dashed var(--border-color);border-bottom:1px dashed var(--border-color);margin:var(--spacing-md) 0;justify-content:space-between;align-items:center;gap:var(--spacing-sm);flex-wrap:wrap;display:flex}.terminal-code{background:var(--code-background);color:var(--primary-color);padding:var(--spacing-md);border:1px solid var(--border-color);font-family:var(--font-family);position:relative;overflow-x:auto}.terminal-code:before{content:"┌─[terminal]─";background:var(--code-background);color:var(--border-color);padding:0 5px;font-size:10px;position:absolute;top:-1px;left:10px}.inline-code{color:var(--primary-color);padding:var(--spacing-xs);font-family:var(--font-family);background:#00ffcc1a;border:1px solid #00ffcc4d;font-size:.875em}.terminal-footer{text-align:center;padding:var(--spacing-xl) 0;border-top:1px solid var(--border-color);color:var(--text-muted);margin-top:auto;font-size:.875rem;position:relative}.terminal-footer:before{content:"EOF";background:var(--background-color);color:var(--border-color);font-size:var(--font-size-small);padding:0 10px;position:absolute;top:-10px;left:50%;transform:translate(-50%)}.terminal-nav a:focus,.terminal-card:focus,a:focus{outline:2px dashed var(--accent-color);outline-offset:2px}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--background-color)}::-webkit-scrollbar-thumb{background:var(--border-color);border-radius:0}::-webkit-scrollbar-thumb:hover{background:var(--primary-color)}@media (max-width:768px){.container{padding:0 var(--spacing-md)}.terminal-header{gap:var(--spacing-md);text-align:center;flex-direction:column}.terminal-nav{justify-content:center}.terminal-meta{flex-direction:column;align-items:flex-start}}@media (max-width:480px){:root{--font-size-base:12px}.terminal-title{font-size:1.5rem}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-content{syntax:"*";inherits:false;initial-value:""}
