/* Custom styles that extend Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
/* Payment method styles */
.payment-method-detail {
    transition: all 0.3s ease;
}
/* Payment confirmation modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
}

/* Custom animation for roulette wheel */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.roulette-wheel {
    animation: spin 4s infinite linear;
    transition: all 0.3s ease;
}

.roulette-wheel:hover {
    animation-duration: 2s;
}

/* Form fields fix for Opera (dark mode forcing issue) */
input, select, textarea {
    color: #1a1a1a !important;          /* Texte toujours lisible */
    background-color: #ffffff !important; 
}

input::placeholder,
textarea::placeholder {
    color: #777 !important;             /* Placeholders visibles */
}
