@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #f472b6;
    --background: #fffafa;
    --text-main: #5c4a45;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top center, #fdf2f8 0%, #fffafa 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.bio-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.profile {
    margin-bottom: 2.5rem;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 25px -5px rgba(244, 114, 182, 0.3);
    margin-bottom: 1rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-desc {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 3.5rem;
    background: white;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.link-btn i {
    font-size: 1.5rem;
    position: absolute;
    left: 1.5rem;
}

.link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}

.link-btn.web:hover { border-color: var(--primary); color: var(--primary); }
.link-btn.zalo:hover { border-color: #0068FF; color: #0068FF; }
.link-btn.tiktok:hover { border-color: #000000; color: #000000; }
.link-btn.phone:hover { border-color: #10b981; color: #10b981; }
