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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: black;
    background: white;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.profile-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.profile-image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3), 0 0 20px rgba(147, 51, 234, 0.2);
}

.profile-info {
    flex: 1;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    letter-spacing: -0.02em;
}

.separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    margin: 1rem 0;
}

.bio {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: black;
}

.location {
    font-size: 0.9rem;
    color: black;
    margin-bottom: 0;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: black;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 8px;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: rgba(0, 0, 0, 0.7);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.cta-link-inline {
    display: inline-block;
    text-decoration: none;
}

.cta-wrapper-inline {
    position: relative;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(90deg,
        #808080 0%,
        #000000 25%,
        #808080 50%,
        #000000 75%,
        #808080 100%);
    background-size: 200% 100%;
    animation: borderBeam 2.5s linear infinite;
    transition: transform 0.3s ease;
}

.cta-wrapper-inline:hover {
    transform: translateY(-2px);
}

.cta-content-inline {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cta-wrapper-inline:hover .cta-content-inline {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.projects {
    max-width: 800px;
    margin: 0 auto;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 2rem;
}

.project-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0);
    background-size: 200% 100%;
    transition: transform 0.3s ease;
}

.project-wrapper:hover {
    transform: translateY(-5px);
}

.viewd-border {
    background: linear-gradient(90deg,
        #e0e0e0 0%,
        #b084f5 25%,
        #e0e0e0 50%,
        #b084f5 75%,
        #e0e0e0 100%);
    background-size: 200% 100%;
    animation: borderBeam 4s linear infinite;
}

.conscious-border {
    background: linear-gradient(90deg,
        #e0e0e0 0%,
        #4ade80 25%,
        #e0e0e0 50%,
        #4ade80 75%,
        #e0e0e0 100%);
    background-size: 200% 100%;
    animation: borderBeam 4s linear infinite;
}

@keyframes borderBeam {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.project {
    background: white;
    backdrop-filter: blur(10px);
    color: black;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    cursor: pointer;
}

.project-wrapper:hover .project {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
}

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

.project-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project h2 {
    font-size: 1.5rem;
    margin: 0;
    color: black;
}

.project p {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0c4a6e;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(56, 189, 248, 0.1);
}

.tag:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 2px 6px rgba(56, 189, 248, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    h1 {
        font-size: 1.5rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .social-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .project {
        padding: 1.5rem;
    }

    .project-header {
        flex-direction: row;
        align-items: center;
    }

    .project-logo {
        width: 60px;
        height: 60px;
    }

    .project-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-container {
        gap: 0.5rem;
    }

    h1 {
        font-size: 1.2rem;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    .project {
        padding: 1rem;
    }

    .project-header {
        gap: 0.75rem;
    }

    .project-logo {
        width: 50px;
        height: 50px;
    }

    .project h2 {
        font-size: 1.2rem;
    }

    .project p {
        font-size: 0.9rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
}