:root {
    --primary: #c0a080;
    --primary-light: #d4b795;
    --primary-dark: #8c7355;
    --accent: #e5d5b5;
    --bg-dark: #121214;
    --bg-light: #1a1a1c;
    --text-primary: #e6e6e6;
    --text-secondary: #b3b3b3;
    --progress-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --dot-size: clamp(8px, 1.5vw, 12px);
    --terminal-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --terminal-font: 'JetBrains Mono', monospace;
}

::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    font-family: 'GTWalsheimPro-Regular', sans-serif;
    letter-spacing: 0.02em;
    font-weight: 300;
}

body {
    background: var(--bg-dark);
    min-height: 100vh;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary);
    text-shadow: 0 0 12px rgba(192, 160, 128, 0.2);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--primary-dark) 5%, var(--primary-dark) 95%, transparent
    );
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    box-shadow: 0 0 20px rgba(192, 160, 128, 0.15);
}

.timeline-item {
    padding: 20px 50px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 2;
    will-change: opacity, transform;
}

.timeline-item:nth-child(odd) { 
    left: 0; 
    transform: translateX(-20px); 
}

.timeline-item:nth-child(even) { 
    left: 50%; 
    transform: translateX(20px); 
}

.timeline-item.visible,
.timeline-item:nth-child(even).visible,
.timeline-item.visible .content {
    opacity: 1;
    transform: translate(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    left: calc(100% - 8px);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 0 4px rgba(192, 160, 128, 0.1);
    pointer-events: none;
    z-index: 3;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.content:hover ~ .timeline-item::before,
.timeline-item:has(.content:hover)::before {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 2px solid var(--primary-dark);
    box-shadow: inset 0 0 6px var(--primary-light), inset 0 0 12px rgba(192, 160, 128, 0.3);
}

.timeline.scrolling::after {
    background: linear-gradient(to bottom,rgba(192, 160, 128, 0.1) 0%, var(--primary) var(--scroll-start), var(--primary) var(--scroll-end),rgba(192, 160, 128, 0.1) 100%);
}

.timeline-progress {
    position: absolute;
    width: 2px;
    background: var(--primary);
    top: 0;
    left: 50%;
    margin-left: -1px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: opacity 0.6s ease;
}

footer {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
    margin-top: 60px;
    position: relative;
    z-index: 10;
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-dark);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.footer-text {
    font-size: 0.7em;
    letter-spacing: 0.04em;
    font-weight: 300;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-icon {
    color: var(--primary);
    font-size: 0.9em;
    text-decoration: none;
    opacity: 0.4;
    transition: all 0.3s ease;
    position: relative;
}

.footer-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    color: var(--primary-light);
    padding: 4px 8px;
    font-size: 0.7em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-shadow: 0 0 8px rgba(192, 160, 128, 0.2);
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 15px;
}

.footer-icon:hover::before {
    opacity: 0.9;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
    text-shadow: 0 0 12px rgba(192, 160, 128, 0.3);
}

.footer-text:hover {
    opacity: 0.8;
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(192, 160, 128, 0.1);
    transform: translateY(-1px);
}

.footer-icon:hover {
    opacity: 0.8;
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(192, 160, 128, 0.15);
    transform: translateY(-1px);
}

.footer-icon::after {
    display: none;
}

.about-section {
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.about-section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 0.5s;
}

.clock-container {
    position: fixed;
    top: 30px;
    right: 40px;
    font-family: 'JetBrains Mono', monospace;
    text-align: right;
    z-index: 1;
    padding: 15px 20px;
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards 2.9s;
}

.clock,
.date {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
}

.clock {
    font-size: 1.15em;
    font-weight: 200;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(192, 160, 128, 0.1);
    opacity: 0.75;
}

.date {
    font-size: 0.7em;
    font-weight: 300;
    letter-spacing: 1.5px;
    opacity: 0.5;
    text-transform: lowercase !important;
    color: var(--primary);
}

.clock:hover {
    opacity: 0.9;
    color: var(--primary-light);
    text-shadow: 0 0 25px rgba(192, 160, 128, 0.2);
}

.date:hover {
    opacity: 0.9;
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(192, 160, 128, 0.15);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 3.6s;
    z-index: 10;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.social-links a {
    cursor: pointer !important;
    color: var(--primary);
    font-size: 1.3em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    opacity: 0.6;
    padding: 8px;
}

.social-links a::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    color: var(--primary-light);
    padding: 4px 8px;
    font-size: 0.7em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-shadow: 0 0 8px rgba(192, 160, 128, 0.2);
    letter-spacing: 1px;
    font-weight: 300;
}

.social-links a:hover::before {
    opacity: 0.9;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
    text-shadow: 0 0 12px rgba(192, 160, 128, 0.3);
}

.social-links a::after {
    display: none;
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-links a:active {
    transform: translateY(-1px);
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-links a:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 6px rgba(192, 160, 128, 0.2));
}

.scroll-indicator {
    cursor: pointer !important;
    position: absolute;
    bottom: 50px;
    color: var(--primary);
    font-size: 1.8em;
    animation: fadeInUp 0.8s ease-out forwards 4.1s, pulse 3s ease-in-out infinite 4.9s;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 8px rgba(192, 160, 128, 0.2);
        color: var(--primary);
        opacity: 0.6;
    } 50% {
        text-shadow: 0 0 15px rgba(192, 160, 128, 0.4), 0 0 25px rgba(192, 160, 128, 0.2);
        color: var(--primary-light);
        opacity: 1;
    } 100% {
        text-shadow: 0 0 8px rgba(192, 160, 128, 0.2);
        color: var(--primary);
        opacity: 0.6;
    }
}

.scroll-indicator:hover {
    color: var(--primary-light);
    transform: translate(-50%, -3px);
    text-shadow: 0 0 20px rgba(192, 160, 128, 0.4);
    opacity: 1;
    animation-play-state: paused;
}

.header {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-dark);
}

