#effects-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.attack-beam {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #fff, #ff0000);
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    transition: transform 0.5s ease-in;
    z-index: 101;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 102;
    will-change: transform, opacity;
}

.controls-info h3 {
    margin: 5px 0;
    font-size: 1em;
    color: #ddd;
}

.controls-info p {
    margin: 2px 0;
    font-size: 0.9em;
    color: #aaa;
}
