/* Pause Screen */
#pause-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 40; /* Above game, below modals like codex */
    color: white;
}

#pause-container {
    background-color: #1a1a1a;
    border: 2px solid #555;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    max-height: 92vh;
    box-sizing: border-box;
    overflow-y: auto;
    padding: 20px; /* slightly reduce padding on small screens */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

#close-pause-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
#close-pause-button:hover {
    color: white;
}

#pause-container h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #00ffcc;
}

#pause-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pause-button {
    padding: 15px;
    font-size: 18px;
    background-color: transparent;
    color: #ccc;
    border: 2px solid #555;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.pause-button:hover, .pause-button.selected {
    background-color: #00ffcc;
    color: #1a1a1a;
    border-color: #00ffcc;
}

.audio-sliders { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.audio-sliders h3 { margin: 4px 0 6px; color: #00ffcc; }
.audio-row { display:flex; align-items:center; gap:12px; }
.audio-row label { width: 72px; color:#ccc; }
.audio-row input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 10px; background: #222; border: 1px solid #444; border-radius: 0; cursor: pointer; }
.audio-row input[type="range"]::-webkit-slider-runnable-track { height: 10px; background: #222; border: 1px solid #444; border-radius: 0; }
.audio-row input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; background: #00ffcc; border: 1px solid #00c9a3; margin-top: -3px; border-radius: 0; }
.audio-row input[type="range"]::-moz-range-track { height: 10px; background: #222; border: 1px solid #444; border-radius: 0; }
.audio-row input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: #00ffcc; border: 1px solid #00c9a3; border-radius: 0; }
.audio-row span { width: 52px; text-align: right; color:#aaa; font-family: Space Mono, Cal Sans, Noto Sans, monospace; }