@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8e8f0 0%, #f5f5fa 100%);
    min-height: 100vh;
    padding: 20px;
    font-weight: 400;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.5px;
}

.profile-bio {
    font-size: 18px;
    color: #333;
    font-weight: 400;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0 40px 0;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.2s ease;
    text-decoration: none;
    font-size: 32px;
    font-weight: 900;
}

.social-icon i {
    font-size: 32px;
    font-weight: 900;
    text-shadow: 0 0 0.5px currentColor;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 0 40px 0;
}

.link-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    cursor: pointer;
}

.link-card-wrapper:hover .link-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.link-emoji {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.menu-icon {
    width: 24px;
    height: 24px;
    color: #999;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.link-card:hover .menu-icon {
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 28px;
    }

    .link-card {
        padding: 14px 16px;
    }
}