/* Scoped till experimentets egen canvas i stagen. */
.rotozoomer {
    display: block;
    background: #05060d;
    cursor: pointer;
    touch-action: none; /* klick ger zoom-kick, hall ger turbo */
    image-rendering: pixelated;
}

/* Texturknapparna, langst ned i mitten som pa retro-scrollern. */
.roto-ui {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}
.roto-ui button {
    padding: 8px 14px;
    font: 700 11px/1 "Courier New", monospace;
    letter-spacing: 0.14em;
    color: #ffd9f4;
    background: rgba(13, 1, 24, 0.75);
    border: 2px solid rgba(255, 47, 179, 0.55);
    border-radius: 0;
    cursor: pointer;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
}
.roto-ui button:hover {
    border-color: #ff2fb3;
    box-shadow: 2px 2px 0 rgba(255, 47, 179, 0.35);
}
.roto-ui button.on {
    background: #ff2fb3;
    color: #14020e;
    border-color: #ff2fb3;
}
