 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            cursor: crosshair;
        }

        /* Main Navigation */
        .main-nav {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            font-size: 20px;
            text-transform: lowercase;
            line-height: 1.8;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: #ff0066;
            transform: translateX(10px);
        }

        /* Header */
.header-bg-gif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url('images/background_IMG.gif') center center / cover no-repeat;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.7s;
    filter: brightness(30%);
}

        .header {
            overflow: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

.header > *:not(.header-bg-gif) {
    position: relative;
    z-index: 1;
}

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 98px,
                rgba(255, 0, 102, 0.03) 100px
            );
        }

        .name {
            font-size: clamp(1rem, 6vw, 10rem);
            font-weight: normal;
            letter-spacing: -0.05em;
            margin-bottom: 20px;
            text-transform: lowercase;
        }

        .tagline {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: #ff0000;
            margin-bottom: 40px;
            text-transform: lowercase;
        }

        .specialties-list {
            font-size: 16px;
            line-height: 1.6;
            text-transform: lowercase;
        }

        .specialties-list span {
            display: inline-block;
            margin: 0 20px;
            opacity: 0.7;
        }

        
        /* Sections */
        .section {
            min-height: 100vh;
            display: none;
             padding-top: 120px; /* Space for dock menu */
             margin-left: 200px;

        }

        .section.active {
            display: block;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 4rem);
            text-transform: lowercase;
            margin-bottom: 60px;
            text-align: center;
            font-weight: normal;
        }

        /* Projects Grid */
        .projects-container {
            max-width: 1400px;
            margin: 120px 0 0 0; /* Top margin for dock, no left margin */
}


        .project-item {
            margin-bottom: 80px;
            border-bottom: 1px solid #333;
            padding-bottom: 40px;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .project-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            text-transform: lowercase;
            font-weight: normal;
        }

        .project-year {
            color: #666;
            font-size: 14px;
        }

        .project-role {
            color: #ff0066;
            font-size: 14px;
            margin-bottom: 15px;
            text-transform: lowercase;
        }

        .project-description {
            max-width: 600px;
            line-height: 1.7;
            color: #ccc;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .project-tech {
            margin-bottom: 30px;
        }

        .tech-item {
            display: inline-block;
            margin-right: 20px;
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            align-items: flex-start;
        }

        .project-link {
            color: #fff;
            text-decoration: none;
            text-transform: lowercase;
            padding: 2px 8px;              /* Remove vertical padding, add minimal horizontal */
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
            display: inline-block; /* <-- Add this line */
            width: auto;
            box-sizing: border-box;
            min-width: 0;
        }

        .project-link:hover {
            border-bottom-color: #ff0066;
        }

        /* Skills Layout */
        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
            gap: 40px;
            justify-content: center;
        }

        .skill-block {
            margin-bottom: 0;
            flex: 1 1 0;
            min-width: 220px;
        }

        .skill-category {
            font-size: 18px;
            text-transform: lowercase;
            margin-bottom: 20px;
            color: #ff0066;
        }

        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .skill-item {
            color: #ccc;
            font-size: 16px;
            text-transform: lowercase;
            transition: color 0.3s;
        }

        .skill-item:hover {
            color: #fff;
        }

        /* About Section */
        .about-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            color: #e72020;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        /* Contact */
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: 100px;
        }

        .contact-item {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid #333;
            font-size: 16px;
        }

        .contact-label {
            color: #888;
            text-transform: lowercase;
        }

        .contact-value a {
            color: #fff;
            text-decoration: none;
            text-transform: lowercase;
        }

        .contact-value a:hover {
            color: #ff0066;
        }

        /* Corner Elements */
        .corner-text {
            position: fixed;
            font-size: 12px;
            color: #444;
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 100;
        }

        .corner-top-right {
            top: 30px;
            right: 30px;
        }

        .corner-bottom-left {
            bottom: 30px;
            left: 30px;
        }

        /* Glitch Effect */
        @keyframes glitch {
            0% { transform: translate(0) }
            20% { transform: translate(-2px, 2px) }
            40% { transform: translate(-2px, -2px) }
            60% { transform: translate(2px, 2px) }
            80% { transform: translate(2px, -2px) }
            100% { transform: translate(0) }
        }

        .glitch:hover {
            animation: glitch 0.3s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-nav {
                margin-bottom: 40px; /* Adds space below the navigation menu */
                position: static;
                transform: none;
                padding: 20px;
                display: flex;
                justify-content: center;
                gap: 30px;
                background: rgba(0,0,0,0.9);
            }

}
             .section {
                padding-top: 140px;
                padding-left: 0;
    }
            .projects-container {
                margin-top: 140px; /* More space for dock menu on smaller screens */
                margin-left: 0;    /* Remove left margin for mobile nav */
                padding-left: 0;
    }
            .project-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .project-links {
                flex-direction: column;
                gap: 15px;
            }

            .skill-items {
                flex-direction: column;
                gap: 15px;
            }

            .contact-item {
                flex-direction: column;
                gap: 10px;
            }
        



        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 2px;
        }

        ::-webkit-scrollbar-track {
            background: #000;
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

   

.dock-menu {
    position: fixed;
    top: -80px;           /* Start hidden above the viewport */
    left: 40px;           /* Distance from the left edge */
    transform: none;      /* Remove horizontal centering */

    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    z-index: 2000;
    transition: top 0.5s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.5s;
    opacity: 0;
}
.dock-menu.visible {
    top: 40px;            /* Slides down into view */
    opacity: 1;
}
.dock-profile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.dock-home {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: lowercase;
    padding: 6px 12px;
    border-radius: 20px;
    background: #ab0c0c;
    transition: background 0.3s;
}
.dock-home:hover {
    background: #373737;
    color: #ffffff;
}
