.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
    overflow: hidden;
}

.firework {
    position: absolute;
    opacity: 1;
    bottom: 0;
    transform-origin: center bottom;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transform-origin: center;
    opacity: 0;
    will-change: transform, opacity;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    mix-blend-mode: screen;
}

@media (max-width: 768px) {
    .particle {
        width: 2px;
        height: 2px;
    }
} 