@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background: #0d0f15;
    font-family: 'Poppins', sans-serif;
    color: white;
}

/* Contenedor de paquetes */
.credit-packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px;
}

/* Tarjetas de paquetes */
.package-box {
    background: rgba(255, 255, 255, 0.1); /* Efecto vidrio */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    width: 280px;
    height: 180px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Créditos con icono */
.package-box h2 {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Precio */
.price-box {
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Botón de compra */
.package-box button {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 12px 18px;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-box button:hover {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    transform: scale(1.05);
}

/* Etiqueta de Flash Sale */
.flash-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #ff4b1f, #ff9068);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
}
