.message-line {
    color: var(--grey-300);
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding: 0 15px;
}

.message-line.signature {
    margin-top: 8px;
    font-style: italic;
}

.message-line.header {
    color: var(--grey-100);
}

.message-line.body {
    color: var(--grey-300);
}

.message-line.greeting {
    color: var(--grey-100);
    font-weight: 500;
}

.message-line.command {
    color: var(--grey-500);
    font-weight: 500;
}

.message-line.connecting {
    color: var(--grey-300);
    font-style: italic;
    font-size: 14px;
}

.message-line.status {
    color: var(--grey-500);
    font-style: italic;
}

.message-line.contact {
    margin-top: 16px;
}

.message-line.contact a {
    color: var(--grey-300);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-700);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.message-line.contact a:hover {
    color: var(--grey-100);
    border-bottom-color: var(--grey-300);
}

:root {
    --black: #000000;
    --white: #ffffff;
    --grey-100: #f5f5f5;
    --grey-300: #d4d4d4;
    --grey-500: #737373;
    --grey-700: #404040;
    --grey-900: #171717;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', system-ui, -apple-system, sans-serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

body {
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    line-height: 1.5;
}

/* Splash Screen */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.splash.slide-up {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Main Content */
.main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    display: none;
}

.main-content.hidden {
    display: none;
}

.main-content.slide-up {
    transform: translateY(0);
    display: block;
}

/* Main Content Frame */
.frame {
    position: fixed;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    pointer-events: none;
    will-change: transform;
}

.frame-border {
    position: absolute;
    background: var(--grey-700);
    opacity: 0;
}

.frame-border-top {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawFrameHorizontal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.frame-border-right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    transform: scaleY(0);
    transform-origin: top;
    animation: drawFrameVertical 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.frame-border-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    animation: drawFrameHorizontal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.frame-border-left {
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: drawFrameVertical 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards;
}

.frame-content {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    pointer-events: auto;
    opacity: 0;
    animation: fadeFrameContent 0.3s ease-out 2.4s forwards;
    overflow-x: hidden;
}

@keyframes drawFrameHorizontal {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes drawFrameVertical {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes fadeFrameContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Title Styles */
.title-container {
    position: relative;
    margin-bottom: 4rem;
}

.title-slice {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 2px
    );
    animation: slice 15s linear infinite;
}

.title-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(1.2);
}

.title-top {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.4rem;
    position: relative;
    text-transform: uppercase;
}

.title-bottom {
    font-size: 2rem;
    font-weight: 900;
    color: var(--grey-500);
    letter-spacing: 0.4rem;
    margin-top: -0.4rem;
    position: relative;
    text-transform: uppercase;
}

.info-container {
    text-align: left;
    padding: 2rem;
    margin-right: 3rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    line-height: 1.2;
    transform: translateX(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.info-title::after {
    content: '-';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-300);
    opacity: 0;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.info-title.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.info-underline {
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-underline.show {
    transform: scaleX(1);
}

.info-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-description.show {
    opacity: 1;
    transform: translateY(0);
}

#section2 .info-container {
    margin-left: auto;
    text-align: right;
    margin-right: 1rem;
}

#section2 .info-title {
    transform-origin: right;
}

#section2 .info-underline {
    margin-left: auto;
    transform-origin: right;
}

#section2 .info-description {
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-700);
    margin-left: auto;
}

#section4 .info-container {
    margin-left: auto;
    margin-right: 1rem;
    text-align: right;
}

#section4 .info-underline {
    margin-left: auto;
    transform-origin: right;
}

#section4 .info-description {
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-700);
    margin-left: auto;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.shared-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.2;
}

.shared-container {
    text-align: left;
    padding: 2rem;
    margin-left: 1rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
}

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

body {
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    line-height: 1.5;
}

/* Loader */
.loader {
    width: 250px;
    margin-top: 2rem;
    position: relative;
}

.loader-progress {
    width: 100%;
    height: 2px;
    background: var(--grey-700);
    position: relative;
}

.loader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--white);
    transition: width 16ms linear;
}

.loader-text {
    font-size: 0.7rem;
    color: var(--grey-500);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.loader-percentage {
    position: absolute;
    right: 0;
    top: -1.5rem;
    font-size: 0.7rem;
    color: var(--white);
}

/* Geometric Elements */
.geometric-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    top: 0;
    left: 0;
}

