@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&display=swap');

.bbfs-container {
  background: rgba(15, 15, 15, 0.9);
  border: 2px solid #42c498;
  border-radius: 16px;
  padding: 40px;
  width: 480px;
  max-width: 95%;
  box-shadow: 0 0 25px rgba(66, 196, 152, 0.3);
  position: relative;
  backdrop-filter: blur(8px);
}

.bbfs-container h1 {
  color: #42c498;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(66, 196, 152, 0.5);
}

.input-group label,
.select-box label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #aaa;
}

input[type="text"],
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #222;
  background: #0c0c0c;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}


.error-msg {
  color: #ff4d4d;
  font-size: 14px;
  min-height: 18px;
  text-align: center;
  margin-bottom: 8px;
}

.hasil-wrap {
  position: relative;
  left: 15px
}

.hasil-wrap label {
  display: block;
  color: #aaa;
  margin-bottom: 6px;
  font-size: 14px;
}

.copy-container {
  position: absolute;
  top: 0;
  right: 0;
}

#copyBtn {
  background: transparent;
  border: none;
  color: #42c498;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

#copyBtn:hover {
  color: #ff00a0;
  transform: scale(1.1);
}

textarea {
  width: 100%;
  height: 180px;
  border: 2px solid #222;
  border-radius: 10px;
  background: #0b0b0b;
  color: #0fffb3;
  font-family: 'Chakra Petch', monospace;
  font-size: 1rem;
  padding: 15px;
  line-height: 1.6;
  resize: none;
  letter-spacing: 1px;
  box-shadow: inset 0 0 10px rgba(0, 255, 150, 0.1);
  transition: 0.3s ease;
}

textarea:focus {
  border-color: #42c498;
  box-shadow: 0 0 10px rgba(66, 196, 152, 0.5);
  outline: none;
}

.info {
  text-align: center;
  margin-top: 10px;
  color: #42c498;
  font-size: 14px;
  text-shadow: 0 0 8px rgba(66, 196, 152, 0.5);
}
/* ===== MOBILE BANNER PROMO ===== */
.mobile-banner-group {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000; /* biar transisi GIF lebih kontras */
}

.mobile-banner-group a {
  display: block;
  margin: 0;
  padding: 0;
}

.mobile-banner-group img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: none;
  margin: 0;
  padding: 0;
}

/* Tampil hanya di mobile */
@media (max-width: 768px) {
  .mobile-banner-group {
    display: block;
  }
}
