.header-6e8aad9 {
    margin-bottom: 3rem;
    border-bottom: var(--border-dashed);
    padding-bottom: 2rem;
}

.date-6e8aad9 {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .header-6e8aad9 {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}

.content-6e8aad9 {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Markdown Content Styling */
.content-6e8aad9 h1,
.content-6e8aad9 h2,
.content-6e8aad9 h3,
.content-6e8aad9 h4,
.content-6e8aad9 h5,
.content-6e8aad9 h6 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-mono);
}

.content-6e8aad9 h1 {
    font-size: 2.4rem;
    border-bottom: var(--border-dashed);
    padding-bottom: 0.5rem;
    color: var(--color-primary);
}

.content-6e8aad9 h2 {
    font-size: 2.0rem;
}

.content-6e8aad9 h3 {
    font-size: 1.7rem;
}

.content-6e8aad9 ul,
.content-6e8aad9 ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.content-6e8aad9 li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.content-6e8aad9 li::marker {
    color: var(--color-primary);
}

.content-6e8aad9 a {
    color: var(--color-primary);
    text-decoration: underline;
    font-family: var(--font-mono);
    text-decoration-style: solid;
    text-underline-offset: 4px;
    transition: all 0.2s;
}

@media (hover: hover) {
    .content-6e8aad9 a:hover {
        background-color: transparent;
        color: var(--color-primary);
        text-decoration-thickness: 2px;
    }
}

.content-6e8aad9 blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 2.5rem 0;
    padding: 1rem 2rem;
    background-color: var(--color-background);
    font-style: italic;
    color: var(--color-text-secondary);
}

.content-6e8aad9 pre {
    background-color: var(--color-panel-bg);
    padding: 1.5rem;
    border: var(--border-solid);
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.content-6e8aad9 code {
    font-family: var(--font-mono);
    background-color: var(--color-panel-bg);
    padding: 0.2em 0.4em;
    font-size: 0.9em;
    color: var(--color-primary);
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

.content-6e8aad9 pre code {
    background-color: transparent;
    padding: 0;
    font-size: 0.95em;
    color: var(--color-text-secondary);
}

.content-6e8aad9 strong {
    color: var(--color-primary);
    font-weight: bold;
}

.content-6e8aad9 img {
    max-width: 100%;
    height: auto;
    border: var(--border-solid);
    margin: 1rem 0;
}

.content-6e8aad9 hr {
    border: 0;
    border-top: var(--border-dashed);
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .content-6e8aad9 {
        font-size: 1.1rem;
    }

    .content-6e8aad9 h1 {
        font-size: 2.0rem;
    }

    .content-6e8aad9 h2 {
        font-size: 1.7rem;
    }

    .content-6e8aad9 h3 {
        font-size: 1.5rem;
    }
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        box-shadow: 2px 2px 0 var(--color-text-muted);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 0 transparent;
    }
}

.title-91f2f4a {
    font-size: 2.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* System Status Indicator */
.title-91f2f4a::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    animation: pulse-green 2s infinite;
}

.post_list-91f2f4a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    counter-reset: blog-post;
    /* Initialize Counter */
}

.article_card-91f2f4a {
    display: flex;
    flex-direction: column;
    border: var(--border-solid);
    padding: 1.25rem;
    transition: all 0.2s ease;
    background-color: var(--color-background);
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    counter-increment: blog-post;
    /* Increment Counter */
    height: 100%;
    /* Equal height cards */
    font-family: var(--font-mono);
}

/* First item spans full width */
.article_card-91f2f4a:nth-child(1) {
    grid-column: 1 / -1;
}

/* If the last item is even (meaning it's alone in the grid after the first full-width item), make it full width too */
.article_card-91f2f4a:last-child:nth-child(even) {
    grid-column: 1 / -1;
}

/* Corner Brackets */
.article_card-91f2f4a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-text-muted);
    border-left: 2px solid var(--color-text-muted);
    transition: all 0.2s;
    pointer-events: none;
}

.article_card-91f2f4a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--color-text-muted);
    border-right: 2px solid var(--color-text-muted);
    transition: all 0.2s;
    pointer-events: none;
}