.geo-line {
    position: absolute;
    width: 1px;
    height: 35vh;
    background: linear-gradient(to bottom, transparent, var(--white), transparent);
    left: 15%;
    top: 15%;
    animation: geoLine 8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.geo-line-right {
    position: absolute;
    width: 1px;
    height: 35vh;
    background: linear-gradient(to bottom, transparent, var(--white), transparent);
    right: 15%;
    bottom: 15%;
    animation: geoLine 8s ease-in-out infinite 1s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.geo-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid var(--grey-700);
    border-radius: 50%;
    right: 20%;
    top: 25%;
    animation: geoCircle 15s linear infinite;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.geo-circle::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px dashed var(--grey-500);
    border-radius: 50%;
    top: -20%;
    left: -20%;
    animation: reverseRotation 20s linear infinite;
}

.geo-circle::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid var(--grey-700);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: pulseCircle 6s ease-in-out infinite;
}

.geo-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid var(--grey-700);
    transform: rotate(45deg);
    bottom: 25%;
    left: 25%;
    animation: geoSquare 10s ease-in-out infinite;
}

.geo-square::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px solid var(--grey-500);
    top: -20%;
    left: -20%;
    animation: innerSquare 8s ease-in-out infinite;
}

.geo-hexagon {
    position: absolute;
    width: 90px;
    height: 104px;
    right: 25%;
    bottom: 30%;
    animation: floatHexagon 12s ease-in-out infinite;
}

.geo-hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid var(--grey-700);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateHexagon 15s linear infinite;
}

.geo-grid {
    display: none;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--grey-700);
    top: 40%;
    right: 18%;
    animation: triangleFloat 9s ease-in-out infinite;
}

@keyframes geoLine {
    0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.2; }
    50% { transform: scaleY(1.3) translateY(-10px); opacity: 0.4; }
}

@keyframes geoCircle {
    0% { transform: rotate(0deg) scale(1); border-color: var(--grey-700); opacity: 0.2; }
    50% { transform: rotate(180deg) scale(1.1); border-color: var(--grey-500); opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1); border-color: var(--grey-700); opacity: 0.2; }
}

@keyframes reverseRotation {
    0% { transform: rotate(360deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.95); }
    100% { transform: rotate(0deg) scale(1); }
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.4; }
}

@keyframes geoSquare {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.2; }
    50% { transform: rotate(225deg) scale(1.1); opacity: 0.4; }
}

@keyframes innerSquare {
    0%, 100% { transform: rotate(0deg) scale(0.9); opacity: 0.2; }
    50% { transform: rotate(-180deg) scale(1); opacity: 0.4; }
}

@keyframes floatHexagon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(60deg); opacity: 0.4; }
}

@keyframes rotateHexagon {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; transform: perspective(800px) rotateX(60deg) rotateZ(45deg) translateZ(0); }
    50% { opacity: 0.4; transform: perspective(800px) rotateX(60deg) rotateZ(45deg) translateZ(50px); }
}

@keyframes triangleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(30deg); opacity: 0.4; }
}

@keyframes scanning {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-2%, -2%); }
    40% { transform: translate(2%, 2%); }
    50% { transform: translate(-1%, 1%); }
    60% { transform: translate(1%, -1%); }
    70% { transform: translate(2%, -2%); }
    80% { transform: translate(-2%, 2%); }
    90% { transform: translate(1%, -2%); }
}

/* Overlay */
@keyframes overlay {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Title Slice Animation */
@keyframes slice {
    0% { transform: translateX(-10%) rotate(0deg); }
    100% { transform: translateX(10%) rotate(360deg); }
}

/* Loader Progress Animation */
@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Loader Percentage Animation */
@keyframes percentage {
    0% { content: '0%'; }
    100% { content: '100%'; }
}

@media (max-width: 768px) {
    .title-main {
        transform: scale(1);
    }

    .title-top,
    .title-bottom {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }

    .loader {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .title-top,
    .title-bottom {
        font-size: 1.2rem;
        letter-spacing: 0.15rem;
    }

    .loader-text {
        font-size: 0.6rem;
        letter-spacing: 0.1rem;
    }
}

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

#shaderCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 30%;
    top: 35%;
    animation: dotFloat 10s ease-in-out infinite;
}

.geo-dots::before,
.geo-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--grey-700);
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite;
}

