.presci-presta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* centre horizontalement */
    align-items: center;     /* centre verticalement si hauteur dispo */
}

/* Ticket */
.presci-ticket {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 250px;
    max-width: 90%; /* responsive: réduit sur petits écrans */
    text-align: center;
    font-family: 'Cursive', sans-serif;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* animation fluide */
}

/* Animation au survol */
.presci-ticket:hover {
    transform: translateY(-10px) scale(1.05); /* petit effet de zoom + décalage */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);  /* ombre plus marquée */
}

/* Titre */
.presci-ticket h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Bouton / lien */
.presci-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    color: #ff0080;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.presci-link:hover {
    background: #ffe0f0;
    transform: scale(1.1); /* effet de zoom sur le bouton */
}
