body {
    background: linear-gradient(180deg, #b5f5f7 0%, #ffb6c1 100%);
    min-height: 100vh;
    padding: 20px;
}

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

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

.social-icons {
    gap: 20px;
}

.social-icons i {
    font-size: 24px;
    color: #ff69b4;
}

.top-buttons {
    position: fixed;
    top: 20px;
    width: 100%;
    max-width: 680px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.btn-custom {
    background-color: white;
    border-radius: 20px;
    padding: 8px 20px;
    color: #666;
    border: none;
    font-size: 14px;
}

.link-button {
    background-color: #ff99aa;
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s;
}

.link-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.link-button:hover {
    transform: scale(1.02);
}
.link-button i {
    font-size: 24px;
}
.link-text {
    flex-grow: 1;
    text-align: left;
    margin-left: 15px;
}

