body {
    background: #0d1117;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 30px;
    touch-action: none;

}

html, body {
    overflow: hidden;
    height: 100%;
}


h1 {
    margin-bottom: 20px;
}

canvas {
    background: #111827;
    border: 2px solid #4fbc56;
    box-shadow: 0 0 12px rgba(79, 188, 86, 0.6);
    width: 90vw;
    height: 90vw;
    max-width: 400px;
    max-height: 400px;
}

.info {
    margin-top: 18px;
    font-size: 20px;
}

button {
    margin-top: 10px;
    padding: 10px 22px;
    font-size: 16px;
    background: #43a047;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

button:hover {
    background: #2e7d32;
}


.scoreboard h3 {
    font-size: 12px;
    margin-bottom: 6px;
}

.scoreboard ol {
    margin-left: 15px;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.modal-content {
    background: #0f172a;
    border: 2px solid #4fbc56;
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    color: #e2e8f0;
    box-shadow: 0 0 18px rgba(79, 188, 86, 0.6);
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content button {
    margin-top: 15px;
    padding: 10px 22px;
    background: #43a047;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.modal-content button:hover {
    background: #2e7d32;
}

