/* =========================
   PAGE BASE
========================= */
html, body {
    height: 100%;
    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: #f5c84c;
    overflow-x: hidden;
}

/* =========================
   Membership Page
========================= */

.membership-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap; /* 🔥 THIS IS THE KEY */
  padding: 40px 20px;
}

.membership-card {
  background: #0b0b0b;
  border: 1px solid #2a2a2a;
  border-radius: 16px;

  width: 260px;
  padding: 20px;

  text-align: center;
  color: #ddd;

  transition: all 0.2s ease;
}

.membership-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
}

/* GOLD TITLE BUTTONS */
.rank-title {
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 15px;

  background: #d4af37;
  color: #000;

  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;

  transition: all 0.2s ease;
}

.rank-title:hover {
  background: #f5d76e;
  transform: translateY(-2px);
}

/* LIST */
.membership-card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.membership-card li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* PRICE */
.price {
  margin-top: 10px;
  font-weight: bold;
  color: #d4af37;
}
.membership-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin-top: auto;
}
.yearly {
  margin-top: 6px;
  font-size: 13px;
  color: #aaa;
}
.yearly span {
  color: #d4af37;
}