* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONT */
body {
  background: black;
  color: #6b3e1e; /* cokelat */
  font-family: "Poppins", sans-serif;
}

.poster {
  position: relative;
  width: 100%;
}

/* BG */
.bg-desktop,
.bg-mobile {
  width: 100%;
  height: auto;
  display: block;
}

.bg-mobile {
  display: none;
}

/* LOGO */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  will-change: top, width;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45));
}

/* INFO AREA */
.info-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px; /* JARAK ANTAR INFO DIPERKECIL */
  width: 72%;
  will-change: top;
}

/* GLASS OVERLAY */
.info-box {
  background: rgba(255, 255, 255, 0.55); /* semi transparan */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.info-box h2 {
  font-size: 21px;
  margin-bottom: 6px;
  font-weight: 600;
}

.info-box p {
  font-size: 15px;
  line-height: 1.55;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: black;
  color: white;
  font-size: 14px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .bg-desktop {
    display: none;
  }

  .bg-mobile {
    display: block;
  }

  .info-area {
    width: 88%;
    gap: 14px;
  }

  .info-box h2 {
    font-size: 18px;
  }

  .info-box p {
    font-size: 14px;
  }
}
