.skeleton { background: #e0e0e0; border-radius: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse {
    0% { background-color: #e0e0e0; }
    50% { background-color: #f0f0f0; }
    100% { background-color: #e0e0e0; }
}