.geo-dots::before { left: 0; top: 0; animation-delay: 0s; }
.geo-dots::after { right: 0; bottom: 0; animation-delay: 1s; }

.geo-cross {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 35%;
    top: 20%;
    animation: crossRotate 12s linear infinite;
}

.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: var(--grey-700);
}

.geo-cross::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.geo-cross::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.geo-diamond-grid {
    position: absolute;
    width: 140px;
    height: 140px;
    left: 22%;
    bottom: 18%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    transform: rotate(45deg);
    animation: diamondFloat 15s ease-in-out infinite;
}

.geo-diamond-grid div {
    width: 100%;
    height: 100%;
    border: 1px solid var(--grey-700);
    animation: diamondPulse 6s ease-in-out infinite;
}

.geo-diamond-grid div:nth-child(2) { animation-delay: 0.2s; }
.geo-diamond-grid div:nth-child(3) { animation-delay: 0.4s; }
.geo-diamond-grid div:nth-child(4) { animation-delay: 0.6s; }
.geo-diamond-grid div:nth-child(5) { animation-delay: 0.8s; }
.geo-diamond-grid div:nth-child(6) { animation-delay: 1s; }
.geo-diamond-grid div:nth-child(7) { animation-delay: 1.2s; }
.geo-diamond-grid div:nth-child(8) { animation-delay: 1.4s; }
.geo-diamond-grid div:nth-child(9) { animation-delay: 1.6s; }

.geo-rings {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 28%;
    bottom: 22%;
    animation: ringsFloat 12s ease-in-out infinite;
}

.geo-rings::before,
.geo-rings::after {
    content: '';
    position: absolute;
    border: 1px solid var(--grey-700);
    border-radius: 50%;
    animation: ringsPulse 8s ease-in-out infinite;
}

.geo-rings::before {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.geo-rings::after {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(2); opacity: 0.4; }
}

@keyframes crossRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.2; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.4; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.2; }
}

@keyframes diamondFloat {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-15px); }
}

@keyframes diamondPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes ringsFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes ringsPulse {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.2; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.4; }
}

.geometric-elements::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.03) 0%,
        transparent 60%);
    pointer-events: none;
}

.grid-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.3;
}

/* Sections Styles */
.sections-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.sections-container::-webkit-scrollbar {
    display: none;
}

.section {
    position: relative;
    width: 100%;
    min-height: 73vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    padding: 0 10px;
    overflow: hidden;
}

.section-content {
    position: relative;
    padding: 0;
    margin: 0;
    color: var(--white);
    text-align: left;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.section-content h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

#section1 {
    padding: 0 2rem 2rem 2rem;
}

#section2,
#section3,
#section4,
#section5,
#section6 {
    margin: 0;
    padding: 0 10px;
}

#section2,#section4,#section6 .section-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.section-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#section3 .section-content {
    justify-content: flex-start;
    padding-left: calc(0.5vw);
}

#section2 .section-content,
#section4 .section-content,
#section6 .section-content {
    justify-content: flex-end;
    padding-right: calc(0.5vw);
}

.info-container, .hobbies-container {
    text-align: left;
    padding: 2rem;
    margin-right: 3rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-content {
    padding: 0 !important;
    margin: 0 !important;
}

.hobbies-container {
    text-align: left;
    padding: 2rem;
    margin-left: 20px !important;
    margin-right: 0 !important;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-container {
    text-align: left;
    padding: 2rem;
    margin-right: 20px !important;
    margin-left: 0 !important;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#section2 .info-container,
#section4 .info-container,
#section6 .info-container {
    margin: 0;
    margin-right: 20px !important;
}

#section3 .hobbies-container {
    margin: 0;
    margin-left: 20px !important;
}

.section-nav,
.nav-dot {
    display: none;
}

.cyber-nav,
.nav-links,
.cyber-link,
.link-text,
.link-line {
    display: none;
}

@keyframes glitch {
    0% { transform: translate(0); }
}

.tagline-container {
    composes: shared-container;
    text-align: left;
    padding: 2rem;
    margin-left: 1rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 2.8s;
    position: relative;
    max-width: 800px;
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
}

.tagline {
    composes: shared-title;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 3s;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.2;
}

.tagline::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--grey-300);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.5s;
}

