body { font-family: 'Poppins', sans-serif; height: 100vh; margin: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;}/* Animasi Gradient Background */.overlay { position: fixed; width: 100%;height: 100%; background: linear-gradient(-45deg, #00a86b, #2ecc71, #27ae60, #1abc9c); background-size: 400% 400%; animation: gradientMove 12s ease infinite; top: 0; left: 0; z-index: -1;}@keyframes gradientMove { 0% {background-position: 0% 50%;} 50% {background-position: 100% 50%;} 100% {background-position: 0% 50%;}}.profile-card { background: rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 30px; max-width: 100%; width: 100%; text-align: center; color: #fff; backdrop-filter: blur(8px); box-shadow: 0 8px 16px rgba(0,0,0,0.3); animation: fadeIn 1s ease-in-out;}.profile-img { width: 80px; height: 80px; border-radius: 50%; border: 4px solid #fff; margin-bottom: 15px; object-fit: cover;}.link-btn { background-color: #00a86b; color: #fff; border-radius: 12px; font-weight: 600; padding: 12px; margin: 10px 0; display: block; text-decoration: none; transition: all 0.3s ease;}.link-btn:hover { background-color: #06fd6f; color: #fff; transform: scale(1.05);}.social-icons a { color: #fff; font-size: 22px; margin: 0 10px; transition: transform 0.3s ease;}.social-icons a:hover { transform: translateY(-5px); color: #dfffe0;}@keyframes fadeIn { from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);}} 