body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    /* Background baru dengan GIF */
    background: url(https://pafiofficial.org/assets-biolink/background.webp) center center no-repeat;
    background-size: cover; /* Pastikan gambar menutupi seluruh area */
    background-attachment: fixed; /* Membuat background tetap saat digulir */
    color: #fff; /* Warna teks tetap putih */
    display: flex; /* Tetap menggunakan flexbox untuk tata letak konten */
    justify-content: center; /* Pusatkan konten horizontal */
    align-items: center; /* Pusatkan konten vertikal */
    min-height: 100vh; /* Pastikan bodi mengambil tinggi viewport penuh */
    text-align: center; /* Pusatkan teks di dalam bodi */
    overflow-x: hidden; /* Mencegah scrollbar horizontal yang tidak diinginkan */
}

.container {
    background-color: rgba(0, 0, 0, 0.7); /* Latar belakang semi-transparan */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

header {
    margin-bottom: 30px;
}

.profile-pic {
    width: 360px;
    height: 120px;
    object-fit: fit;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2.5em;
    margin: 10px 0;
    color: #FFD700; /* Warna emas untuk judul */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-top: 5px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

button {
  --green: #1BFD9C;
  font-size: 15px;
  padding: 0.7em 2.7em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid var(--green);
  background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
  color: var(--green);
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
}

button:hover {
  color: #82ffc9;
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
}

button:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform .4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
}

button:hover:before {
  transform: translateX(45em);
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745; /* Warna hijau untuk tombol */
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.link-button:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.link-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.4s ease-out, height 0.4s ease-out;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.link-button:hover::before {
    width: 200%;
    height: 200%;
}

.link-button span.button-icon {
    margin-right: 10px;
    font-size: 1.5em;
    line-height: 1; /* Ensure vertical alignment */
    z-index: 1; /* Keep icon above the hover effect */
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #B0B0B0;
}

footer p a {
    color: inherit; /* Mengambil warna teks dari parent (footer p) */
    text-decoration: none; /* Menghilangkan garis bawah */
    cursor: default; /* Mengubah kursor menjadi default (tidak seperti link) */
    pointer-events: auto; /* Memastikan link masih bisa diklik */
    /* Tambahan opsional: */
    /* font-weight: normal; */ /* Menghilangkan bold jika ada */
}

/* Opsional: Jika Anda ingin agar link tetap ada, tapi tidak terlalu menonjol saat di-hover */
footer p a:hover {
    color: #B0B0B0; /* Warna teks footer, agar tidak berubah saat di-hover */
    text-decoration: none;
}

/* Styling untuk Bagian Artikel Baru */
.info-section {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1); /* Latar belakang artikel sedikit transparan */
    border-radius: 10px;
    text-align: left; /* Teks artikel rata kiri */
    line-height: 1.6;
    color: #f0f0f0; /* Warna teks yang kontras */
}

.info-section h2 {
    font-size: 1.8em;
    color: #FFD700; /* Warna emas untuk judul artikel */
    margin-bottom: 15px;
    text-align: center; /* Judul artikel di tengah */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.info-section h3 {
    font-size: 1.4em;
    color: #00FFB3; /* Warna aqua untuk subjudul */
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section p {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Responsiveness for article section */
@media (max-width: 600px) {
    .info-section {
        padding: 15px;
    }
    .info-section h2 {
        font-size: 1.5em;
    }
    .info-section h3 {
        font-size: 1.2em;
    }
}

/* Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        width: 95%;
    }

    h1 {
        font-size: 2em;
    }

    .link-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .profile-pic {
        width: 180px;
        height: 60px;
    }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 0.6s linear forwards;
    transform: scale(0);
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}