body {
    font-family: 'Courier', Courier, monospace;
    text-align: left;
    margin: 0;
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    box-shadow:
        inset 0 0 2px #fff,
        inset 0 0 4px #fff,
        inset 0 0 6px #fff;
    animation: neon-border-glow 14s cubic-bezier(0.42, 0, 0.46, 0.96) infinite;
}

#content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: filter 0.5s ease;
}

#content.blurred {
    filter: blur(5px) grayscale(100%);
    filter: brightness(-10%) contrast(50%) saturate(30%);
}

@keyframes neon-border-glow {
    0% {
        box-shadow:
            inset 0 0 2px #fff,
            inset 0 0 4px #fff,
            inset 0 0 6px #fff;
    }
    50% {
        box-shadow:
            inset 0 0 4px #fff,
            inset 0 0 8px #fff,
            inset 0 0 12px #fff;
    }
    100% {
        box-shadow:
            inset 0 0 2px #fff,
            inset 0 0 4px #fff,
            inset 0 0 6px #fff;
    }
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 3rem;
    text-transform: lowercase;
    margin-bottom: 5px;
    margin: 9px;
}

a, #cool-effects {
    color: rgb(210, 215, 215);
    cursor: none;
    padding: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.typewrite {
    font-size: 1rem;
}

.wrap {
    border-right: 0.08em solid rgb(0, 195, 255);
    white-space: nowrap;
}

.highlight {
    color: rgb(0, 255, 255);
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    padding: 2px 4px;
    border-radius: 3px;
}

#start-button {
    position: fixed;
    display: display-box;
    bottom: 44%;
    left: 5%;
    padding: 15px 30px;
    font-size: 1.5rem;
    background-color: transparent;
    color: rgb(0, 195, 255);
    border: 2px solid rgb(57, 56, 56);
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    font-family: 'Courier', monospace;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#start-button:hover {
    animation: pulse-glow 1.5s infinite;
    color: rgb(0, 255, 255);
    border-color: rgb(200, 200, 200);
}

#audio-controls {
    position: fixed;
    bottom: 5%;
    left: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#audio-label {
    font-size: 1rem;
    color: rgb(0, 195, 255);
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 195, 255, 0.345), 0 0 10px rgb(0, 195, 255);
}

#play-pause-slider {
    width: 60px;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgb(48, 48, 48);
    border: 1px solid rgb(184, 184, 184);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#play-pause-slider:hover {
    animation: pulse-glow 1.5s infinite;
    border-color: rgb(200, 200, 200);
}

#play-pause-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: rgb(0, 195, 255);
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0, 195, 255), 0 0 10px rgb(0, 195, 255);
}

#play-pause-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: rgb(0, 195, 255);
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0, 195, 255), 0 0 10px rgb(0, 195, 255);
}

#ascii-container {
    position: absolute;
    left: 75%;
    top: 25%;
    transform: translateX(-50%);
    cursor: move;
    user-select: none;
}

#ascii-art {
    color: rgb(0, 195, 255);
    font-family: 'Courier', monospace;
    font-size: 1.0rem;
    white-space: pre;
    text-shadow: 0 0 5px rgb(0, 195, 255), 0 0 10px rgb(0, 195, 255);
    animation: neon-glow 4s ease-in-out infinite;
    cursor: inherit;
    margin: 0;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgb(150, 150, 150), 0 0 10px rgb(150, 150, 150);
    }
    50% {
        box-shadow: 0 0 10px rgb(200, 200, 200), 0 0 20px rgb(200, 200, 200);
    }
    100% {
        box-shadow: 0 0 5px rgb(150, 150, 150), 0 0 10px rgb(150, 150, 150);
    }
}

@keyframes neon-glow {
    0% {
        text-shadow: 0 0 5px rgb(0, 195, 255), 0 0 10px rgb(0, 195, 255);
    }
    50% {
        text-shadow: 0 0 10px rgb(0, 200, 200), 0 0 20px rgb(0, 200, 200);
    }
    100% {
        text-shadow: 0 0 5px rgb(0, 195, 255), 0 0 10px rgb(0, 195, 255);
    }
}
