<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Courier New', monospace;
            background: #fefefe;
            color: #1a1a1a;
            line-height: 1.4;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem 2rem 3rem 0.5rem;
            position: relative;
            border: 1px solid #ddd;
            margin: 1rem;
        }
        
        /* Legal pad style borders */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: calc(50% - 250px);
            width: 1px;
            height: 100%;
            background: #ff6b6b;
            opacity: 0.4;
        }
        
        body::after {
            content: '';
            position: absolute;
            bottom: 4rem;
            left: calc(50% - 250px);
            width: 60%;
            height: 1px;
            background: #b8b8b8;
            opacity: 0.5;
        }
        
        .covered-note {
            position: absolute;
            top: 15%;
            right: 15%;
            font-size: 0.8rem;
            color: #999;
            font-style: italic;
            transform: rotate(3deg);
        }
        
        /* Random lines scattered around */
        .random-line-1 {
            position: absolute;
            top: 25%;
            left: 8%;
            width: 60px;
            height: 1px;
            background: #ddd;
            opacity: 0.4;
            transform: rotate(-15deg);
        }
        
        .random-line-2 {
            position: absolute;
            bottom: 20%;
            right: 12%;
            width: 40px;
            height: 1px;
            background: #ddd;
            opacity: 0.3;
            transform: rotate(45deg);
        }
        
        .container {
            max-width: 500px;
            width: 100%;
        }
        
        /* Title Section */
        .title-section {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            position: relative;
        }
        
        .title-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 35%;
            width: 30%;
            height: 0.5px;
            background: #a8a8a8;
            opacity: 0.6;
        }
        
        .title {
            font-size: 1.2rem;
            font-weight: normal;
            letter-spacing: 0.1em;
            margin-bottom: 0.8rem;
            color: #777;
        }
        
        .subtitle {
            font-size: 0.7rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #1a1a1a;
            opacity: 1;
            font-weight: bold;
        }
        
        /* Portfolio Section */
        .portfolio-section {
            margin-bottom: 0.5rem;
            padding: 0;
            position: relative;
            width: 100%;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -20px;
            width: 30px;
            height: 1px;
            background: #ccc;
            opacity: 0.5;
            transform: rotate(12deg);
        }

        .portfolio-section::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: -25px;
            width: 45px;
            height: 1px;
            background: #ddd;
            opacity: 0.4;
            transform: rotate(-8deg);
        }

        .portfolio-label {
            position: absolute;
            top: -1.5rem;
            right: 0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.6;
        }

       .portfolio-container {
            background: #fafafa;
            border: 1px solid #e8e8e8;
            padding: 2rem;
            min-height: 200px;
            position: relative;
            width: calc(100% + 8rem);
            margin-left: -4rem;
            margin-right: -4rem;
        }

        /* Responsive portfolio width */
        @media (min-width: 768px) {
            .portfolio-container {
                width: calc(100% + 12rem);
                margin-left: -6rem;
                margin-right: -6rem;
            }
        }

        @media (min-width: 1024px) {
            .portfolio-container {
                width: calc(100% + 16rem);
                margin-left: -8rem;
                margin-right: -8rem;
            }
        }

        @media (min-width: 1200px) {
            .portfolio-container {
                width: calc(100% + 20rem);
                margin-left: -10rem;
                margin-right: -10rem;
            }
        }

       /* Portfolio Project Titles */
        .portfolio-container .project-title {
            position: absolute;
            font-size: 1.1rem;
            font-weight: bold;
            color: #1a1a1a;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 4px;
        }

        .portfolio-container .project-title:hover {
            transform: scale(1.05);
        }

        .portfolio-container .project-title.faded {
            opacity: 0.3;
        }

        /* Strategic positioning */
        .portfolio-container .project-title[data-project="classifier"] {
            top: 20%;
            left: 15%;
        }

        .portfolio-container .project-title[data-project="blog"] {
            top: 60%;
            right: 25%;
        }

        .portfolio-container .project-title[data-project="research-agent"] {
            top: 35%;
            left: 50%;
        }

        /* Tooltip */
        .tooltip {
            position: fixed;
            background: #1a1a1a;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            max-width: 250px;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            pointer-events: none;
            transition: opacity 0.2s ease;
        }

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

        .tooltip h3 {
            margin: 0 0 0.5rem 0;
            font-size: 1rem;
            color: #fff;
        }

        .tooltip p {
            margin: 0.3rem 0;
            line-height: 1.4;
        }

        .tooltip .tags {
            margin-top: 0.5rem;
            font-size: 0.7rem;
            opacity: 0.8;
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            transition: opacity 0.3s ease;
        }

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

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .modal-close:hover {
            color: #000;
        }

        .modal h2 {
            margin: 0 0 1rem 0;
            color: #1a1a1a;
        }

        .modal .section {
            margin-bottom: 1.5rem;
        }

        .modal .section h3 {
            margin: 0 0 0.5rem 0;
            color: #205EA6;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .modal .section p, .modal .section ul {
            margin: 0;
            line-height: 1.6;
        }

        .modal .section ul {
            padding-left: 1.2rem;
        }

        .modal .demo-link {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: #205Ea6;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            margin-top: 1rem;
            transition: background 0.2s ease;
        }

        .modal .demo-link:hover {
            background: #3730a3;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .portfolio-container {
                min-height: 250px;
                padding: 3rem 1rem;
            }
            
            .project-title {
                font-size: 1rem;
            }
            
            .modal-content {
                padding: 1.5rem;
                width: 95%;
            }
        }
        
        /* Project Details */
        .project-details {
            margin-top: 0.5rem;
            margin-bottom: 3rem;
            font-size: 0.8rem;
            line-height: 1.4;
            opacity: 0.7;
            position: relative;
        }
        
        .project-details::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 20%;
            width: 60%;
            height: 1px;
            background: #ddd;
            opacity: 0.3;
            transform: rotate(-1deg);
        }
        
        .project-title {
            font-style: italic;
            margin-bottom: 0.2rem;
        }
        
        .project-year {
            margin-bottom: 0.2rem;
        }
        
        .project-tech {
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.7rem;
        }
        
        /* Links Section */
        .links-section {
            text-align: left;
            position: relative;
            margin-left: -30px;
            transform: rotate(-0.5deg);
        }
        
        .links-section::before {
            content: '';
            position: absolute;
            top: -20px;
            right: 30px;
            width: 35px;
            height: 1px;
            background: #ddd;
            opacity: 0.4;
            transform: rotate(25deg);
        }
        
        .links-section::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: -10px;
            width: 20px;
            height: 1px;
            background: #ccc;
            opacity: 0.5;
            transform: rotate(-40deg);
        }
        
        .links-section .section-header {
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            opacity: 0.7;
            margin-left: 15px;
        }
        
        .links-list {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
            position: relative;
            flex-wrap: wrap;
        }
        
        .link-item {
            font-size: 0.8rem;
            text-decoration: none;
            color: #1a1a1a;
            transition: opacity 0.2s ease;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .link-item::before {
            content: '+';
            margin-right: 0.5rem;
            font-weight: bold;
        }
        
        .link-item:hover {
            opacity: 0.6;
        }
        
        /* Maintain weird positioning for individual links but horizontally */
        .link-item:nth-child(1) {
            transform: rotate(0.5deg);
            margin-top: -18px;
        }
        
        .link-item:nth-child(2) {
            transform: rotate(-0.8deg);
            margin-top: 25px;
        }
        
        .link-item:nth-child(3) {
            transform: rotate(0.3deg);
            margin-top: -40px;
        }
        
        .link-item:nth-child(4) {
            transform: rotate(-0.4deg);
            margin-top: 32px;
        }
        
        /* Responsive Design */
        @media (max-width: 600px) {
            .title {
                font-size: 1.1rem;
            }
            
            .container {
                max-width: 100%;
            }
            
            .portfolio-box {
                min-height: 150px;
                padding: 2rem 1rem;
            }
            
            .covered-note {
                top: 10%;
                right: 10%;
                font-size: 0.7rem;
            }
            
            body {
                padding: 2rem 1rem 2rem 0.5rem;
            }
            
            .links-list {
                gap: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .title {
                font-size: 1rem;
            }
            
            .portfolio-box {
                min-height: 120px;
                padding: 1.5rem 1rem;
            }
            
            .covered-note {
                display: none;
            }
            
            .links-list {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        
        /* Clean minimal layout */
        .container > * {
            margin-left: auto;
            margin-right: auto;
        }
</style>