@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: url(view-illuminated-neon-gaming-keyboard-setup-controller.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  align-items: center;
  min-width: 100vh;
}

/* Navbar */
.navbar {
  width: 100%;
  background-color: #121212;
  padding: 15px 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo h1 {
  font-size: 28px;
  color: #0ef;
}

.tec {
  color: #ff0055;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 18px;
  color: whitesmoke;
  transition: 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #0ef;
}

.navbar-search input {
  padding: 6px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
}

.navbar-search button {
  padding: 6px 10px;
  background-color: #0ef;
  color: black;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Pembayaran Section */
.pembayaran-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.form-container {
  background: transparent;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  border: 2px solid #0ef;
  backdrop-filter: blur(12px);

}

.form-container h2 {
  font-size: 26px;
  margin-bottom: 25px;
  text-align: center;
  color: #0ef;
}

.form-container .merah {
  color: #ff0055;
}

form label {
  display: block;
  margin-bottom: 8px;
  margin-top: 18px;
}

form input,
form select {
  width: 100%;
  padding: 10px 15px;
  margin-top: 5px;
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: white;
}

form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #0ef;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #0bc;
}

/* Promo Section */
.promo-section {
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.85);
  margin-top: 40px;
  text-align: center;
}

.promo-section h2 {
  font-size: 24px;
  color: #0ef;
  margin-bottom: 15px;
}

.promo-section ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  max-width: 600px;
  margin: auto;
}

.promo-section ul li {
  margin-bottom: 10px;
  color: #ddd;
}
