.credits {
  font-weight: bold;
  margin-right: 5px;
}
.credits-plans-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* in case of small screens */
}
.plan-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1 1 300px;
    position: relative;
    z-index: 1; /* Default stacking order */
}
.plan-card h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.price {
    font-size: 2rem;
    margin: 10px 0 20px 0;
    color: #0073e6;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.plan-card ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}
/* Make middle card bigger */
.big-card {
    transform: scale(1.05);
    border: 2px solid #0073e6;
}
/* Recommended Badge */
.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #facc15; /* Yellow */
    color: #333;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 12px;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10; /* Bring hovered card above others */
}

.big-card:hover {
    transform: translateY(-8px) scale(1.07);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}