:root {
    --yorha-bg: #cdc7af;
    --yorha-dark: #454138;
    --yorha-accent: #bab59e;

    --theme-bg: var(--yorha-bg);
    --theme-text: var(--yorha-dark);
    --theme-border: var(--yorha-dark);
    --theme-accent: var(--yorha-accent);
    --theme-panel-bg: rgba(45, 41, 38, 0.9);
    --theme-card-bg: var(--yorha-bg);
    --theme-tag-bg: var(--yorha-dark);
    --theme-tag-text: var(--yorha-bg);
    --theme-selection-bg: rgba(69, 65, 56, 0.1);
    --theme-scroll-thumb: var(--yorha-dark);
    --theme-scroll-track: rgba(69, 65, 56, 0.05);
    --theme-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--theme-scroll-track);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-scroll-thumb);
    border: 2px solid var(--theme-bg);
}

::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.8);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-scroll-thumb) var(--theme-scroll-track);
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: var(--theme-bg);
    color: var(--theme-text);
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--theme-text) 1px, transparent 1px),
        linear-gradient(90deg, var(--theme-text) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 999;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}


body.pro-mode::before {
    opacity: 0 !important;
}

body.pro-mode::after {
    opacity: 0 !important;
}

body.pro-mode {
    --theme-bg: #f5f5f5;
    --theme-text: #333;
    --theme-border: #ddd;
    --theme-accent: rgb(122, 127, 251);
    --theme-panel-bg: rgba(255, 255, 255, 0.95);
    --theme-card-bg: white;
    --theme-tag-bg: #999;
    --theme-tag-text: white;
    --theme-selection-bg: rgba(0, 102, 204, 0.1);
    --theme-scroll-thumb: #999;
    --theme-scroll-track: #f5f5f5;
    --theme-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    font-family: 'Monaspace Neon', monospace;
    background: var(--theme-bg);
    color: var(--theme-text);
}

body.pro-mode .core-unit,
body.pro-mode .core-unit::before,
body.pro-mode .core-inner,
body.pro-mode .core-inner::after {
    clip-path: none;
    border-radius: 50%;
}

body.pro-mode .core-inner:hover::after {
    background: var(--theme-text);
}

body.pro-mode .node-btn {
    border: 2px solid var(--theme-text);
    border-radius: 4px;
}

body.pro-mode .content-panel {
    border-radius: 8px;
    box-shadow: var(--theme-shadow);
}

body.pro-mode .yorha-panel-deco::before,
body.pro-mode .yorha-panel-deco::after {
    display: none;
}

body.pro-mode .content-panel h2,
body.pro-mode .panel-content h2,
body.pro-mode .markdown-content h2 {
    background: transparent;
    color: var(--theme-text);
    border-bottom: 3px solid var(--theme-text);
    padding: 10px 0;
    display: block;
}

body.pro-mode .content-panel h2::before,
body.pro-mode .panel-content h2::before,
body.pro-mode .markdown-content h2::before {
    display: none;
}

body.pro-mode .markdown-content h1,
body.pro-mode .markdown-content h3 {
    border-bottom-color: var(--theme-border);
    padding-left: 0;
}

body.pro-mode .markdown-content h3::before {
    display: none;
}

body.pro-mode .contact-item {
    background: color-mix(in srgb, var(--theme-bg), transparent 50%);
}

body.pro-mode .experience-card {
    border-left-color: var(--theme-text);
}

body.pro-mode .experience-card::before {
    background: var(--theme-text);
}

body.pro-mode .markdown-content a {
    color: #7a7ffb;
}

body.pro-mode .markdown-content a:hover {
    background: #7a7ffb;
    color: white;
}

body.pro-mode .back-link {
    color: #333;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--theme-text);
    color: var(--theme-bg);
    border: 2px solid var(--theme-text);
    padding: 10px 20px;
    font-family: inherit;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.theme-toggle:hover {
    background: var(--theme-bg);
    color: var(--theme-text);
}

body.pro-mode .theme-toggle {
    border-radius: 4px;
}

.core-unit,
.core-unit::before,
.core-inner,
.core-inner::after {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.node-btn,
.app-card,
.markdown-content tr:nth-child(even),
.mermaid,
.arch-node,
.blog-entry-card:hover {
    background: var(--theme-scroll-track);
}

.node-btn:hover,
.app-card:hover,
.arch-node:hover,
.markdown-content a:hover {
    background: var(--theme-text);
    color: var(--theme-bg);
}

.yorha-panel-deco {
    position: relative;
}

.yorha-panel-deco::before {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0;
}

.yorha-panel-deco::after {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0;
}

.yorha-panel-deco:hover::before,
.yorha-panel-deco:hover::after {
    width: 100%;
    height: 100%;
}

.core-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hub-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.core-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 80px;
    flex: 1;
}

.nav-left {
    align-items: flex-end;
    text-align: right;
}

.nav-right {
    align-items: flex-start;
    text-align: left;
}

.core-unit {
    width: 220px;
    height: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme-text);

    cursor: pointer;
    transition: transform 0.2s;
}

