.tirage-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white !important;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tirage-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.boules {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.boule {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 95% 95%, #ffffffaa, #e91b30);
    color: white;
    font-weight: bold;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset -3px -3px 5px rgba(0,0,0,0.2),
        3px 3px 5px rgba(0,0,0,0.3);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.etoile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    background: gold;
    box-shadow: 
        inset -3px -3px 5px #ccc,
        3px 3px 5px #aaa;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    clip-path: polygon(
        50% 4%, 
        65% 33%, 
        95% 33%, 
        72% 56%, 
        82% 85%, 
        50% 70%, 
        18% 85%, 
        30% 56%, 
        3% 34%, 
        35% 34%
    );
    user-select: none;
    transition: transform 0.3s ease;
}

.tirage-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.tirage-date {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.tirage-cta {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}

.loading {
    opacity: 0.5;
}

.error {
    color: #e91b30;
    font-style: italic;
}

.plus-sign {
    font-size: 24px;
    color: #666;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .tirage-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .boules {
        justify-content: center;
        gap: 10px;
    }
    
    .boule, .etoile {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
