/* ═══════════════════════════════════════════════════════════
   🎵 BOUTONS DE VOTE TOP/FLOP
   ═══════════════════════════════════════════════════════════ */

.vote-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
}

.vote-btn {
    position: relative;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vote-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.vote-btn:hover::before {
    width: 300px;
    height: 300px;
}

.vote-btn span,
.vote-btn i {
    position: relative;
    z-index: 1;
}

/* Bouton TOP */
.vote-btn.top-btn {
    background: linear-gradient(135deg, #00ff87 0%, #00d46a 100%);
    color: #0a0a0a;
}

.vote-btn.top-btn::before {
    background: #00ff87;
}

.vote-btn.top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 135, 0.5);
}

.vote-btn.top-btn:active {
    transform: translateY(-1px);
}

.vote-btn.top-btn.active {
    background: #00ff87;
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.8);
    animation: pulse-top 1.5s infinite;
}

/* Bouton FLOP */
.vote-btn.flop-btn {
    background: linear-gradient(135deg, #ff006e 0%, #d40050 100%);
    color: #ffffff;
}

.vote-btn.flop-btn::before {
    background: #ff006e;
}

.vote-btn.flop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.vote-btn.flop-btn:active {
    transform: translateY(-1px);
}

.vote-btn.flop-btn.active {
    background: #ff006e;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    animation: pulse-flop 1.5s infinite;
}

/* Animations */
@keyframes pulse-top {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 135, 0.8);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 135, 1);
    }
}

@keyframes pulse-flop {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 110, 1);
    }
}

/* État désactivé */
.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.vote-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Message de confirmation */
.vote-message {
    text-align: center;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.vote-message.show {
    opacity: 1;
    transform: translateY(0);
}

.vote-message.success {
    background: rgba(0, 255, 135, 0.2);
    color: #00ff87;
    border: 1px solid rgba(0, 255, 135, 0.5);
}

.vote-message.error {
    background: rgba(255, 0, 110, 0.2);
    color: #ff006e;
    border: 1px solid rgba(255, 0, 110, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .vote-buttons-container {
        gap: 15px;
    }
    
    .vote-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}