/* Container utama untuk price list */
.price-list-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style umum untuk setiap price list */
.price-list {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 48%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Heading untuk setiap price list */
.price-list h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
  text-align: center;
}

/* Style untuk list ul */
.price-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Style untuk setiap item di dalam list ul */
.price-list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.price-list ul li:hover {
  background-color: #e1e1e1;
}

/* Nama game atau paket */
.price-list ul li .game-name {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

/* Harga */
.price-list ul li .game-price {
  font-size: 16px;
  font-weight: bold;
  color: #28a745;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .price-list-container {
    flex-direction: column;
    align-items: center;
  }

  .price-list {
    width: 100%;
  }
}
