* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #e0f2f7, #e8f9fd, #d1edf2, #f0faff);
    background-size: 400% 400%;
    animation: subtleGradientAnimation 20s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

@keyframes subtleGradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.portfolio-container {
    max-width: 700px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 3px solid transparent;
    background-image: linear-gradient(45deg, #a7d9f0, #cceeff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.description p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
    gap: 1.75rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    color: #444;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a i {
    z-index: 2;
    font-size: 30px;
    transition: color 0.3s ease;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb, #d4bfff);
    opacity: 0;
    transform: scale(0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-7px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 600px) {
    .portfolio-container {
        max-width: 85%;
        padding: 1.75rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .description p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a i {
        font-size: 24px;
    }
}