/* KRAEMER.CO.AT - Terminal Website Styles */
/* Advanced cyberpunk terminal styling with animations */

html {
    background: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #000000 100%);
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Simple background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.terminal {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
    background: linear-gradient(145deg, #001100, #000800);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.4),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
}

.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
}

/* Section-specific styling classes */

/* Login section - keeps original animation */
.section-login .command-line {
    color: #ffff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.section-login .command-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-login .command-output {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.section-login .command-output.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Whoami section - keeps current styling */
.section-whoami .command-line {
    color: #ffff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.section-whoami .command-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-whoami .command-output-nc {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.section-whoami .command-output-nc.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Standard sections - use whoami animation style */
.section-standard .command-line {
    color: #ffff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out;
    text-align: left;
}

.section-standard .command-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-standard .command-output {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out;
}

.section-standard .command-output.visible {
    opacity: 1;
    transform: translateY(0);
}

/* All sections now use the same styling */

.prompt {
    color: #00ffff;
    font-weight: bold;
}

.command {
    color: #ffff00;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
}

.output {
    color: #00ff00;
    margin: 12px 0;
    opacity: 0;
    transform: translateY(10px);
}

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

.cursor {
    animation: blink 1s;
    color: #00ff00;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.section {
    margin: 10px 0;
    padding: 10px 0;
    position: relative;
}

.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
    margin: 15px 0;
}

/* Command lines (h1) - typewriter effect */
.command-line {
    color: #ffff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.command-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Command output lines (p) - typewriter effect */
.command-output {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.command-output.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Command output without cursor (for whoami section) */
.command-output-nc {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.command-output-nc.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NEW ANIMATION CLASSES FOR OTHER SECTIONS */

/* Alternative command lines (h1) - different animation style */
.command-line-alt {
    color: #ffff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s ease-out;
    text-align: left;
}

.command-line-alt.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Alternative command output lines (p) - different animation style */
.command-output-alt {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s ease-out;
}

.command-output-alt.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Alternative command output without cursor - different animation style */
.command-output-alt-nc {
    color: #00ff00;
    font-size: 15px;
    margin: 8px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s ease-out;
}

.command-output-alt-nc.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Blinking cursor for command outputs */
.blinking-cursor {
    animation: blink 1s infinite;
    color: #00ff00;
}

/* Whoami content styling */
.whoami-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 2px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
    display: block;
}

/* Profile image link styling */
a .profile-image {
    transition: all 0.3s ease;
}

a:hover .profile-image {
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
    transform: scale(1.05);
}

.whoami-content .command-output {
    margin: 0;
    flex: 1;
}

/* Profile image styling - removed duplicate */

.personal-story {
    flex: 1;
}

.personal-story .command-output {
    margin: 8px 0;
}

/* More link styling */
.more-link {
    color: #00ff00 !important;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.more-link:hover {
    color: #ffff00 !important;
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

/* Story overlay styling */
.story-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.story-overlay.active {
    display: flex;
}


.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

.story-header h2 {
    color: #00ff00;
    margin: 0;
    font-size: 24px;
}

.close-btn {
    background: none;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #00ff00;
    color: #000;
}

.story-text {
    color: #00ff00;
    line-height: 1.6;
}

.story-text p {
    margin: 15px 0;
    font-size: 16px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Control bar - 3 column layout */
.control-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0px;
    padding-left: 25px;
    padding-right: 25px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.control-buttons-group {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Control buttons - unified styling */
.control-button {
    cursor: pointer;
    padding: 12px 16px;
    margin-top: 10px;
    min-width: 66px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-button:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.control-button-icon {
    font-size: 24px;
    color: #00ff00;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.control-button:hover .control-button-icon {
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    transform: scale(1.1);
}

/* Help overlay */
.help-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.help-overlay.active {
    display: flex;
}

.help-content {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

.help-header h2 {
    color: #ffff00;
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
}

.close-help {
    background: none;
    border: none;
    color: #00ff00;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-help:hover {
    color: #ffff00;
}

.help-commands {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    color: #00ff00;
    text-decoration: none;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: 'JetBrains Mono', monospace;
}

.help-link:hover {
    color: #ffff00;
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

/* Logo in center column */
.logo-sticky {
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 8px;
    _box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    padding: 8px;
    margin-top: 0;
}

.logo-sticky:hover {
    text-decoration: none;
    background: rgba(0, 255, 0, 0.2);
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.logo-sticky-image {
    max-width: 165px;
    height: auto;
    border: none;
}

.section-title {
    color: #ffb000;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 3px #ffb000;
}

.contact-info {
    color: #00ffff;
}

.business-info {
    color: #ffff00;
}

.legal-info {
    color: #ff6666;
    font-size: 12px;
}

.ascii-art {
    color: #00ff00;
    font-family: monospace;
    white-space: pre;
    margin: 10px 0;
}

a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: scale(1.05);
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #00ff00;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ff00; }
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.1;
}

.matrix-char {
    position: absolute;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    animation: matrix-fall linear;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100vh);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.glitch {
    position: relative;
    animation: glitch 2s;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.terminal-window {
    background: rgba(0, 17, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.terminal-window::before {
    content: '● ● ●';
    display: block;
    padding: 8px 15px;
    background: #001100;
    color: #ff6666;
    font-size: 12px;
    border-bottom: 1px solid #00ff00;
}

/* Duplicate .command-line rule removed - using the main one at line 119 */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(0, 255, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00ffff);
    animation: progress 3s ease-in-out;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    color: #00ff00;
    opacity: 0.1;
    animation: float 20s linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear;
    z-index: -1;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}


.sound-waves {
    display: none;
}

@keyframes sound-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Enhanced animation classes */
.command-typing {
    border-right: 2px solid #00ff00;
    animation: typing-cursor 1s;
}

@keyframes typing-cursor {
    0%, 50% { border-right-color: #00ff00; }
    51%, 100% { border-right-color: transparent; }
}

.content-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.content-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00ff00, #00ffff);
    z-index: 1000;
    transition: width 0.1s ease;
}

.section-command {
    color: #ffff00;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-output {
    color: #00ff00;
    margin: 8px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
    text-align: left;
}

.section-output.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    body {
        padding: 5px;
        font-size: 11px;
    }
    
    .terminal {
        padding: 10px;
    }
    
    .section {
        padding: 10px;
        margin: 15px 0;
    }
    
    /* Extra small mobile control bar */
    .control-bar {
        top: 15px;
        padding: 25px;
    }
    
    .control-button {
        padding: 10px;
        max-height: 40px;
        min-width: 40px;
    }
    
    .control-button-icon {
        font-size: 30px;
    }
    
    .control-buttons-group {
        gap: 3px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .logo-center img {
        max-width: 50px;
        height: auto;
        display: visible;
    }
    
    /* Mobile menu overlay adjustments for small screens */
    .help-content {
        max-width: 95%;
        padding: 15px;
        max-height: 60vh;
    }
    
    .help-commands {
        line-height: 1.1;
    }
    
    .help-link {
        font-size: 13px;
        padding: 2px 0;
    }
    
    /* Mobile profile section - image on top */
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .profile-image {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto;
    }
}

/* Slow blinking cursor animation */
.slow-blink {
    animation: slow-blink 2s infinite;
    display: inline-block;
}

@keyframes slow-blink {
    0%, 50% { 
        opacity: 1; 
    }
    51%, 100% { 
        opacity: 0; 
    }
}

/* Copyright block with green border */
.copyright-block {
    _border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Profile image styling - removed duplicate */


/* Profile section styling */
.profile-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #00ff00;
    border-radius: 8px;
    background: rgba(0, 255, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-info h2 {
    color: #00ff00;
    margin: 0 0 10px 0;
    font-size: 24px;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
}

.profile-info p {
    margin: 5px 0;
    color: #00ff00;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
}

/* Basic HTML elements for unified styling across all pages */
h1 {
    color: #ffff00;
    font-weight: 500;
    font-size: 24px;
    margin: 20px 0 15px 0;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    text-align: center;
}

h2 {
    color: #00ff00;
    font-weight: 500;
    font-size: 20px;
    margin: 15px 0 10px 0;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

h3 {
    color: #00ff00;
    font-weight: 400;
    font-size: 18px;
    margin: 12px 0 8px 0;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.2);
}

p {
    color: #00ff00;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

ul, ol {
    color: #00ff00;
    margin: 10px 0;
    padding-left: 20px;
}

li {
    color: #00ff00;
    margin: 5px 0;
    line-height: 1.5;
}

strong {
    color: #ffff00;
    font-weight: 500;
    text-shadow: 0 0 3px rgba(255, 255, 0, 0.3);
}

em {
    color: #00ffff;
    font-style: italic;
    text-shadow: 0 0 3px rgba(0, 255, 255, 0.3);
}

/* Container class for consistent layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back link styling */
.back-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 12px;
    border: 1px solid #00ffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #ffff00;
    border-color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

/* Section divider */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.3), transparent);
    margin: 20px 0;
}

/* Copyright section styling */
.section-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.copyright-block {
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    color: #ff6666;
}

/* Accordion-specific styles */
.cv-section {
    margin-bottom: 40px;
}

.work-experience-item {
    margin-bottom: 20px;
}

.cv-personal-details {
    padding: 15px;
    margin: 10px 0;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
}

.education-entry {
    padding: 15px;
    margin: 10px 0;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
}

.company-description {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    font-family: 'Cascadia Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.work-header {
    cursor: pointer;
    padding: 15px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.work-header:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: #ffff00;
}

.work-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expand-icon {
    font-size: 18px;
    color: #00ff00;
    transition: transform 0.3s ease;
}

.expand-icon.expanded {
    transform: rotate(45deg);
}

.work-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    border-radius: 0 0 8px 8px;
    margin-top: -10px;
    padding: 0 15px;
}

.work-details.expanded {
    max-height: none;
    padding: 15px;
    border-color: #00ff00;
    border-radius: 8px;
}

/* Terminal cursor styling */
.terminal-cursor {
    text-align: center;
    margin-top: 20px;
    font-family: 'Monaco', 'Menlo', 'Consolas', 'DejaVu Sans Mono', monospace;
    color: #00ff00;
}

/* Back link container styling */
.back-link-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
}

/* Curriculum-specific styles */
.tech-responsibilities {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    font-family: 'Cascadia Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.tech-responsibilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-responsibilities li {
    color: #00ff00;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.tech-responsibilities li::before {
    content: "→ ";
    color: #ffff00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.date-range {
    color: #00ffff;
    font-weight: bold;
}


.cv-core-competencies {
    /* No extra borders - just use the existing styling */
}

.cv-work-experience {
    /* No extra borders - just use the existing styling */
}

.cv-education {
    /* No extra borders - just use the existing styling */
}

.cv-language-skills {
    /* No extra borders - just use the existing styling */
}

.cv-other-skills {
    /* No extra borders - just use the existing styling */
}

.cv-hobbies {
    /* No extra borders - just use the existing styling */
}