.tagline-underline {
    position: relative;
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.8s;
}

.tagline-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0;
    position: relative;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 4s;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 2rem;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes lineReveal {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.8;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tagline-container {
        margin-left: 1rem;
        padding: 1.5rem;
        width: 85%;
    }
    
    .tagline {
        font-size: clamp(1.6rem, 4vw, 2rem);
        letter-spacing: 0.12rem;
        margin-bottom: 1.2rem;
    }
    
    .tagline-description {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        line-height: 1.7;
        padding-left: 1.2rem;
        margin-right: 1.5rem;
    }

    .tagline-underline {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .tagline-container {
        margin-left: 1rem;
        padding: 1rem;
        width: 90%;
    }
    
    .tagline {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    
    .tagline-description {
        font-size: clamp(0.85rem, 1.6vw, 0.9rem);
        line-height: 1.6;
        padding-left: 1rem;
        margin-right: 1rem;
    }

    .tagline-underline {
        margin-bottom: 1.5rem;
    }
}

#section2,#section4,#section6 .section-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.info-container {
    text-align: left;
    padding: 2rem;
    margin-right: 3rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-container.show {
    opacity: 1;
    transform: translateY(0);
}

.info-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    line-height: 1.2;
    transform: translateX(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.info-title.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.info-underline {
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-underline.show {
    transform: scaleX(1);
}

.info-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-description.show {
    opacity: 1;
    transform: translateY(0);
}

#section2,#section6
.info-container {
    margin-left: auto;
    text-align: right;
    margin-right: 1rem;
}

#section2,#section6
 .info-title {
    transform-origin: right;
}

#section2,#section6
.info-underline {
    margin-left: auto;
    transform-origin: right;
}

#section2,#section6
.info-description {
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-700);
    margin-left: auto;
}

#section4 .info-container {
    margin-left: auto;
    margin-right: 1rem;
    text-align: right;
}

#section4 .info-underline {
    margin-left: auto;
    transform-origin: right;
}

#section4 .info-description {
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-700);
    margin-left: auto;
}

.hobbies-container {
    composes: shared-container;
    text-align: left;
    padding: 2rem;
    margin-left: 3rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    transition: opacity 0.5s ease-out;
}

.hobbies-title {
    composes: shared-title;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.2;
    padding-left: 20px;
    will-change: transform, opacity;
}

.hobbies-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--grey-300);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    animation: lineRevealFromLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.hobbies-underline {
    position: relative;
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.hobbies-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0;
    position: relative;
    padding-left: 1.5rem;
    border-left: 1px solid var(--grey-700);
    margin-right: 2rem;
    will-change: transform, opacity;
}

@keyframes lineRevealFromLeft {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.8;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hobbies-container {
        margin-left: 1rem;
        padding: 1.5rem;
        width: 85%;
    }
    
    #section3 .section-content {
        justify-content: center;
        padding: 0 1rem;
    }
    
    .hobbies-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        letter-spacing: 0.12rem;
        margin-bottom: 1.2rem;
    }
    
    .hobbies-description {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        line-height: 1.7;
        padding-left: 1.2rem;
        margin-right: 1.5rem;
    }

    .hobbies-underline {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hobbies-container {
        margin-left: 1rem;
        padding: 1rem;
        width: 90%;
    }
    
    .hobbies-title {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    
    .hobbies-description {
        font-size: clamp(0.85rem, 1.6vw, 0.9rem);
        line-height: 1.6;
        padding-left: 1rem;
        margin-right: 1rem;
    }

    .hobbies-underline {
        margin-bottom: 1.5rem;
    }
}

#section1 .section-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.tagline-container {
    max-width: 600px;
    margin-left: 1.5rem;
    z-index: 1;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tagline-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    #section1 .section-content {
        justify-content: center;
        padding: 0 1rem;
    }
}

#section1 .section-content,
#section2 .section-content,
#section3 .section-content {
    height: auto;
    min-height: 76vh;
}

.tagline-container,
.about-container,
.hobbies-container {
    padding: 1rem 2rem;
    margin: 0 1rem;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
}