.core-unit::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--theme-bg);

    z-index: 1;
}

.core-inner {
    width: 60%;
    height: 60%;
    background: var(--theme-text);
    z-index: 2;
    position: relative;
}

.core-inner::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--theme-bg);
    transition: background 0.2s;
}

.core-inner:hover::after {
    background: var(--theme-text);
}

.node-btn {
    position: relative;
    border: 0;
    color: var(--yorha-dark);
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.2s;
}

.node-btn .txt {
    display: block;
}

.hub-tagline {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.4;
}

.app-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-panel-bg);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.app-panel.hidden {
    opacity: 0;
    pointer-events: none;
}

.panel-content {
    background: var(--theme-card-bg);
    padding: 50px;
    border: 4px solid var(--theme-border);
    text-align: center;
    min-width: 400px;
    box-shadow: var(--theme-shadow);
    transform: scale(1);
    transition: transform 0.3s;
}

.app-panel.hidden .panel-content {
    transform: scale(0.95);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border: 2px solid var(--theme-border);
    transition: all 0.2s;
    cursor: pointer;
    color: var(--theme-text);
}

.app-card.disabled {
    opacity: 0.4;
    pointer-events: none;
    border-style: dashed;
}

.app-icon {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.close-btn {
    background: var(--theme-text);
    border: none;
    padding: 15px 40px;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--theme-bg);
    cursor: pointer;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #2b2720;
}

.page-layout {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-sizing: border-box;
}

.back-link {
    display: inline-block;
    color: var(--theme-text);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.7;
}

.content-panel {
    background: var(--theme-card-bg);
    padding: 40px;
    border: 1px solid var(--theme-border);
    max-width: 100%;
    overflow-y: auto;
    flex: 1;
    margin-bottom: 20px;
}

.content-panel>*:last-child,
.markdown-content>*:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}



.blog-entry-card {
    display: block;
    position: relative;
    border-bottom: 1px solid var(--theme-border);
    padding: 25px 0;
    margin-bottom: 25px;
    transition: background 0.2s;
}

.blog-entry-card::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;

    border-left: 10px solid var(--theme-text);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;

    opacity: 0;
    transition: opacity 0.2s;
}

.blog-entry-card:hover::before {
    opacity: 1;
}

.entry-title {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.entry-meta {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.entry-summary {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 4px solid var(--theme-border);
}

.entry-summary strong,
.meta-summary strong {
    font-weight: bold;
    color: var(--theme-text);
}

.entry-summary code,
.meta-summary code {
    font-family: 'Share Tech Mono', monospace;
    background: var(--theme-selection-bg);
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--theme-text);
    border: 1px solid var(--theme-scroll-track);
}

.filter-bar {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--theme-border);
    color: var(--theme-text);
    padding: 5px 15px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--theme-selection-bg);
}

.filter-btn.active {
    background: var(--theme-text);
    color: var(--theme-bg);
}

.post-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.meta-row {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.meta-label {
    font-weight: bold;
    color: var(--theme-text);
    margin-right: 10px;
    opacity: 0.8;
}

.tag-chip {
    background: var(--theme-tag-bg);
    color: var(--theme-tag-text);
    padding: 2px 8px;
    margin-right: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.meta-summary {
    margin-top: 15px;
    font-style: italic;
    border-left: 3px solid var(--theme-border);
    padding-left: 10px;
}

.header-divider {
    border: 0;
    height: 1px;
    background: var(--theme-border);
    margin: 20px 0;
    opacity: 0.5;
}

.markdown-content {
    line-height: 1.6;
    margin-top: 20px;
    counter-reset: figure table;
}

.markdown-content p {
    margin-bottom: 15px;
}

.markdown-content code {
    background: var(--theme-selection-bg);
    padding: 2px 5px;
    border-radius: 3px;
}

.markdown-content pre {
    background: var(--theme-selection-bg);
    padding: 15px;
    overflow-x: visible;
    border-radius: 0;
    border: 1px solid var(--theme-border);
    position: relative;
    margin: 20px 0;
}

.markdown-content pre::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--theme-text);
    border-left: 3px solid var(--theme-text);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.markdown-content pre::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--theme-text);
    border-right: 3px solid var(--theme-text);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

