:root {
    --bg-color: #ffffff;
    --text-main: #1e293b;
    --text-secondary: #64748b;

    /* Vibrant Palette */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-green: #10b981;

    --card-bg: #ffffff;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);

    --border-radius-pill: 9999px;
    --border-radius-card: 24px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* --- Vibrant Animated Background Blobs --- */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: moveAround 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #bfdbfe 0%, #3b82f6 100%);
    top: -10%;
    left: -5%;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ede9fe 0%, #8b5cf6 100%);
    bottom: 5%;
    right: -5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fce7f3 0%, #ec4899 100%);
    top: 40%;
    right: 15%;
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes moveAround {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, 10vh) scale(1.1);
    }

    66% {
        transform: translate(-5vw, 5vh) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Container */
.page-container {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    z-index: 10;
}

/* Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-name {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin-bottom: 8px;
    color: #ef4444;
    /* Vibrant Red */
    text-transform: capitalize;
}

.profile-description {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
}

/* Social Links Pills */
.social-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.social-pill {
    background: #fff;
    border: 1px solid #f1f5f9;
    color: var(--text-main);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: var(--border-radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.social-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.social-pill i {
    font-size: 1.1rem;
}

.social-pill.youtube i {
    color: #ff0000;
}

.social-pill.x i {
    color: #000;
}

/* Projects List */
.projects-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: var(--border-radius-card);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: #e2e8f0;
}

.project-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-logo {
    width: 56px;
    height: 56px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-logo {
    transform: rotate(-5deg);
    background: #fff;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.project-action {
    background: #f1f5f9;
    color: #475569;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.project-card:hover .project-action {
    background: var(--accent-blue);
    color: #fff;
}

/* Footer */
.profile-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 480px) {
    .profile-name {
        font-size: 2.2rem;
    }

    .project-card {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .project-action {
        width: 100%;
        text-align: center;
    }
}