* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

body {
    background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    background-color: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e1bee7;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ba68c8;
    margin-bottom: 15px;
}

h1 {
    color: #9c27b0;
    font-size: 24px;
    font-weight: 500;
}

.tagline {
    color: #ab47bc;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
}

.links-section {
    margin-bottom: 35px;
}

.link-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f8bbd0 0%, #f3e5f5 100%);
    color: #333333;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #e1bee7;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
    background: linear-gradient(90deg, #e1bee7 0%, #ce93d8 100%);
}

.sosmed-icon {
    color: #ab47bc;
    font-size: 22px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.sosmed-icon:hover {
    color: #9c27b0;
}
