* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #e0e5ec; /* Warna background utama */
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --text-color: #3f4e67;
}

body {
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-color);
}

.neumorphism-card {
    background-color: var(--bg-color);
    border-radius: 30px;
    padding: 40px 25px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 10px 10px 20px var(--shadow-dark),
                -10px -10px 20px var(--shadow-light);
}

.profile-area {
    margin-bottom: 30px;
}

.profile-img-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-color);
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 5px 5px 10px var(--shadow-dark),
                inset -5px -5px 10px var(--shadow-light);
    padding: 5px; /* Memberikan ruang agar gambar tidak terlalu mepet */
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

p {
    font-size: 0.95rem;
    color: #6a7c93;
}

.link-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.neumo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 15px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 7px 7px 15px var(--shadow-dark),
                -7px -7px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.neumo-btn:hover {
    box-shadow: inset 5px 5px 10px var(--shadow-dark),
                inset -5px -5px 10px var(--shadow-light);
    color: #007bff; /* Memberikan aksen warna saat hover */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.neumo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: var(--text-color);
    box-shadow: 7px 7px 15px var(--shadow-dark),
                -7px -7px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.neumo-icon:hover {
    box-shadow: inset 5px 5px 10px var(--shadow-dark),
                inset -5px -5px 10px var(--shadow-light);
    color: #ff5722; /* Aksen warna oranye saat hover */
}
