@import url("number.css");
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000000;
    overflow: hidden; /* Prevent scrollbars from Three.js canvas */
}
h1,h2,h3,h4,h5,h6 {
    color: #ce496b;
    margin: 0;
    padding: 0;
    text-align: center;
}
ol,ul{
    margin-left: 8px;
    padding-left: 8px;
    margin-bottom: 10px;
  }
a {
    text-decoration: none;
}
#cheat-popover img {
    position: fixed;
}
#game-container {
    width: 100vw;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0
}

#audioVisualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind everything else */
    display: block; /* Remove default inline spacing */
}
audio::-webkit-media-controls-enclosure {
    border-radius: 5px;
    background-color: inherit;
}
audio {
    background-color: #c0c0c0;
    border-style: outset;
    max-height: 40px !important;
    height: 30px !important;
    margin-top: 5px !important;
}
audio::-webkit-media-controls-panel {
    background-color: #c0c0c0;
    border-radius: 5px;
}
#title {
    position: absolute;
    top: 10px;
    color: #ce496b;
    font-size: 2rem;
}

#timerDisplay {
    position: absolute;
    color: #d0d0d0;
    font-size: 2rem;
    font-weight: bold;
    display: none;
    z-index: 1000;
}

.popover {
    position: absolute;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    display: none;
    z-index: 1000;
}
.show {
    display: block !important;
}

.icon {
    position: fixed;
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
    z-index: 1000;
    color: #ce496b;
}

.hamburger-icon {
    top: 20px;
    left: 20px;
}

#config {
    top: 20px;
    right: 20px;
}

#music-popover {
    width: min-content;
    padding: 10px;
    bottom: 50px;
    left: 0;
}

.help-icon {
    top: 15px;
    right: 60px;
}

.cheat-icon {
    top: 20px;
    left: 60px;
    font-weight: bolder;
}

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.button {
    background-color: #ce496b;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1000;
    position: absolute;
}

.pyro {
    display: none;
}

.pyro > .before {
    border: 5px solid rgba(255, 0, 0, 0.5);
}

.pyro > .after {
    border: 5px solid rgba(255, 255, 0, 0.5);
    animation-delay: -1s;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.wavetext {
    font-size: 1.5rem;
    color: #ce496b;
    margin-bottom: 1rem;
    display: none;
}
