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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#play-btn, #restart-btn{
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'VT323',monospace;
    font-size: 32px;
    padding: 10px 20px;
    background-color: #3b200d;
    color: white;
    border: 4px solid #A05D28;
    cursor: pointer;
    z-index: 20;
    image-rendering: pixelated;
}
#restart-btn {
    opacity: 0;
    pointer-events: none;
}
#play-btn:hover, #restart-btn:hover {
    background-color: #A05D28;
    border-color: white;
}
html,
body {
    width: 100%;
    min-height: 100vh;
}

body{
    background-color: #1a1a1a;
    background-image: url("Orpheus Background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    overflow:hidden;

}

#controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}
#custom-fortune, #record-btn, #set-msg-btn {
    font-family: 'VT323', monospace;
    font-size: 24px;
    padding: 5px 10px;
    background-color: #3b200d;
    color: white;
    border: 3px solid #A05D28;
}
#record-btn, #set-msg-btn {
    cursor: pointer;
}
#record-btn:hover, #set-msg-btn:hover {
    background-color: #A05D28;
    border-color: white;
}

#stage {
    width:100vw;
    height: 100vh;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;

}

.pixelated{
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}
#orpheus{
    position:absolute;
    width:64px;
    height:64px;
    background-image: url('norpehus.png');
    background-size: 192px 64px;
    background-position: 0px 0px;
    top: 50%;
    left: 0;
    transform-origin: bottom center;
    z-index: 10;
}
#cookie{
    position: absolute;
    width: 96px;
    height: 96px;
    background-image: url('cookies.png');
    background-size: 288px 96px;
    background-position: 0px 0px;
    top: 50%;
    left: 50%;
    cursor: pointer;
    z-index: 15;
}
#fortune-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: 'VT323', monospace;
    font-size: 64px;
    color: #00FF00;
    text-shadow: 4px 4px 0px #A05D28, 
                 -2px -2px 0px #1a1a1a;
    white-space: nowrap;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}
#orpheus,#cookie{
    image-rendering: pixelated;
}

.particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px; 
    height: 4px;
    background-color: #00FF00; 
    box-shadow: 0 0 8px #00FF00;
    pointer-events: none;
    z-index: 5;
}
