@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/proximanova-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/proximanova-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/fonts/proximanova-bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

:root {
    color-scheme: only dark;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-blue: #0096ff;
    --ok-green: #00ff9d;
    --text-dim: rgba(255, 255, 255, 0.5);
    --text-main: white;
    --bg-color: #0f172a;
    --tab-active-bg: rgba(255, 255, 255, 0.04);
    --experience-bg: rgba(255, 255, 255, 0.02);
    --experience-hover-bg: rgba(0, 150, 255, 0.1);
    --experience-hover-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
    --root-paragraph: rgba(255, 255, 255, 0.8);
    --item-text: rgba(255, 255, 255, 0.5);
    --download-btn-color: white;
    --download-btn-bg: rgba(255, 255, 255, 0.05);
    --download-btn-hover-bg: rgba(0, 150, 255, 0.1);
    --status-badge-bg: rgba(0, 0, 0, 0.3);
    --custom-transition: background-color 1s ease, border-color 1s ease, color 1s ease;
    --bg-mesh:
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0,
        transparent 50%),
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    --theme-transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.5s ease,
    border-color 0.5s ease;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-mesh);
    color: var(--text-main);
    font-family: 'Proxima Nova', sans-serif;
    margin: 0;
    padding: 0;
    height: 100dvh;
    min-height: -webkit-fill-available;
    width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--theme-transition);
}
body.light-mode {
    color-scheme: only light;
    --bg-color: #f1f5f9;
    --text-main: #0f172a;
    --text-dim: rgba(15, 23, 42, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.1);
    --accent-blue: #db2162;
    --ok-green: #10b981;
    --tab-active-bg: rgba(255, 255, 255, 0.8);
    --experience-bg: rgba(255, 255, 255, 0.4);
    --experience-hover-bg: #ffdded;
    --experience-hover-shadow: 0 0 15px #ffaad0;
    --root-paragraph: rgba(0, 0, 0, 0.8);
    --item-text: rgba(0, 0, 0, 0.7);
    --download-btn-color: black;
    --download-btn-bg: rgba(0, 0, 0, 0.1);
    --download-btn-hover-bg: #ffdded;
    --status-badge-bg: rgba(255, 255, 255, 0.8);
    --bg-mesh:
            radial-gradient(at 0% 0%, hsla(210, 40%, 88%, 1) 0, transparent 50%),
            radial-gradient(at 50% 0%, hsla(220, 30%, 82%, 1) 0, transparent 50%),
            radial-gradient(at 100% 0%, hsla(338, 60%, 59%, 1) 0, transparent 100%);
}