.header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header h1 {
    opacity: 1;
    font-size: 1.8em;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 0.04em;
}

.content {
    cursor: default;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(192, 160, 128, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(192, 160, 128, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.content:hover {
    transform: translateY(-3px) translateZ(0);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(192, 160, 128, 0.1), inset 0 0 0 1px rgba(192, 160, 128, 0.15);
}

.content h2 {
    font-size: 1.4em;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--primary-light);
    letter-spacing: 0.03em;
}

.content p {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.85;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.tag {
    cursor: default;
    padding: 6px 12px;
    background: rgba(192, 160, 128, 0.05);
    border: 1px solid rgba(192, 160, 128, 0.08);
    border-radius: 20px;
    font-size: 0.7em;
    color: var(--primary-light);
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
    font-weight: 300;
    opacity: 0.7;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: inline-block;
    margin: 0 4px 8px 0;
    white-space: nowrap;
}

.tag:hover {
    background: rgba(192, 160, 128, 0.1);
    transform: translateY(-1px);
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(192, 160, 128, 0.1);
}

.key {
    display: inline-block;
    opacity: 0;
    position: relative;
    transform-origin: center;
    animation: keyUnlock 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 3s;
    transition: filter 0.3s ease;
}

@keyframes keyUnlock {
    0% {
        opacity: 0;
        transform: translateX(-6px) rotate(-45deg) scale(0.8);
        filter: drop-shadow(0 0 1.5px var(--primary));
    } 40% {
        opacity: 1;
        transform: translateX(2px) rotate(15deg) scale(1.1);
        filter: drop-shadow(0 0 5px var(--primary)) drop-shadow(0 0 12px rgba(192, 160, 128, 0.4));
    } 70% {
        transform: translateX(0) rotate(-8deg) scale(1.02);
        filter: drop-shadow(0 0 4px var(--primary)) drop-shadow(0 0 8px rgba(192, 160, 128, 0.3));
    } 85% {
        transform: translateX(0) rotate(4deg) scale(1);
        filter: drop-shadow(0 0 3px var(--primary)) drop-shadow(0 0 6px rgba(192, 160, 128, 0.2));
    } 90% {
        filter: drop-shadow(0 0 2px var(--primary)) drop-shadow(0 0 4px rgba(192, 160, 128, 0.15));
    } 95% {
        filter: drop-shadow(0 0 1px var(--primary)) drop-shadow(0 0 2px rgba(192, 160, 128, 0.1));
    } 97% {
        filter: drop-shadow(0 0 0.5px var(--primary)) drop-shadow(0 0 1px rgba(192, 160, 128, 0.05));
    } 100% {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
        filter: none;
    }
}

.terminal-container {
    background: var(--bg-dark);
    border-radius: 16px;
    width: 80%;
    max-width: 460px;
    margin: 10px auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1.5px solid rgba(192, 160, 128, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--terminal-transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards 3.1s;
}

.terminal-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(192, 160, 128, 0.08);
    border-color: rgba(192, 160, 128, 0.2);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.85em;
    opacity: 0.8;
    font-family: var(--terminal-font);
    letter-spacing: 0.07em;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
    transition: var(--terminal-transition);
}

.terminal-dot:hover {
    opacity: 1;
    transform: scale(1.1);
}

.terminal-content {
    padding: 14px 20px;
    background: var(--bg-light);
    transition: var(--terminal-transition);
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    position: relative;
}

.prompt,
.command,
.terminal-output,
.skill-item {
    font-family: var(--terminal-font);
    text-transform: none;
}

.prompt {
    color: var(--primary);
    font-size: 1.1em;
    opacity: 0.8;
}

.command {
    color: var(--text-primary);
    font-size: 0.95em;
    position: relative;
}

.terminal-output {
    color: var(--text-secondary);
    margin: 8px 0 20px 0;
    font-size: 0.9em;
    line-height: 1.7;
    opacity: 0.9;
    transition: var(--terminal-transition);
}

.terminal-output:last-child {
    position: relative;
    display: inline-block;
}

.skill-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
    opacity: 0.65;
    color: var(--text-secondary);
    transition: opacity 0.3s ease;
}

.skill-item::before {
    content: '$';
    color: var(--primary);
    opacity: 0.7;
    margin-right: 8px;
}

.terminal-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(192, 160, 128, 0.1);
    opacity: 0;
    transition: var(--terminal-transition);
    pointer-events: none;
}


.terminal-text {
    position: relative;
}

.terminal-text::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0.9em;
    background-color: var(--primary-light);
    opacity: 0;
    transition: opacity 2s ease-out;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary-light), 0 0 2px var(--primary);
}

