body {
    background-color: #00ace0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
    display: block;
    margin: 0 auto;
}

.profile-name {
    font-weight: 700;
    margin-top: 20px;
    color: #ffffff;
}

.profile-bio {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 10px;
}

.link-item {
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.link-item:hover {
    transform: translateY(-3px);
}

.link-btn {
    border-color: #ffffff;
    background-color: #e9ecef;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icons {
    margin-bottom: 30px;
}

.social-icon {
    font-size: 24px;
    margin: 0 10px;
    color: #ffffff;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #000;
}