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

body {
    background-color: #000;
    font-family: 'Fira Code', monospace;
    color: white;
    min-height: 100vh;
    padding: 2rem 5rem;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(80vh - 4rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.profile-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 0rem;
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-image: url('pfp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: white;
    border: 3px solid #333;
    transition: border-color 0.3s ease;
}

.profile-pic:hover {
    border-color:#bc4f0fc9;
}

.profile-name {
    font-size: 0.90rem;
    font-weight: 250;
    margin-bottom: 1.4rem;
    color: white;
}

.profile-handle {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: #222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.content-section {
    padding-left: 3.5rem;
    border-left: 2px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-title {
    font-size: 1.5rem;
    /* color: #6ec3af; */
    color: #de5d12;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.profile-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #ccc;
}

.highlight {
    color: white;
    font-weight: 500;
}

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }
            
            .container {
                min-height: calc(100vh - 2rem);
                padding: 0;
                max-width: 100%;
            }
            
            .portfolio-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .profile-section {
                text-align: center;
            }
            
            .content-section {
                border-left: none;
                border-top: 2px solid #333;
                padding-left: 0;
                padding-top: 2rem;
                text-align: left;
            }
            
            .profile-name {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
        }

        /* Desktop styles */
        @media (min-width: 1201px) {
            body {
                padding: 2rem 15rem;
            }
            
            .container {
                padding: 0 2rem;
            }
            
            .portfolio-content {
                justify-self: center;
                max-width: 1000px;
                margin: 0 auto;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            body {
                padding: 2rem 8rem;
            }
            
            .container {
                padding: 0 1rem;
            }
        }

        @media (min-width: 1025px) and (max-width: 1200px) {
            body {
                padding: 2rem 10rem;
            }
            
            .container {
                padding: 0 1.5rem;
            }
        }