 body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0;
}

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    justify-content: center;
}

/* Card */
.card {
    background: #ffffff;
    padding: 20px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Animated gradient border */
.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(270deg, #ff6a00, #ee0979, #00c6ff, #0072ff);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 15px;
    animation: gradientMove 6s ease infinite;
}

/* Hover */
.card:hover {
    transform: translateY(-12px) scale(1.05);
}

/* Text */
.card h3 {
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* Price with gradient text */
.price {
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

button {
    padding: 8px 14px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    transition: 0.3s;
}

/* Button hover */
button:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: scale(1.1);
}

/* Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}