.markdown-content pre code {
    display: block;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: thin;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-built_in,
.hljs-name,
.hljs-tag {
    color: #4a4539;
    font-weight: bold;
}

.hljs-string,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-literal,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-addition {
    color: #73705d;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
    color: rgba(69, 65, 56, 0.5);
    font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-title,
.hljs-section,
.hljs-doctag,
.hljs-type,
.hljs-name,
.hljs-strong {
    font-weight: bold;
}

.hljs-symbol,
.hljs-bullet,
.hljs-subst,
.hljs-link {
    color: #8c5e5e;
}

body.pro-mode .hljs-comment,
body.pro-mode .hljs-quote {
    color: #998;
    font-style: italic;
}

body.pro-mode .hljs-keyword,
body.pro-mode .hljs-selector-tag,
body.pro-mode .hljs-subst {
    color: #333;
    font-weight: bold;
}

body.pro-mode .hljs-number,
body.pro-mode .hljs-literal,
body.pro-mode .hljs-variable,
body.pro-mode .hljs-template-variable,
body.pro-mode .hljs-tag .hljs-attr {
    color: #008080;
}

body.pro-mode .hljs-string,
body.pro-mode .hljs-doctag {
    color: #d14;
}

body.pro-mode .hljs-title,
body.pro-mode .hljs-section,
body.pro-mode .hljs-selector-id {
    color: #900;
    font-weight: bold;
}

.markdown-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--theme-border);
    display: block;
    margin: 0 auto;
    position: relative;
}

.markdown-content figure {
    margin: 20px auto;
    text-align: center;
    max-width: 100%;
    width: fit-content;
    counter-increment: figure;
}

.markdown-content .figure-inner {
    position: relative;
    padding: 15px;
    width: fit-content;
    margin: 0 auto;
}

.markdown-content .figure-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--theme-text);
    border-left: 3px solid var(--theme-text);
    opacity: 0.6;
}

.markdown-content .figure-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--theme-text);
    border-right: 3px solid var(--theme-text);
    opacity: 0.6;
}

.markdown-content figcaption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 12px;
    opacity: 0.8;
    color: var(--theme-text);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.markdown-content figcaption::before {
    content: "[ FIG." counter(figure) " ] ";
    font-weight: bold;
    opacity: 1;
    letter-spacing: 1px;
}

body.pro-mode .markdown-content figure {
    padding: 0;
}

body.pro-mode .markdown-content .figure-inner::before,
body.pro-mode .markdown-content .figure-inner::after,
body.pro-mode .markdown-content pre::before,
body.pro-mode .markdown-content pre::after {
    display: none;
}

body.pro-mode .markdown-content figcaption {
    font-weight: normal;
    letter-spacing: 0;
}

body.pro-mode .markdown-content figcaption::before {
    content: "Figure " counter(figure) ": ";
    font-weight: 600;
}

body.pro-mode .markdown-content pre {
    background: rgba(122, 127, 251, 0.08);
    border: 1px solid rgba(122, 127, 251, 0.2);
    border-radius: 4px;
    padding: 15px;
    margin-top: 0;
}

body.pro-mode .markdown-content code {
    background: rgba(122, 127, 251, 0.15);
    color: #333;
}

.markdown-content blockquote {
    border-left: 4px solid var(--theme-border);
    margin: 0;
    padding-left: 15px;
    font-style: italic;
}

.markdown-content a {
    color: var(--theme-text);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    transition: background 0.2s, color 0.2s;
}

.markdown-content a:not(.contact-item):hover {
    text-decoration: none;
    border-radius: 2px;
    padding: 0 4px;
    margin: 0 -4px;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid var(--theme-border);
    padding: 10px;
    text-align: left;
}

.markdown-content th {
    background: var(--theme-text);
    color: var(--theme-bg);
    font-weight: bold;
}

.markdown-content .table-wrapper {
    margin: 20px auto;
    text-align: center;
    max-width: 100%;
    width: fit-content;
    counter-increment: table;
}

.markdown-content .table-inner {
    position: relative;
    padding: 15px;
    width: fit-content;
    margin: 0 auto;
}

.markdown-content .table-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--theme-text);
    border-left: 3px solid var(--theme-text);
    opacity: 0.6;
}

.markdown-content .table-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--theme-text);
    border-right: 3px solid var(--theme-text);
    opacity: 0.6;
}

.markdown-content .table-wrapper table {
    margin: 0 auto;
}