#section1 .section-content,
#section2 .section-content,
#section3 .section-content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    min-height: 76vh;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        min-height: 84vh;
        padding: 1.5rem 0;
    }
    .tagline-container,
    .about-container,
    .hobbies-container {
        padding: 1rem;
        margin: 0 auto;
        width: 90%;
    }

    #section1 .section-content,
    #section2 .section-content,
    #section3 .section-content {
        min-height: 66vh;
        padding: 0;
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .section {
        min-height: 65vh;
        padding: 1rem 0;
    }

    .tagline-container,
    .about-container,
    .hobbies-container {
        padding: 0.5rem;
        width: 95%;
    }
}

#kernel-container {
    position: absolute;
    top: 8%;
    left: 80%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    display: block;
}

.tagline-container {
    position: relative;
    z-index: 1;
}

.cursor-dot,
.cursor-dot-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
    will-change: transform;
}

.cursor-dot-outline {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1.5px solid var(--grey-500);
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Update hover effects */
.cursor-dot-outline.hover {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transition: transform 0.2s ease-out;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(0.7);
    transition: transform 0.2s ease-out;
}


body.custom-cursor a,
body.custom-cursor button {
    cursor: pointer;
}

/* Projects Section */
.projects-container {
    composes: shared-container;
    text-align: left;
    padding: 2rem;
    margin-left: 1rem;
    position: relative;
    width: 100%;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.projects-title {
    composes: shared-title;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.2;
    padding-left: 20px;
    will-change: transform, opacity;
    text-align: left;
}

.projects-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--grey-300);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    animation: lineRevealFromLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.projects-underline {
    position: relative;
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    margin-left: 20px;
}

.projects-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: visible;
    cursor: grab;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

.projects-carousel:active {
    cursor: grabbing;
}

.project-card {
    position: absolute;
    width: 320px;
    height: 480px;
    background: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(115, 115, 115, 0.2);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.3),
        0 0 2px var(--grey-700);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    left: 50%;
    margin-left: -160px;
}

.project-card.center {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 5;
}

.project-card.left {
    transform: translateX(-110%) scale(0.85);
    opacity: 0.6;
    z-index: 0;
}

.project-card.right {
    transform: translateX(110%) scale(0.85);
    opacity: 0.6;
    z-index: 0;
}

.project-card.far-left {
    transform: translateX(-200%) scale(0.7);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.project-card.far-right {
    transform: translateX(200%) scale(0.7);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(115, 115, 115, 0.2);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card.center:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--grey-100);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    text-align: left;
}

.project-info h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--grey-500), transparent);
    transition: width 0.3s ease;
}

.project-card.center .project-info h3::after {
    width: 100%;
}

.project-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--grey-500);
    margin-bottom: 1rem;
}

.project-status {
    margin-bottom: 1rem;
}

.status-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.status-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--grey-700), var(--grey-500));
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.status-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.project-complexity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.complexity-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--grey-300);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.github-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(115, 115, 115, 0.2);
    margin-top: auto;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.github-link:hover {
    background: var(--grey-700);
    border-color: var(--grey-500);
    transform: translateY(-2px);
}

.project-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.project-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--grey-300);
    transition: all 0.3s ease;
}

.project-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.project-icon i {
    transition: transform 0.3s ease;
}

.project-icon:hover i {
    transform: scale(1.2);
}

.project-card.center .project-icon {
    animation: iconPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

@keyframes iconPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card.center .project-icon:nth-child(1) { animation-delay: 0.1s; }
.project-card.center .project-icon:nth-child(2) { animation-delay: 0.2s; }
.project-card.center .project-icon:nth-child(3) { animation-delay: 0.3s; }
.project-card.center .project-icon:nth-child(4) { animation-delay: 0.4s; }
.project-card.center .project-icon:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .project-card {
        width: 280px;
        height: 420px;
    }

    .project-info h3 {
        font-size: 1rem;
    }

    .project-info p {
        font-size: 0.85rem;
    }

    .project-image {
        height: 160px;
    }

    .project-info {
        padding: 1.2rem;
    }

    .github-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .project-card {
        width: 260px;
        height: 400px;
    }

    .project-info h3 {
        font-size: 0.9rem;
    }

    .project-info p {
        font-size: 0.8rem;
    }

    .project-image {
        height: 140px;
    }

    .github-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

.projects-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2rem 0;
}