.terminal-text.typing::after {
    opacity: 1;
    animation: none;
}

.terminal-text.typing-done::after {
    opacity: 1;
    animation: smoothCaret 1.6s ease-in-out infinite;
}

@keyframes smoothCaret {
    0% { 
        opacity: 1;
        filter: brightness(1);
    } 50% { 
        opacity: 0.4;
        filter: brightness(0.8);
    } 100% { 
        opacity: 1;
        filter: brightness(1);
    }
}

.encryption-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
    z-index: 1;
    background: transparent;
    filter: blur(0.3px);
}

.encryption-line {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    font-size: clamp(10px, 1.2vw, 14px);
    white-space: nowrap;
    animation: encryptionFall linear forwards;
    opacity: 0.4;
    text-shadow: 0 0 10px var(--primary), 0 0 20px rgba(192, 160, 128, 0.1);
    letter-spacing: 2px;
    transform-origin: center;
    filter: brightness(0.85) contrast(1.1) blur(0.3px);
    transition: all 0.4s ease;
    text-transform: none;
}

@keyframes encryptionFall {
    0% {
        transform: translateY(-100%) translateX(0);
        opacity: 0;
    } 10% {
        opacity: 0.5;
    } 90% {
        opacity: 0.8;
    } 100% {
        transform: translateY(100vh) translateX(-20px);
        opacity: 1;
    }
}



.progress-indicator {
    position: fixed;
    right: clamp(15px, 3vw, 30px);
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vh, 20px);
    z-index: 100;
    padding: clamp(8px, 1.5vw, 12px);
    border-radius: 30px;
    background: var(--bg-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(192, 160, 128, 0.1);
    transition: var(--progress-transition);
    opacity: 0;
    animation: fadeInRight 0.6s ease-out forwards 3.6s;
}

.progress-dot {
    width: var(--dot-size);
    height: var(--dot-size);
    background: rgba(192, 160, 128, 0.1);
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    cursor: pointer !important;
    transition: var(--progress-transition);
    position: relative;
    z-index: 2;
}

.progress-dot::before {
    content: attr(data-section);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateX(-10px) translateY(-50%);
    font-size: 0.7em;
    color: var(--primary-light);
    opacity: 0;
    visibility: hidden;
    transition: var(--progress-transition);
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
    pointer-events: none;
    text-shadow: 0 0 8px rgba(192, 160, 128, 0.2);
    text-transform: lowercase !important;
}

.progress-dot:hover,
.progress-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    border-color: var(--primary-light);
    box-shadow: 0 0 20px var(--primary);
}

.progress-dot:hover {
    box-shadow: 0 0 20px var(--primary), 0 0 10px rgba(192, 160, 128, 0.6);
}

.progress-dot:hover::before {
    opacity: 0.9;
    visibility: visible;
    transform: translateX(-20px) translateY(-50%);
    text-shadow: 0 0 12px rgba(192, 160, 128, 0.3);
}

.node {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 0;
    opacity: 0.20;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0.4px) contrast(1.1) brightness(1.05) saturate(1.1);
    mix-blend-mode: screen;
}

@media (hover: none) and (pointer: coarse) {
    .node {
        opacity: 0.15;
    }
    
    .node:hover {
        opacity: 0.15;
        filter: blur(0.4px) contrast(1.1) brightness(1.05) saturate(1.1);
    }
}

.node canvas {
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 0 6px var(--primary-light)) drop-shadow(0 0 15px rgba(192, 160, 128, 0.25));
    animation: neuralGlow 6s ease-in-out infinite;
}

@keyframes neuralGlow {
    0% {
        filter: drop-shadow(0 0 4px var(--primary-light)) drop-shadow(0 0 12px rgba(192, 160, 128, 0.20));
    } 50% {
        filter: drop-shadow(0 0 6px var(--primary-light)) drop-shadow(0 0 16px rgba(192, 160, 128, 0.45));
    } 100% {
        filter: drop-shadow(0 0 4px var(--primary-light)) drop-shadow(0 0 12px rgba(192, 160, 128, 0.20));
    }
}

