* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #0a0a0a;
    cursor: none;
    font-family: 'Darker Grotesque', sans-serif;
}

#container {
    width: 100%;
    height: 100%;
}

.controls {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    min-width: 250px;
    display: none;
}

.controls label {
    color: #063a3d;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.controls label:last-child {
    margin-bottom: 0;
}

.controls span {
    display: inline-block;
    width: 65px;
    text-align: right;
}

.controls input[type="range"] {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    accent-color: #063a3d;
}

.perspective-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.perspective-controls label {
    color: #063a3d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.perspective-controls input[type="radio"] {
    cursor: pointer;
}

#cursor {
    position: fixed;
    border: 2px solid #063a3d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.1s, background-color 0.1s;
    box-shadow: 0 0 10px rgba(6, 58, 61, 0.3);
}

#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: none;
}

#videoContainer {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

#videoContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.crosshair-line {
    position: absolute;
    background-color: rgba(6, 58, 61, 0.8);
}

.crosshair-horizontal {
    width: 30px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.crosshair-vertical {
    width: 2px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#scoreDisplay {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
    color: #063a3d;
    font-size: 18px;
    font-weight: bold;
    display: none;
    z-index: 1000;
}

#info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    color: #063a3d;
    font-size: 12px;
    max-width: 300px;
}

#info a {
    color: #063a3d;
    text-decoration: none;
}

#info a:hover {
    text-decoration: underline;
}

#gameStatus {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    color: #063a3d;
    font-size: 18px;
    text-align: center;
    display: none;
    z-index: 10000;
}
