/*
   Books Index Styles
*/

/* Ambient glow subtle animation */
.ambient-glow {
    animation: slowPulse 8s ease-in-out infinite alternate;
}
@keyframes slowPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

/* Base structural fixes */
@media (max-width: 768px) {
    .ambient-glow {
        width: 300px;
        height: 300px;
    }
}
