body { 
  margin: 0;
  padding: 0;
  background: #111;
  font-family: 'MedievalSharp', cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#capture-area {
  position: relative;
  width: 400px;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Ubah jadi start, biar mulai dari atas */
  align-items: center;
  text-align: center;
}

#logo {
  width: 300px; /* Ukuran logo */
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px #000);
}

#hongkong {
  position: absolute;
  top: 80px;
  left: 20px; /* Ganti dari -10px menjadi 10px */
  font-size: 28px;
  color: #000000;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  letter-spacing: 10px;
}

#top4d, #top3d, #top2d, #bbfs, #shio, #colok {
  font-size: 30px; /* Sedikit lebih kecil */
  font-weight: bold;
  margin: 5px 0;
}

#result-container {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

#left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -20px;
  margin-top: 40px;
}

#right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: -60px;
  margin-top: 60px;
}

#left-column div {
  margin: 10px 0;
  font-size: 26px;
  font-weight: bold;
  color: black;
  text-align: center;
}

#right-column div {
  margin: 10px 0;
  font-size: 26px;
  font-weight: bold;
  color: black;
  text-align: center;
}

#footer-syair {
  text-align: center;
  font-family: 'MedievalSharp', cursive;
  color: #000;
}

#syair-text {
  font-size: 20px;
  font-style: italic;
  text-shadow: 2px 2px 4px #000;
  margin-top: 50px;
}

#slogan {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  text-shadow: 2px 2px 4px #000;
}

h1 {
  margin: 0;
  font-size: 30px;
  color: #FFD700;
  text-shadow: 2px 2px 4px #000;
}

p, div {
  margin: 0px 0;
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  text-shadow: 2px 2px 4px #000;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #FFD700;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}