* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

#animation-container {
    background-color: #fff;
    width: 100%;
    height: 450px;
    overflow: hidden;
    white-space: pre;
    font-family: monospace;
    font-size: 5px;
    line-height: 5px;
    text-align: center;
    color: #000;
}

#controls {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0;
}

#playButton {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 8px 15px;
    margin-right: 10px;
    cursor: pointer;
}

#playButton:hover {
    background-color: #333;
}

#progressBar {
    flex-grow: 1;
    height: 10px;
    background-color: #222;
    border-radius: 5px;
    overflow: hidden;
}

#progress {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.3s;
}

#badAppleAudio {
    margin-top: 10px;
    width: 100%;
    opacity: 0.7;
}

