body {
  margin: 0;
  padding: 0;
  background-color: #880E4F;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Efek Latar Belakang Bergerak */
.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('../images/effects/stars.png') repeat;
  animation: moveStars 80s linear infinite;
  opacity: 0.25;
}

.clouds {
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('../images/effects/clouds.png') repeat-x center bottom;
  animation: moveClouds 100s linear infinite;
  opacity: 0.2;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to   { background-position: 1000px 1000px; }
}

@keyframes moveClouds {
  from { background-position: 0 100%; }
  to   { background-position: 1000px 100%; }
}

/* Kontainer Halaman */
.tentang-container {
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Gambar Profil */
.gambar-pdf-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gambar-pdf-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