.markdown-content .table-caption {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 12px;
    opacity: 0.8;
    color: var(--theme-text);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.markdown-content .table-caption::before {
    content: "[ TABLE " counter(table) " ] ";
    font-weight: bold;
    opacity: 1;
    letter-spacing: 1px;
}

body.pro-mode .markdown-content .table-wrapper {
    padding: 0;
}

body.pro-mode .markdown-content .table-inner::before,
body.pro-mode .markdown-content .table-inner::after {
    display: none;
}

body.pro-mode .markdown-content .table-caption {
    font-weight: normal;
    letter-spacing: 0;
}

body.pro-mode .markdown-content .table-caption::before {
    content: "Table " counter(table) ": ";
    font-weight: 600;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.arch-node {
    display: block;
    border: 1px solid var(--theme-border);
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.arch-node:hover .node-status {
    border-color: var(--yorha-bg);
}

.node-info {
    margin-bottom: 20px;
}

.node-name {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.node-type {
    font-size: 0.8rem;
    opacity: 0.8;
}

.node-status {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--theme-border);
    padding: 2px 8px;
    text-transform: uppercase;
}


.content-panel h2,
.panel-content h2,
.markdown-content h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;

    background: var(--theme-text);
    color: var(--theme-bg);

    padding: 10px 30px;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    margin-top: 20px;
}

.content-panel h2::before,
.panel-content h2::before,
.markdown-content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    height: 100%;
    width: 10px;
    background: rgba(69, 65, 56, 0.5);
}

.markdown-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-text);
    border-bottom: 4px solid var(--theme-text);
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
    display: block;
}

.markdown-content h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-text);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    border-bottom: 2px solid var(--theme-border);
    display: block;
    padding-bottom: 5px;
}

.markdown-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--theme-text);
}

.status-indicator.online,
.node-status.online {
    color: #2b7a3e;
}

.arch-node:hover .node-status.online {
    color: #4CAF50;
}

.status-indicator.offline,
.node-status.offline {
    color: #922b2b;
}

.node-status.standby {
    color: #9c6500;
}

.bio-section {
    margin-bottom: 40px;
}

.data-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgba(69, 65, 56, 0.3);
    padding-bottom: 5px;
}

.data-label {
    width: 150px;
    font-weight: bold;
    color: var(--theme-text);
    opacity: 0.8;
    flex-shrink: 0;
}

.data-value {
    flex-grow: 1;
}

.experience-card {
    margin-bottom: 30px;
    border-left: 4px solid var(--theme-text);
    padding-left: 20px;
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--theme-text);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(69, 65, 56, 0.2);
    padding-bottom: 5px;
}

.exp-role {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.exp-company {
    font-weight: bold;
    opacity: 0.8;
}

.exp-meta {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 15px;
}

.exp-tech {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    border: 1px solid var(--theme-border);
    padding: 15px;
    text-align: center;
    display: block;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.2s;
}

.contact-item:hover {
    background: var(--theme-text);
    color: var(--theme-bg);
    border-color: var(--theme-text);
}

ul.tech-list {
    list-style: square;
}

ul.tech-list li {
    margin-bottom: 5px;
}

.profile-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--theme-border);
    padding-bottom: 20px;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.profile-title {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 10px;
    font-weight: bold;
}

.wip-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.wip-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.wip-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--theme-border);
    padding-bottom: 10px;
}

.wip-message {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

body:not(.pro-mode) .pro-only {
    display: none !important;
}

body.pro-mode .creative-only {
    display: none !important;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 40px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 20px;
    position: relative;
}

.error-code::before {
    content: "404";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

body.pro-mode .error-code::before {
    display: none;
}

body.pro-mode .error-code {
    animation: none;
}

.error-message {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.error-description {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.error-hexagon {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 30px auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--theme-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-hexagon::before {
    content: '!';
    font-size: 5rem;
    font-weight: bold;
    color: var(--theme-bg);
}

body.pro-mode .error-hexagon {
    border-radius: 50%;
    clip-path: none;
    animation: none;
}

.error-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-btn {
    background: var(--theme-text);
    color: var(--theme-bg);
    border: 2px solid var(--theme-text);
    padding: 15px 40px;
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.error-btn:hover {
    background: var(--theme-bg);
    color: var(--theme-text);
}

.error-btn.secondary {
    background: transparent;
    color: var(--theme-text);
}

.error-btn.secondary:hover {
    background: var(--theme-text);
    color: var(--theme-bg);
}

body.pro-mode .error-btn {
    border-radius: 4px;
}

.error-details {
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.6;
    font-family: 'Share Tech Mono', monospace;
}

body.pro-mode .error-details {
    font-family: 'Courier New', monospace;
}