/* Future Goals Section Styles */
.future-goals-container {
    composes: shared-container;
    text-align: right;
    padding: 2rem;
    margin-right: 4rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    position: relative;
    max-width: 600px;
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
}

.future-goals-title {
    composes: shared-title;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    color: var(--grey-100);
    margin-bottom: 1.5rem;
    opacity: 0;
    position: relative;
    animation: slideInFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    line-height: 1.2;
}

.future-goals-title::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--grey-300);
    transform: scaleX(0);
    transform-origin: right;
    animation: lineRevealRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.future-goals-underline {
    position: relative;
    width: 100px;
    height: 1px;
    background: var(--grey-500);
    margin-bottom: 2.5rem;
    margin-left: auto;
    transform: scaleX(0);
    transform-origin: right;
    animation: lineExpandFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.future-goals-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey-500);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0;
    position: relative;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1s;
    padding-right: 1.5rem;
    border-right: 1px solid var(--grey-700);
    margin-left: auto;
}

@media (max-width: 768px) {
    .future-goals-container {
        padding: 1rem;
        margin-right: 0.5rem;
    }
}

/* Daily Apps Section */
#daily-apps {
    padding: 0;
    margin: 0;
    background: transparent;
}

.app-arsenal-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 4rem;
    max-width: 600px;
}