.name-title h1, 
.tab.active span, 
.tab.active small,
.output-box h3,
.root-box h3 {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 800 !important;
    letter-spacing: 1px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.bullet-list li .label,
.two-col-summary .content-title,
.experience-item summary span:nth-child(2) {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.status-marker, 
.year,
.name-title p,
.external-footer {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.glass-card {
    width: 95vw;
    margin: 20px auto auto auto;
    flex: 1; 
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    min-height: 0;
    transition: var(--custom-transition);
}

.header-box {
    padding: 25px 30px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    gap: 20px;
}
.profile-section {
    display: flex;
    align-items: center;
    gap: 25px;
}
.avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2.5px solid var(--glass-border);
    object-fit: cover;
}
.name-title h1 {
    margin: 0;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1.1;
}
.name-title p {
    margin: 5px 0 0 0;
    color: var(--text-dim);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
}

.status-area {
    margin-left: auto; 
    display: flex;
    align-items: center;
}
.status-badge {
    background: var(--status-badge-bg);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Proxima Nova', sans-serif;
    border: 1px solid var(--glass-border);
    letter-spacing: 1.5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.3s ease;
}
.status-badge:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    z-index: -1;
    transition: background-position 0.8s cubic-bezier(0.65, 0, 0.35, 1),
    border-color 0.4s ease;
}
.status-badge[data-status="RUN"] .status-text {
    color: orange;
    animation: pulse 0.5s infinite;
}
.status-badge[data-status="RUN"]::before {
    box-shadow: inset 0 0 10px rgba(0, 150, 255, 0.1);
}
.status-badge span {
    color: var(--ok-green);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
body.light-mode .status-badge {
    color: #111;
}
body.light-mode .status-badge::before {
    /* Slide the strip to show the white side */
    background-position: 100% 0%;
    border-color: rgba(0, 0, 0, 0.1);
}

.tab-bar {
    display: flex;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
    transition: var(--custom-transition);
}
.tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    position: relative;
    transition: background 0.15s ease-in-out, color 0.15s ease-in-out; 
}
.tab span {
    font-size: 1.1rem;
    font-family: 'Proxima Nova', sans-serif;
    transition: all 0.2s;
}
.tab small {
    font-size: 0.7rem;
    margin-top: 6px;
    height: 14px;
    transition: all 0.2s;
    text-transform: lowercase;
}

.tab.active { 
    color: white; 
    background: var(--tab-active-bg);
}
.tab.active span {
    font-weight: 800;
    color: var(--accent-blue);
}
.tab.active small {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 1;
}
.tab.active::after { 
    opacity: 1; 
    transform: scaleX(1); 
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-blue);
    box-shadow: 0 0 15px var(--accent-blue);
    opacity: 0;
    transform: scaleX(0.8);
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.content-pane {
    flex: 1;
    overflow-y: auto;
    padding: 50px 50px 20px 50px;
    position: relative; 
}

.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

.root-box h3 {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.root-paragraph {
    margin: 15px 0;
    line-height: 1.6;
    color: var(--root-paragraph);
}

.experience-box h2 {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 5px;
    flex: 1;
    min-width: 0;
}
.experience-item {
    margin-bottom: 5px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--experience-bg);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 5px;
}
.experience-item summary {
    padding: 22px 25px;
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    align-items: center;
}
.experience-item summary span {
    display: block;
    width: 100%;
    min-width: 0; 
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.experience-item summary .year {
    color: var(--accent-blue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.experience-item[open] {
    border-color: rgba(0, 150, 255, 0.4);
}
.experience-item:hover {
    background: var(--experience-hover-bg);
    border-color: var(--accent-blue);
    box-shadow: var(--experience-hover-shadow);
    transform: translateY(2px);
}
.experience-item summary::-webkit-details-marker {
    display: none;
}
.experience-item summary span:nth-child(2) {
    font-weight: 600;
    color: var(--text-main);
}
.experience-item summary span:nth-child(3) {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.year {
    color: var(--accent-blue);
    font-family: 'Proxima Nova', sans-serif;
    font-weight: bold;
}
.details-content {
    padding: 0 25px 25px 25px;
}
.details-content .bullet-list {
    padding-left: 5px;
}

.output-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.output-box h3 {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    min-width: 0;
}
.download-btn {
    display: block;
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--download-btn-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--download-btn-color);
    text-decoration: none;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
}
.download-btn:hover {
    background: var(--download-btn-hover-bg);
    border-color: var(--accent-blue);
    box-shadow: var(--experience-hover-shadow);
    transform: translateY(2px);
}
.btn-text {
    padding: 0 10px;
    display: inline-block;
}
.btn-arrow-left {
    display: inline-block;
    width: 50px;
    text-align: left;
    animation: dockLeft 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.btn-arrow-right {
    display: inline-block;
    width: 50px;
    text-align: right;
    animation: dockRight 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes dockLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(30px);
        opacity: 0.8;
    }
    90% {
        transform: translateX(30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes dockRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    90% {
        transform: translateX(-30px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.bullet-list { 
    list-style: none; 
    padding: 0; 
    margin: 0;
    padding-top: 10px;
}
.bullet-list li { 
    margin-bottom: 12px; 
    color: rgba(255, 255, 255, 0.8); 
    display: flex; 
    align-items: baseline;
    line-height: 1.5;
    margin-bottom: 12px;
}
.bullet-list li .label {
    font-weight: 600;
    margin-right: 5px;
    color: var(--text-main);
}
.bullet-list li::before {
    display: inline-block;
    width: 60px;
    margin-right: 10px;
    flex-shrink: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.75rem;
    top: 0;
    position: relative;
}

.external-footer {
    padding: 8px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    flex-shrink: 0;
    line-height: 1;
}
.external-footer span {
    color: var(--accent-blue) !important;
    font-weight: 600;
}

.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}
.contact-link:hover {
    border-bottom: 1px solid var(--accent-blue);
    text-shadow: 0 0 8px var(--accent-blue);
}

.point-image-container {
    margin: 15px 0 20px 0;
    width: 100%;
    max-width: 400px;
}
.point-image-outer-container {
    display: flex;
    width: 100%;
    margin: 15px 0 20px 0;
}
.point-image-outer-container.left {
    justify-content: flex-start;
}
.point-image-outer-container.center {
    justify-content: center;
}
.point-image-outer-container.right {
    justify-content: flex-end;
}
.point-image-container {
    max-width: 400px;
    width: 100%;
}

.showcase-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}
.showcase-img:hover {
    transform: scale(1.02);
    border-color: var(--accent-blue);
}

.lightbox {
    display: flex;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--experience-bg);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(8px);
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox.active .lightbox-content {
    transform: scale(1);
}
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--accent-blue);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.showcase-img {
    cursor: zoom-in;
}

@media (max-width: 600px) {
    .glass-card {
        width: 98vw;
        margin: 10px auto 5px auto;
        margin-bottom: 5px !important;
        flex: 1;
        min-height: 0;
        border-radius: 12px;
    }
    .header-box {
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
    }
    .status-area {
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .profile-section {
        gap: 15px;
    }
    .avatar {
        width: 60px;
        height: 60px;
    }
    .tab {
        min-height: 70px;
    }
    .tab span { font-size: 0.9rem; }
    .tab small { font-size: 0.6rem; }
    .content-pane {
        padding: 20px 15px;
        scrollbar-width: auto;
    }
    .output-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        flex-direction: column;
    }
    .output-box {
        width: 100%;
    }
    .external-footer {
        padding: 10px 0;
        margin-bottom: env(safe-area-inset-bottom)
    }
}
@media (max-width: 767px) {
    .output-grid {
        flex-direction: column;
        display: flex;
        gap: 20px;
    }
    .output-box {
        width: 100%;
        height: auto; 
    }
    .bullet-list li {
        word-break: break-all; 
        display: block;
    }
    .bullet-list .label {
        display: block;
        margin-bottom: 4px;
    }
    .content-pane {
        padding: 20px;
    }
}
@media (min-width: 768px) {
    .content-pane {
        height: 75vh; 
        display: flex;
        flex-direction: column;
        overflow: hidden !important; 
        padding: 30px 30px 10px 30px;
    }

    .tab-pane.active {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 100%;
    }

    .output-grid {
        display: flex !important;
        flex-direction: row !important;
        flex: 1;
        gap: 20px;
        overflow: hidden;
        align-items: flex-start; 
        margin-bottom: 0; 
    }

    .output-box, .scroll-container {
        flex: 1;
        max-height: 100%; 
        overflow-y: auto !important;
        min-width: 0;
        padding: 5px 15px 10px 10px; 
        scrollbar-width: thin;
        scrollbar-color: var(--accent-blue) transparent;
    }

    .bullet-list {
        margin-bottom: 0;
        padding-top: 5px;
    }
}
/* Webkit Scrollbar Styling */
.output-box::-webkit-scrollbar, 
.scroll-container::-webkit-scrollbar { 
    width: 4px; 
}
.output-box::-webkit-scrollbar-thumb, 
.scroll-container::-webkit-scrollbar-thumb { 
    background: var(--accent-blue);
    border-radius: 2px;
}

.two-col-summary {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
}

.two-col-summary .content-title {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}
.two-col-summary .year {
    color: var(--accent-blue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.hanging-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.item-text {
    flex: 1;
    word-break: break-word;
    color: var(--item-text);
}
.text-dim {
    color: var(--text-dim);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
}
.status-marker {
    color: var(--marker-color, var(--ok-green));
    flex-shrink: 0;
    min-width: 55px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.status-marker2 {
    color: orange;
    flex-shrink: 0;
    min-width: 55px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.item-title {
    display: inline-block;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}
.role-preview {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    color: var(--text-dim);
}

.skills-matrix-container {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: start;
    height: auto;
    overflow: visible;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.skills-matrix-container .details-content {
    padding: 0 25px 10px 25px;
}

.experience-item.skill-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding-bottom: 0px !important;
}

.experience-item.skill-card summary {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: 0.75rem 1rem;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Proxima Nova', sans-serif;
    border-bottom: none !important;
    outline: none;
}

.skill-card[open] summary {
    border-bottom: none !important;
    color: var(--accent-blue);
}

.skill-card ul {
    list-style: none;
    padding: 0 1rem 0.5rem 1rem;
    margin: 0 !important;
}

.skill-card li {
    border-bottom: none !important;
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    margin: 0 !important;
}

.skill-card li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 5px !important;
}

.experience-item.skill-card:hover {
    background: var(--experience-hover-bg);
    border-color: var(--accent-blue) !important;
    box-shadow: var(--experience-hover-shadow);
    transform: translateY(2px);
}
.item-description {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.3;
    margin-top: 0.15rem;
    font-weight: 400;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: calc(100% - 60px);
}
.contact-form::-webkit-scrollbar {
    width: 4px;
}
.contact-form::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-form input:disabled,
.contact-form textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}
.input-group label {
    font-family: 'Proxima Nova', sans-serif;
    color: var(--accent-blue);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem;
    font-family: 'Proxima Nova', sans-serif;
    border-radius: 4px;
    width: 100% !important;
    box-sizing: border-box;
    max-width: 100%;
    resize: none;
}
.terminal-btn {
    display: block;
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--download-btn-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--download-btn-color);
    text-decoration: none;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
}
.terminal-btn:hover {
    background: var(--download-btn-hover-bg);
    border-color: var(--accent-blue);
    box-shadow: var(--experience-hover-shadow);
    transform: translateY(2px);
}
.terminal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
    transition: all 0.3s ease;
}
.terminal-btn.active-status {
    opacity: 1 !important;
    filter: none !important;
    cursor: wait;
}
.terminal-output {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 15px;
    margin-top: 20px;
    font-family: 'Proxima Nova', sans-serif;
    color: var(--ok-green);
    font-size: 0.85rem;
    border-radius: 4px;
}
.log-line {
    margin: 5px 0;
    letter-spacing: 1px;
}