/* Font dan Asas */
/* Font dan Asas */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0c0f1a;
  color: #ffffff;
  margin: 0;
  padding: 0;
  padding-top: 70px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: #00bfff;
  margin-right: 20px;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #38bdf8, #60a5fa);
  z-index: -1;
}

.logo img {
  width: 135px;
  height: 40px;
  border-radius: 8px;
}

/* Search bar */
.search-container {
  position: relative;
}

.search-container input {
  padding: 10px 35px 10px 14px;
  border-radius: 8px;
  border: 2px solid transparent;
  background-color: #334155;
  color: #f1f5f9;
  font-size: 14px;
  width: 150px;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 0 0px rgba(56, 189, 248, 0.5);
}

.search-container input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.search-container input::placeholder {
  color: #cbd5e1;
  transition: all 0.3s ease;
}

.search-container .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}

a {
  color: #00bfff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topup-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card */
.topup-card {
  background-color: #1a1a2f;
  margin: 20px;
  border-radius: 10px;
  display: flex;
  padding: 15px;
  gap: 15px;
  align-items: center;
  box-shadow: 0 0 10px #00bfff55;
}

.card-image {
  width: 80px;
  border-radius: 8px;
}

.card-content h3 {
  margin: 0;
  color: #00bfff;
}

.card-content p {
  margin: 4px 0;
  color: #aaa;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.card-features .icon {
  margin-right: 4px;
}

form input,
form select,
form textarea {
  max-width: 400px;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

button, select, input, textarea {
  font-family: inherit;
  border: none;
  border-radius: 6px;
  padding: 10px;
  background-color: #1f2b3d;
  color: white;
  transition: all 0.3s ease;
  width: 100%;
}

button:hover {
  background-color: #00bfff;
  color: #0c0f1a;
  cursor: pointer;
}

select:focus, input:focus, textarea:focus {
  outline: 2px solid #00bfff;
}

/* Banner */
.banner {
  text-align: center;
  background-color: #131b2c;
}

.banner-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

main h2 {
  margin-left: 20px;
  color: #fff;
  font-size: 26px;
}

header {
  padding: 20px;
  text-align: center;
  background-color: #1b2333;
}

.brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-logo {
  width: 50px;
  height: 50px;
}

.brand-text {
  font-size: 1.5rem;
  color: #00bfff;
}

/* Hashtags */
.hashtag-container, .hashtag-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hashtag-box {
  background: #283044;
  color: #00bfff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Rank Prices */
.rank-container {
  margin-top: 20px;
}

.rank-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.rank-prices div {
  background-color: #1f2b3d;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 120px;
}

.rank-prices img {
  width: 50px;
  height: 50px;
}

.rank-prices span {
  display: block;
  margin-top: 5px;
  color: #00bfff;
}

.rank-prices strong {
  display: block;
  margin-top: 5px;
  color: #fff;
}

main {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

form#jokiForm,
form#orderForm {
  background-color: #121927;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  margin-bottom: 30px;
}

form#orderForm {
  margin-top: 20px;
}

.form-group {
  background-color: #2e2e2e;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: #2a2a2a;
}

label {
  font-size: 16px;
  color: #ffffff;
  margin-top: 10px;
  display: block;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

/* Popup */
#paymentSection.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background: #101728;
  color: #ffffff;
  width: 90%;
  max-width: 320px;
  padding: 20px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 0.3s ease;
}

.popup-box h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.order-box h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.order-box p {
  font-size: 13px;
  line-height: 1.3;
}

select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background-color: #2e3b55;
  color: #fff;
  margin-top: 5px;
  font-size: 14px;
}

#qrContainer {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ccc;
}

#qrContainer strong {
  color: #00ffcc;
}

.button-group {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-submit, .btn-cancel {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.btn-submit {
  background-color: #00bfff;
  color: #fff;
}

.btn-submit:hover {
  background-color: #00a0d6;
}

.btn-cancel {
  background-color: #555;
  color: #fff;
}

.btn-cancel:hover {
  background-color: #444;
}

.popup-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  overflow: hidden;
  box-sizing: border-box;
}

.popup-warning .popup-content {
  background-color: #1f2b3d;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: auto;
  max-width: 250px;
  border: 2px solid #00bfff;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.popup-warning img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
}

.popup-warning button {
  margin-top: 15px;
  background-color: #00bfff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-warning button:hover {
  background-color: #009acc;
}

.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Footer */
footer {
  background-color: #0a0a0a;
  color: #f0f0f0;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 4px solid #00bfff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.about {
  flex: 1 1 100%;
  margin-bottom: 30px;
  text-align: center;
}

.about h2 {
  color: #00bfff;
  font-size: 28px;
  margin-bottom: 10px;
}

.about p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  max-width: 800px;
  margin: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.column {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.column h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 5px;
  display: inline-block;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin-bottom: 10px;
}

.column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.column ul li a:hover {
  color: #00bfff;
}

.column p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.logo-footer {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

/* WhatsApp support */
.whatsapp-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-support img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease;
}

.whatsapp-support img:hover {
  transform: scale(1.1);
}

label {
  font-size: 18px !important;
  color: #fff !important;
}