.app-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.app-title.reveal {
    opacity: 1;
    transform: translateY(0);
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.app-item {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.app-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

.app-item:nth-child(1) { transition-delay: 0.1s; }
.app-item:nth-child(2) { transition-delay: 0.2s; }
.app-item:nth-child(3) { transition-delay: 0.3s; }
.app-item:nth-child(4) { transition-delay: 0.4s; }
.app-item:nth-child(5) { transition-delay: 0.5s; }
.app-item:nth-child(6) { transition-delay: 0.6s; }

.app-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
    padding-right: 2rem;
}

.app-name:hover {
    opacity: 1;
}

.app-name i:not(.plus-icon) {
    font-size: 1.2rem;
    width: 24px;
    opacity: 0.9;
}

.app-name span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.plus-icon {
    font-size: 1rem;
    position: absolute;
    right: 0;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.app-item.active .plus-icon {
    transform: rotate(45deg);
    opacity: 1;
}

.app-description {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    margin-left: calc(24px + 1rem);
    padding-right: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.description-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-item.active .app-description {
    max-height: 200px;
    opacity: 1;
}

.app-item.active .description-content {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .app-arsenal-container {
        padding-left: 2rem;
    }

    .app-title {
        font-size: 1.8rem;
    }

    .app-name span {
        font-size: 1.1rem;
    }

    .app-name i:not(.plus-icon) {
        font-size: 1.1rem;
    }
}

/* Dynamic Island Navigation */
.dynamic-nav {
    position: fixed;
    z-index: 2000;
}

.nav-toggle {
    position: fixed;
    top: 6px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2100;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-toggle.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.nav-button {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.taskbar {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 8px 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    min-width: min(800px, 90vw);
    border: 1px solid var(--grey-700);
}

.taskbar.show {
    top: 12px;
    opacity: 1;
    visibility: visible;
}

.taskbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.taskbar li {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.taskbar.show li {
    opacity: 1;
    transform: translateY(0);
}

.taskbar li:nth-child(1) { transition-delay: 0.1s; }
.taskbar li:nth-child(2) { transition-delay: 0.2s; }
.taskbar li:nth-child(3) { transition-delay: 0.3s; }
.taskbar li:nth-child(4) { transition-delay: 0.4s; }
.taskbar li:nth-child(5) { transition-delay: 0.5s; }
.taskbar li:nth-child(6) { transition-delay: 0.6s; }
.taskbar li:nth-child(7) { transition-delay: 0.7s; }
.taskbar li:nth-child(8) { transition-delay: 0.8s; }

.taskbar a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 6px 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.taskbar a:hover {
    background: rgba(115, 115, 115, 0.1);
    transform: translateY(-2px);
}

.taskbar i {
    font-size: 1rem;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .taskbar {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100%;
        height: 100vh;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(23, 23, 23, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .taskbar.show {
        opacity: 1;
        visibility: visible;
    }

    .taskbar ul {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 300px;
        align-items: center;
    }

    .taskbar li {
        transform: translateY(-30px);
        opacity: 0;
        width: 80%;
    }

    .taskbar.show li {
        transform: translateY(0);
        opacity: 1;
    }

    .taskbar a {
        font-size: 1.1rem;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .taskbar i {
        font-size: 1.2rem;
    }

    .nav-toggle {
        z-index: 2200;
    }
}

/* Section Title Container */
.section-title-container {
    position: relative;
    margin-bottom: 3rem;
}

.title-line {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease;
}

.title-line.reveal {
    width: 180px;
}

.app-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 4px;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.app-title.reveal {
    opacity: 1;
    transform: translateY(0);
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.app-item {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.app-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

.app-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
    padding-right: 2rem;
}

.app-name:hover {
    opacity: 1;
}

.app-name i:not(.plus-icon) {
    font-size: 1.2rem;
    width: 24px;
    opacity: 0.9;
}

.app-name span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.plus-icon {
    font-size: 1rem;
    position: absolute;
    right: 0;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.app-item.active .plus-icon {
    transform: rotate(45deg);
    opacity: 1;
}

.app-description {
    position: relative;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    margin-left: calc(24px + 1rem);
    padding-right: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.description-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-item.active .app-description {
    max-height: 200px;
    opacity: 1;
}

.app-item.active .description-content {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

/* Hover effect for app names */
.app-name::after {
    content: '';
    position: absolute;
    left: 24px;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
}

.app-name:hover::after {
    width: 100px;
}

.description-content::before {
    display: none !important;
}

/* Greeting Capsule */
.greeting-capsule {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 0.25rem;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.logo-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.terminal-title {
    padding-right: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.message-line {
    color: var(--grey-300);
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding: 0 15px;
}

.message-line.header {
    color: var(--grey-100);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.message-line.signature {
    color: var(--grey-100);
    font-style: italic;
    margin-top: 15px;
}

.message-line.body {
    color: var(--grey-300);
    font-weight: 300;
}

@media (max-width: 768px) {
    .message-line {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 10px;
        padding: 0 12px;
    }
    
    .message-line.header {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .message-line {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
        padding: 0 10px;
    }
    
    .message-line.header {
        font-size: 18px;
    }
}

/* Terminal Styles */
.terminal-container {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    margin: 20px auto;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 1401px) {
    .terminal-container {
        max-width: 1200px;
        height: 700px;
        margin-top: -2rem;
    }
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    height: 40px;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.terminal-button:hover {
    opacity: 0.8;
}

.terminal-button.close {
    background: #ff5f56;
}

.terminal-button.minimize {
    background: #ffbd2e;
}

.terminal-button.maximize {
    background: #27c93f;
}

.terminal-title {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.terminal-window {
    background-color: rgba(0, 0, 0, 0.8);
    height: calc(100% - 40px);
    margin: 0;
    padding: 20px;
    font-family: 'Fira Code', monospace;
    color: #fff;
    overflow-y: auto;
    line-height: 1.6;
}

.terminal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.command-history {
    color: #ccc;
}

.command-line, .next-command-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Fira Code', monospace;
}

.prompt, .separator {
    color: #3b8eea;
}

.directory {
    color: #50fa7b;
}

.command {
    color: #fff;
}

.neofetch-output {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    transition: opacity 0.5s ease;
}

.ascii-art {
    color: #3b8eea;
    font-size: 0.8rem;
    line-height: 1.2;
    white-space: pre;
    flex-shrink: 0;
}

.system-info {
    font-family: 'Fira Code', monospace;
    color: var(--grey-300);
    margin-left: 2rem;
    font-size: 14px;
    line-height: 1.6;
}

.info-line {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease forwards;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    line-height: 1.6;
}

.info-label {
    color: #3b8eea;
    min-width: 100px;
    font-weight: 500;
}

.info-value {
    color: var(--grey-300);
}

.info-line.typing {
    opacity: 1;
    transform: none;
}

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

.neofetch-output {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1rem;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: #fff;
    margin-left: 4px;
    animation: blink 1s infinite;
}

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

.message-line {
    color: var(--grey-300);
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
    animation: fadeIn 0.1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Terminal Responsive Styles */
@media (max-width: 1400px) {
    .terminal-container {
        max-width: 1000px;
        height: 650px;
    }
}

@media (max-width: 768px) {
    .terminal-container {
        height: 900px;  /* Increased from 800px */
        margin: 0 1rem;
    }
    
    .neofetch-output {
        flex-direction: column;
        gap: 1rem;
    }

    .ascii-art {
        font-size: 0.7rem;
    }

    .system-info {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .terminal-container {
        height: 1000px;  /* Even taller for smaller screens */
        margin: 0 0.5rem;
    }

    .terminal-window {
        padding: 15px;
    }

    .terminal-title {
        font-size: 0.8rem;
    }

    .ascii-art {
        font-size: 0.6rem;
    }

    .system-info {
        font-size: 0.8rem;
    }

    .message-line {
        font-size: 13px;
    }
}

#section8 {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Ensure proper spacing within section 8 */
#section8 .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Adjust terminal container for full height section */
.terminal-container {
    margin: 20px auto;
}

/* Add responsive padding for section 8 */
@media (max-width: 768px) {
    #section8 {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    #section8 {
        padding: 20px 10px;
    }
}

.app-arsenal-container {
    opacity: 0;
    transform: translateY(20px);
}

.apps-list {
    opacity: 0;
    transform: translateY(20px);
}

.app-item {
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    /* Remove the canvas hiding */
    .frame-content {
        background: none;
    }
    
    .frame-content {
        background: linear-gradient(45deg, rgba(23, 23, 23, 0.95), rgba(33, 33, 33, 0.95));
    }
}

.nav-toggle {
    position: fixed;
    top: 6px;
    right: 5px;
    background: transparent;
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2100;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-toggle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Always show nav toggle on large screens */
@media (min-width: 769px) {
    .nav-toggle.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* Hide only the kernel container on mobile */
    #kernel-container {
        display: none;
    }
}contact-header h2::after {
    content: '-';
    margin-left: 4px;
}media (min-width: 769px) {
    .nav-toggle.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* Hide only the kernel container on mobile */
    #kernel-container {
        display: none;
    }
}contact-header h2::after {
    content: '-';
    margin-left: 4px;
}

.section-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0 !important;
}

.section#section3 .section-content {
    justify-content: flex-start !important;
    padding-left: 20px !important;
}

.section#section2 .section-content,
.section#section4 .section-content,
.section#section6 .section-content {
    justify-content: flex-end !important;
    padding-right: 20px !important;
}

.hobbies-container {
    text-align: left;
    padding: 2rem;
    margin-left: 20px !important;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.info-container {
    text-align: left;
    padding: 2rem;
    margin-right: 20px !important;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Override any other section content styles */
#section2 .section-content,
#section4 .section-content,
#section6 .section-content,
#section3 .section-content {
    padding: 0 !important;
}

#section2,#section3,#section4,#section6 .section-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0 10px !important;
    overflow: hidden;
}

#section3 .section-content {
    justify-content: flex-start;
    padding-left: 20px !important;
}

#section2 .section-content,
#section4 .section-content,
#section6 .section-content {
    justify-content: flex-end;
    padding-right: 20px !important;
}

.hobbies-container,
.info-container {
    text-align: left;
    padding: 2rem;
    margin: 0 !important;
    opacity: 0;
    position: relative;
    max-width: 600px;
    width: 90%;
}

#kernel-container {
    position: absolute;
    top: 8%;
    left: 80%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    display: block;
}

@media (max-width: 768px) {
    #kernel-container {
        display: none;
    }
}

/* Terminal Section Title Styles */
#section-8 .section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 3rem 2rem 2rem;
    position: relative;
}

#section-8 .section-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.terminal-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: right;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.terminal-title-underline {
    width: 300px;
    height: 1px;
    background: rgba(169, 169, 169, 0.5);
    margin-top: 0.5rem;
}

#section-8 .section-content {
    padding: 2rem 3rem 2rem 2rem;
}

#section-8 .section-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 1rem;
}

.terminal-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: right;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.terminal-title-underline {
    width: 300px;
    height: 1px;
    background: rgba(169, 169, 169, 0.5);
    margin-top: 0.5rem;
}