/* Front-end styles for buttons */
.quick-download-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.quick-button {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
}
.floating-social-buttons {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.floating-social-buttons.bottom-right {
    bottom: 20px;
    right: 20px;
}
.floating-social-buttons.bottom-left {
    bottom: 20px;
    left: 20px;
}
.floating-social-buttons.center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.floating-social-buttons.center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.social-button {
    display: block;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
}

/* Common animations */
.scale-up:hover, .scale-up:active {
    transform: scale(1.1);
}
.scale-down:hover, .scale-down:active {
    transform: scale(0.9);
}
.rotate:hover, .rotate:active {
    transform: rotate(10deg);
}
.shadow-grow:hover, .shadow-grow:active {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.pulse:hover, .pulse:active {
    animation: pulse 0.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.bounce:hover, .bounce:active {
    animation: bounce 0.5s;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.slide-up:hover, .slide-up:active {
    transform: translateY(-5px);
}
.flip-x:hover, .flip-x:active {
    transform: rotateY(180deg);
}