body {
  font-family: "Kantumruy Pro", sans-serif;
  padding: 0;
  background: #f5f5f5;
}

.poster-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  max-width: 1000px;
  margin-top: 20px;
}

.pricing-card {
  width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.323);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Middle card style */
.popular-card {
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.264);
  border: 3px solid #ffd700;
  transform: scale(1.12);
  z-index: 2;
  cursor: default;
}

/* Hover effect for all cards */
.pricing-card:hover {
  transform: scale(1.05);
}

/* Disable hover effect on the middle card */
.card-wrapper .pricing-card:nth-child(2):hover {
  transform: none;
}

.card-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  color: #ffd904;
  font-weight: bold;
  margin-bottom: 1rem;
}

.buy-btn {
  display: inline-block;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #000000;
  color: #fff;
}
