body {
    background-color: white;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.controls {
    position: fixed;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border: 2px solid black;
    box-shadow: 8px 8px 0 black;
    z-index: 1000;
    font-family: 'Courier New', Courier, monospace;
}

.control-group {
    margin-bottom: 15px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.control-group input[type="range"] {
    width: 200px;
    height: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: black;
    border: 2px solid black;
    border-radius: 0;
}

.control-group input[type="range"]::-webkit-slider-track {
    width: 100%;
    height: 8px;
    background: black;
    border: none;
    border-radius: 0;
}

.control-group input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: black;
    border: none;
    border-radius: 0;
}

.control-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid black;
    border-radius: 0;
    cursor: pointer;
}

.control-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid black;
    border-radius: 0;
    cursor: pointer;
}

.control-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid black;
    border-radius: 0;
    background: white;
    position: relative;
    vertical-align: middle;
}

.control-group input[type="checkbox"]:checked {
    background: black;
}

.control-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.control-group input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid black;
    border-radius: 0;
    background: white;
    position: relative;
    flex-shrink: 0;
}

.control-group input[type="radio"]:checked {
    background: black;
}

.control-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.image-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.image-container img {
    max-width: 90vw;
    max-height: 90vh;
}

.inner-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 200px;
    background-color: transparent;
    border: 1px solid rgb(128, 0, 0);
    pointer-events: auto;
    opacity: 100;
}
