/* Button choice base styling */
.btn-choice {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    transition: all 0.3s ease;
}

.btn-choice:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

/* Glass effect base styling */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Additional custom animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    }
}

.btn-choice:focus {
    animation: pulse-glow 2s infinite;
}

/* Fix for gradient text rendering issues */
.text-fitness-orange {
    color: #ff6b35;
    text-shadow: 0 0 1px rgba(255, 107, 53, 0.3);
}

/* Gradient background animation */
.hero-bis {
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon hover effects */
.btn-choice i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px currentColor);
}

.btn-choice:hover i {
    filter: drop-shadow(0 0 20px currentColor);
    transform: scale(1.1);
}

/* Glass effect enhancement */
.glass-effect {
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s;
}

.glass-effect:hover::before {
    left: 100%;
}

/* Result section animation */
#resultSection .bg-gradient-to-br {
    animation: gradient-shift 3s ease infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff6b35, #ff5722);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ff5722, #e64a19);
}