@media (hover: hover) {
    .article_card-91f2f4a:hover {
        border-color: var(--color-primary);
        box-shadow: var(--shadow-hard);
        transform: translate(-2px, -2px);
    }

    .article_card-91f2f4a:hover::before,
    .article_card-91f2f4a:hover::after {
        border-color: var(--color-primary);
        width: 20px;
        height: 20px;
    }
}

.article_card-91f2f4a:active {
    transition-duration: 0s;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hard);
    transform: translate(-2px, -2px);
}

.article_title-91f2f4a {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    transition: color 0.2s;

    /* Alignment Fix */
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

/* Database Indexing */
.article_title-91f2f4a::before {
    content: counter(blog-post, decimal-leading-zero) " // ";
    color: var(--color-primary);
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.8;
    white-space: nowrap;
    /* Keep index and slashes together */
    flex-shrink: 0;
    /* Don't let the index shrink */
}

@media (hover: hover) {
    .article_card-91f2f4a:hover .article_title-91f2f4a {
        color: var(--color-primary);
    }
}

.article_card-91f2f4a:active .article_title-91f2f4a {
    transition-duration: 0s;
    color: var(--color-primary);
}

.date-91f2f4a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: inline-block;
    font-style: italic;
}

.summary-91f2f4a {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--color-text-secondary);
    flex-grow: 1;
    /* Push bottom content down if needed */
}

