.unica-one-regular {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

 *{font-family: "Unica One", sans-serif;}

body {
    margin: 0;
    background: #111;
    overflow: hidden;
}

h2 {
    color:#0eb1b9 ;
}

#game {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#lanes {
    display:flex;
    justify-content:center;
    gap: 24px;
    margin: 0; 
}

.lane {
    width: 80px;
    height: 80px;
    background: #0eb1b9;
    color: white;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
}


#hit-zone {
    position: absolute;
    top: 80%;            
    left: 0;
    width: 100%;
    height: 12%;    
    background: rgba(15, 255, 238, 0.18);
    border-top: 2px solid rgba(15,255,238,0.4);
    border-bottom: 2px solid rgba(15,255,238,0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; 
}


#scoreboard {
    position: fixed;
    right: 18px;
    top: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: right;
    z-index: 2000;
    font-weight: 600;
}

#scoreboard #score { font-size: 16px; color:#0eb1b9 ; }
#scoreboard #highscore { font-size: 12px; opacity: 0.85; color:#0eb1b9 ; }
.message {
    color:#0eb1b9 ;
    font-weight: bold;
}

@keyframes notesFall {
    0% { top: -10%;       
    }
    100% { top: 110%; 
    }
}

.note {
    animation: notesFall var(--fall-speed) linear;
}

#container {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 5px;
}

button {
    background: rgba(15, 255, 238, 0.18);
    border-top: 2px solid rgba(15,255,238,0.4);
    color: rgb(255, 255, 255);
} 

button:hover {background:#323635ff;
    color: #00ff84ff;
    transition: 0.5s;}

button:active {
    border-top: 2px solid rgba(7, 52, 49, 0.4);
    transition: 0.25s;}

input, textarea { background: rgba(26, 202, 190, 0.777);
    border-top: 2px solid rgba(15,255,238,0.4);
    color: rgb(255, 255, 255);
resize:vertical;}

input::placeholder, textarea::placeholder {
    color: rgba(0, 255, 234, 0.312);
}

textarea::-webkit-scrollbar {
    background-color: #111;
}

textarea::-webkit-scrollbar-thumb {
    background: #066469;
    border-radius: 1px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 234, 0.312);
}

select {
    background: rgba(26, 202, 190, 0.777);
    border-top: 2px solid rgba(15,255,238,0.4);
    color: rgb(255, 255, 255);
}

option {
    background: #111;
    color: rgb(255, 255, 255);
}

#stop {
    display: none;
}