body {
    padding: 0;
    margin: 0;
    font-family: arial;
    background: #000;
}

#view {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#view canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#logo {
    position: absolute;
    top: 60px;
    left: 90px;
    width: 100px;
    height: auto;
    padding: 10px;
    z-index: 2;
    background-color: #000;
}

.hidden {
    display: none;
}

#settings {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-family: monospace;
}

#restartContainer {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

#restartBtn {
    font-family: monospace;
    font-size: 18px;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    background: #ffbf00;
    color: #000;
    cursor: pointer;
}

#restartBtn:hover {
    background: #ffaa00;
}

#targetScore {
    font-family: monospace;
    font-size: 16px;
    width: 60px;
    padding: 6px;
    border: 2px solid #ffbf00;
    border-radius: 4px;
    background: #111;
    color: #fff;
    outline: none;
    text-align: center;
}

#targetScore:focus {
    border-color: #ffaa00;
    background: #222;
}

#startBtn {
    font-family: monospace;
    font-size: 16px;
    padding: 6px 12px;
    margin-top: 10px;
    margin-left: 10px;
    border: none;
    border-radius: 6px;
    background: #ffbf00;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
}

#startBtn:hover {
    background: #ffaa00;
}