#diwali-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.sparkle {
    position: absolute;
    font-size: 12px;
    color: #ff6b35;
    text-shadow: 0 0 8px #ff6b35;
    animation: sparkle-twinkle 2s infinite ease-in-out;
}

.sparkle::before {
    content: '★';
}

.sparkle.small {
    font-size: 8px;
    color: #ffa500;
    text-shadow: 0 0 6px #ffa500;
}

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}