@media (max-width: 768px) {
    .post_list-91f2f4a {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .title-91f2f4a {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .article_card-91f2f4a {
        padding: 1rem;
    }

    .article_title-91f2f4a {
        font-size: 1.1rem;
    }
}

.container-cb17011 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    color: var(--color-text);
    font-family: var(--font-main);
}

.page_title-cb17011 {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.back_link_container-cb17011 {
    margin-top: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.back_link-cb17011 {
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-text-muted);
    transition: all 0.2s;
    font-family: var(--font-mono);
    display: inline-block;
}

@media (hover: hover) {
    .back_link-cb17011:hover {
        color: var(--color-primary);
        border-bottom: 1px dashed var(--color-primary);
    }
}

.back_link-cb17011:active {
    color: var(--color-primary);
    border-bottom: 1px dashed var(--color-primary);
}

.back_link_button-cb17011 {
    display: inline-block;
    color: var(--color-text);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.0rem;
    border: var(--border-solid);
    padding: 8px 16px;
    transition: all 0.2s;
    border-color: var(--color-text);
    font-family: var(--font-mono);
}

@media (hover: hover) {
    .back_link_button-cb17011:hover {
        background-color: var(--color-background);
        color: var(--color-primary);
        border-color: var(--color-primary);
        box-shadow: var(--shadow-hard);
        transform: translate(-2px, -2px);
    }
}

@media (max-width: 768px) {
    .container-cb17011 {
        padding: 40px 16px;
    }

    .page_title-cb17011 {
        font-size: 2rem;
    }
}

/* Keyframes removed */

/* Page Corners Removed */

.home_container-5182da4 {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* --- SECTION 1: MASTHEAD & NAV --- */

.masthead_container-5182da4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--color-text);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.giant_title-5182da4 {
    font-family: var(--font-mono);
    font-size: 8rem;
    /* MASSIVE */
    font-weight: 900;
    line-height: 0.8;
    color: var(--color-text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.nav_row-5182da4 {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
}

/* --- SECTION 2: SPLIT LAYOUT --- */

.main_content_grid-5182da4 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* 60/40 Split */
    gap: 40px;
    flex-grow: 1;
    min-height: 500px;
}

/* LEFT: BLUEPRINT AREA */
.blueprint_panel-5182da4 {
    border: 2px solid var(--color-text);
    background-color: var(--color-panel-bg);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.blueprint_header-5182da4 {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-text-muted);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.blueprint_content-5182da4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.diagram_image-5182da4 {
    width: 100%;
    height: 400px;
    /* Increased Height */
    background: url('/assets/mercury-diagram.svg') center/contain no-repeat;
    opacity: 0.9;
    /* Filter to turn white/black into Deep Brown (#5D4037 approx) */
    filter: invert(1) sepia(1) saturate(3) hue-rotate(-50deg) contrast(0.8) brightness(0.6);
}

/* Sticky Note styles moved to sticky_note.module.css */


/* RIGHT: INSTRUMENT PANEL */
.instrument_panel-5182da4 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.voltmeter_container-5182da4 {
    background-color: var(--color-panel-bg);
    border: 2px solid var(--color-text);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge_label-5182da4 {
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    border-bottom: 2px solid var(--color-text);
}

.gauge_wrapper-5182da4 {
    position: relative;
    width: 240px;
    height: 140px;
    /* Semicircle - clip anything outside this area */
    overflow: hidden;
    margin: 20px 0;
}

.gauge_dial-5182da4 {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 12px solid var(--color-text);
    background: transparent;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.gauge_needle-5182da4 {
    position: absolute;
    /* Position needle pivot at center of the circle (120px from top of dial = bottom of visible semicircle) */
    top: 120px;
    left: calc(50% - 2px);
    width: 4px;
    height: 100px;
    background-color: var(--color-primary);
    transform-origin: top center;
    z-index: 2;
    /* Rotate 90deg by default (0 FPS = horizontal left), then JS updates from there */
    transform: rotate(90deg);
}

.gauge_needle-5182da4::after {
    content: "";
    /* Pivot point */
    position: absolute;
    top: -6px;
    left: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-text);
}

.readout_row-5182da4 {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    position: relative;
    z-index: 10;
    background-color: var(--color-panel-bg);
}

.digital_group-5182da4 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.digital_label-5182da4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: center;
}

.digital_readout-5182da4 {
    font-family: var(--font-mono);
    background-color: var(--color-text);
    color: #ff4444;
    padding: 4px 8px;
    font-size: 1rem;
    border: 2px solid var(--color-text-muted);
    text-align: center;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- SECTION 3: CONTROL DECK (BOTTOM) --- */

.control_deck-5182da4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.control_module-5182da4 {
    background-color: var(--color-background);
    border: 2px solid var(--color-text);
    padding: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.1s;
}

.control_module-5182da4:hover {
    transform: translate(2px, 2px);
    border-color: var(--color-primary);
}

.control_module-5182da4:hover .module_label-5182da4 {
    color: var(--color-primary);
}

.module_label-5182da4 {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.module_status-5182da4 {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

/* --- SECTION 4: INTRO --- */
.intro_section-5182da4 {
    margin-bottom: 30px;
    padding: 20px 20px;
    text-align: left;
    background-color: #ffeec1;
    border: 1px solid var(--color-text-muted);
    position: relative;
}

.intro_text-5182da4 {
    font-family: 'Departure Mono', var(--font-mono);
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1e1d1b;
    margin: 0rem;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .giant_title-5182da4 {
        font-size: 5rem;
    }

    .main_content_grid-5182da4 {
        grid-template-columns: 1fr;
    }

    .nav_row-5182da4 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .giant_title-5182da4 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .home_container-5182da4 {
        padding: 20px;
    }

    .nav_row-5182da4 {
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .control_deck-5182da4 {
        grid-template-columns: 1fr;
    }

    .intro_section-5182da4 {
        padding: 15px;
        margin-bottom: 20px;
    }

    .intro_text-5182da4 {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Base Body Styles - COPIED FROM ORIGINAL TO MAINTAIN GLOBALS */
html {
    background-color: var(--color-background);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    text-shadow: var(--text-shadow-std);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scale up for Desktop */
@media (min-width: 768px) {
    html {
        font-size: 110%;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
    border-left: var(--border-solid);
}

::-webkit-scrollbar-thumb {
    background: var(--color-text-secondary);
    /* Dark thumb */
    border: 2px solid var(--color-background);
    /* Creates a "gap" feel */
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-background);
    text-shadow: none;
}

/* NAVBAR STYLES */
.nav-ef449aa {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-border);
    background-color: transparent;
    font-family: var(--font-mono);
    position: relative;
    z-index: 100;
    width: 100%;
}

.links-ef449aa {
    display: flex;
    gap: 40px;
    /* Wide vintage spacing */
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.link-ef449aa {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

@media (hover: hover) {
    .link-ef449aa:hover {
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
        background-color: transparent;
    }
}

.link-ef449aa:active {
    color: var(--color-background);
    background-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}



/* GitHub Icon - keep it but style it minimal */
.github_icon-ef449aa {
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-left: 20px;
    border: 2px solid transparent;
    transition: none;
}

@media (hover: hover) {
    .github_icon-ef449aa:hover {
        color: var(--color-primary);
        background-color: transparent;
        border: 2px solid var(--color-primary);
        box-shadow: 2px 2px 0 var(--color-text-secondary);
    }
}

@media (max-width: 768px) {
    .nav-ef449aa {
        padding: 0.5rem;
        flex-wrap: wrap;
        gap: 10px;
    }

    .links-ef449aa {
        gap: 15px;
        width: 100%;
        justify-content: center;
    }

    .link-ef449aa {
        font-size: 0.9rem;
        padding: 6px 8px;
    }

    .github_icon-ef449aa {
        margin-left: 0;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* FOOTER STYLES */
.footer-ef449aa {
    border-top: var(--border-dashed);
    background-color: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-main);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-ef449aa::after {
    content: "/// END OF LINE ///";
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.5;
    margin-top: 1rem;
    letter-spacing: 3px;
    font-family: var(--font-mono);
}

.text-ef449aa {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer_highlight-ef449aa {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: bold;
}

.header-233421b {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.project_grid-233421b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(352px, 1fr));
    gap: 33px;
    margin-top: 3rem;
}

.card-233421b {
    background-color: var(--color-background);
    border: var(--border-solid);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16.5px;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
}

.card-233421b:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hard);
}

/* Scanner Line Effect Removed */

.card_header-233421b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 11px;
}

.card_name-233421b {
    font-family: var(--font-mono);
    font-size: 1.32rem;
    font-weight: bold;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card_status-233421b {
    font-family: var(--font-mono);
    font-size: 0.77rem;
    padding: 2.2px 6.6px;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-muted);
}

.status_online-233421b {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.card_desc-233421b {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
    flex-grow: 1;
}

.tech_stack-233421b {
    display: flex;
    flex-wrap: wrap;
    gap: 8.8px;
    margin-top: auto;
    /* Push to bottom */
}

.tech_tag-233421b {
    font-family: var(--font-mono);
    font-size: 0.77rem;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    background-color: transparent;
    padding: 4.4px 8.8px;
    border-radius: 2.2px;
}

.loading-233421b {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-size: 1.32rem;
    text-align: center;
    padding-top: 110px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .project_grid-233421b {
        grid-template-columns: 1fr;
    }

    .header-233421b {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }
}

.sticky_note-72090c9 {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: #feff9c;
    color: #333;
    padding: 20px;
    font-family: 'Inter';
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 1000;
    font-style: italic;
    border: 1px solid #e6e68a;
    transition: transform 0.1s;
    user-select: none;
    /* Prevent text selection while dragging */
}

.sticky_note-72090c9 strong {
    font-weight: 800;
    color: #000;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-thickness: 1px;
}

/* Hide sticky notes on mobile - drag functionality doesn't work well with touch */
@media (max-width: 768px) {
    .sticky_note-72090c9 {
        display: none;
    }
}

@font-face {
    font-family: 'Departure Mono';
    src: url('assets/fonts/DepartureMono-1.500/DepartureMono-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* ANALOG FUTURE / RETRO LAB THEME */

    /* Colors */
    --color-primary: #af3a03;
    /* Retro Safety Orange */
    --color-secondary: #076678;
    /* Deep Teal */

    --color-background: #fbf1c7;
    /* Warm Cream / Vintage Paper */
    --color-panel-bg: #f2e5bc;
    /* Darker Cream / Manilla Folder */

    /* TEXT COLORS */
    --color-text: #3c3836;
    /* Soft Charcoal */
    --color-text-secondary: #504945;
    /* Dark Brown-Grey */
    --color-text-muted: #7c6f64;
    /* Muted Earth Tone */

    /* BORDERS */
    --color-border: #a89984;
    /* Stone Grey */

    /* Fonts */
    --font-mono: 'Departure Mono', monospace;
    --font-main: 'Inter', sans-serif;

    /* Shadows & Effects */

    /* Hard retro shadow for tactile feel */
    --shadow-hard: 4px 4px 0px 0px var(--color-text-secondary);

    --text-shadow-std: none;

    /* Borders - Solid & Tactile */
    --border-dashed: 2px dashed var(--color-border);
    --border-solid: 2px solid var(--color-text);
    --border-primary: 2px solid var(--color-primary);


}