html,
body {
    touch-action: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html,
body,
canvas {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body {
    background-color: black;
}

#rotate {
    display: none;
    position: fixed;
    background-color: black;
    z-index: 999;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#rotate > svg {
    display: block;
    fill: white;
    width: 33%;
    height: 33%;
}

#canvas-container {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: fixed;
    inset: 0;
    background-color: #000000;
}

#bg-left,
#bg-right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    pointer-events: none;
}

#bg-left {
    order: -1;
}

#bg-right {
    order: 1;
}

#bg-left img,
#bg-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#bg-left img {
    object-position: right center;
}

#bg-right img {
    object-position: left center;
}

#canvas-container canvas {
    display: block;
    flex-shrink: 0;
    order: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.15);
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,1);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rewarded-ads-spinner-container {
    display: none;
}