.wip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10;
    flex-direction: column;
}

.wip-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 0.5s;
    position: relative;
}

.wip-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.wip-icon {
    color: var(--primary);
    font-size: 0.9em;
    opacity: 0.7;
    transition: all 0.4s ease;
    transform: translateY(1px);
}

.wip-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--primary-dark), transparent);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.wip-text {
    color: var(--primary);
    font-size: 0.8em;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    font-weight: 300;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.wip-indicator:hover .wip-text {
    color: var(--primary-light);
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(192, 160, 128, 0.2);
}

.wip-indicator:hover .wip-icon {
    color: var(--primary-light);
    opacity: 0.9;
    transform: translateY(0px) scale(1.05);
    text-shadow: 0 0 10px rgba(192, 160, 128, 0.2);
}

.wip-indicator:hover .wip-line {
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(192, 160, 128, 0.1);
    width: 70px;
}

@media screen and (max-width: 768px) {
    .timeline {
        padding: 40px 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 15px 25px;
        left: 0 !important;
        transform: translateY(20px) !important;
    }

    .timeline-item:nth-child(even) {
        left: 0 !important;
    }

    .timeline::after {
        left: 20px;
        margin-left: 0;
    }

    .timeline-item::before {
        display: none;
    }

    .content {
        margin-left: 30px;
        transform: none !important;
    }

    .content:hover {
        transform: translateY(-2px) !important;
    }

    .progress-indicator {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 15px;
        padding: 10px;
        margin: 0;
        border-radius: 20px;
        background: rgba(26, 26, 28, 0.85);
    }

    .progress-indicator.hidden {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }

    .clock-container {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        padding: 10px 20px;
        background: linear-gradient(to bottom, var(--bg-dark) 60%, rgba(18, 18, 20, 0));
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .clock-container.hidden {
        transform: translateY(-100%);
        opacity: 0;
    }

    .clock {
        font-size: 0.9em;
        margin-bottom: 2px;
    }

    .date {
        font-size: 0.65em;
    }

    .timeline-item.visible {
        transform: translateY(0) !important;
    }

    .content {
        padding: 25px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 1.1em;
    }

    .about-section {
        padding: 40px 15px;
    }

    .about-section h2 {
        font-size: 2.5em;
    }

    .terminal-container {
        width: 95%;
    }

    .tag {
        padding: 4px 10px;
        font-size: 0.65em;
        margin: 0 3px 6px 0;
    }
    
    .wip-container {
        padding: 40px 20px 30px;
    }
    
    .wip-line {
        width: 40px;
    }
}

@media screen and (max-width: 380px) {
    .content {
        padding: 20px;
        margin-left: 25px;
    }

    .content h2 {
        font-size: 1.1em;
    }

    .content p {
        font-size: 0.9em;
    }

    .tag {
        padding: 3px 8px;
        font-size: 0.6em;
        margin: 0 2px 4px 0;
        letter-spacing: 0.02em;
    }

    .progress-indicator {
        gap: 15px;
        padding: 10px;
        margin: 0 15px;
    }

    .progress-dot {
        width: 8px;
        height: 8px;
    }

    .progress-dot::before {
        font-size: 0.7em;
    }
    
    .wip-container {
        padding: 30px 15px 20px;
    }
    
    .wip-line {
        width: 30px;
    }
    
    .wip-text {
        font-size: 0.7em;
    }
    
    .wip-icon {
        font-size: 0.8em;
    }
}

@keyframes fadeInRight {
    from { 
        opacity: 0; 
        transform: translateX(-20px);
    } to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px);
    } to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@media screen and (min-width: 2560px) {
    .timeline {
        max-width: 1800px;
    }

    .content {
        padding: 45px;
    }

    .content h2 {
        font-size: 1.6em;
    }

    .content p {
        font-size: 1em;
    }

    .header h1 {
        font-size: 2.2em;
    }

    .terminal-container {
        max-width: 600px;
    }
}

@media screen and (max-width: 1440px) {
    .timeline {
        max-width: 1000px;
    }
}

@media screen and (max-width: 768px) {
    .timeline {
        padding: 40px 20px;
    }

    .content {
        padding: 25px;
    }

    .content h2 {
        font-size: 1.2em;
    }

    .content p {
        font-size: 0.85em;
    }

    .terminal-container {
        width: 95%;
    }
}

@media screen and (max-width: 380px) {
    .content {
        padding: 20px;
    }

    .content h2 {
        font-size: 1.1em;
    }

    .content p {
        font-size: 0.8em;
    }

    .header h1 {
        font-size: 1.4em;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}