/* === vip.css === */
.vip-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 1000px;
  padding: 0 10px;
  box-sizing: border-box;
}

.vip-card {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 20px;
  background-color: rgba(30, 30, 30, 0.5);
  border: 1px solid #444;
  border-radius: 8px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e0e0e0;
}

.vip-card:hover {
  transform: scale(1.05);
  border-color: #ff7043;
  box-shadow: 0 0 15px #00bcd4;
}

.vip-card h2 {
  font-size: 2rem;
  color: #00bcd4 !important;
  margin-bottom: 10px;
  text-align: center;
}

.vip-label {
  font-size: 2rem;
  color: #ff7043;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

.vip-price {
  font-size: 1.5em;
  color: gold;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

.vip-separator {
  border: none;
  height: 2px;
  background-color: gold;
  width: 80%;
  margin: 8px auto;
}

.vip-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  flex-grow: 1;
}

.vip-card ul li {
  margin: 6px 0;
  padding-left: 20px;
  position: relative;
}

.vip-card ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #00bcd4;
}

.vip-card button,
.vip-button {
  background: #00bcd4;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  align-self: center;
}

.vip-card button:hover,
.vip-button:hover {
  background: #ff7043;
}

.donation-label {
  display: block;
  text-align: center;
  margin-bottom: 5px;
  font-weight: bold;
}

.donation-input {
  display: block;
  margin: 10px auto;
  width: 60%;
  padding: 8px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.vip-box {
}

.vip-box .vip-content,
.vip-box .vip-title,
.vip-box .vip-description,
.vip-box .vip-perks,
.vip-box .vip-price,
.vip-box .vip-action,
.vip-box .vip-footer {
  /* Reduce font size for white text inside VIP boxes */
  font-size: 0.95em;
}