* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: black;
    color: lime;
    font-family: "Courier New", Courier, monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#game-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 20px;
}
#story {
    font-size: 16px;
    margin-bottom: 18px;
    min-height: 60px;
    white-space: pre-wrap;
    line-height: 1.5;
}
#entry {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px;
    width: 300px;
    border: none;
    outline: none;
    margin-top: 10px;
    display: none;
}
#submit-btn {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    width: 150px;
    margin-top: 8px;
    display: none;
}
#submit-btn:hover {
    background-color: #00cc00;
}
#choices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}
.choice-btn {
    background-color: black;
    color: lime;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 10px 20px;
    border: 3px solid lime;
    cursor: pointer;
    width: 400px;
    transition: background-color 0.2s, color 0.2s;
}
.choice-btn:hover {
    background-color: lime;
    color: black;
}
.menu-btn {
    background-color: black;
    color: green;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 15px 20px;
    border: 3px solid green;
    cursor: pointer;
    width: 250px;
    transition: background-color 0.2s, color 0.2s;
}
.menu-btn:hover {
    background-color: green;
    color: black;
}
#restart-btn {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    width: 150px;
    margin-top: 10px;
    display: none;
}
#restart-btn:hover {
    background-color: #00cc00;
}
#menu-btn {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    width: 150px;
    margin-top: 10px;
    display: none;
}
#menu-btn:hover {
    background-color: #00cc00;
}
#badge-display {
    position: fixed;
    top: 10px;
    right: -300px;
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 30px;
    border: 4px solid black;
}
.badge-item {
    font-size: 16px;
    padding: 3px 0;
}
.badge-locked {
    color: gray;
}
.badge-unlocked {
    color: lime;
}
#yes-buttons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.yes-btn {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    width: 150px;
}
.yes-btn:hover {
    background-color: #00cc00;
}
#easter-container {
    margin-top: 15px;
    display: none;
}
#easter-input {
    background-color: lime;
    color: black;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    padding: 8px;
    width: 300px;
    border: none;
    outline: none;
}
#settings-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}
.settings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    gap: 15px;
}
.settings-label {
    font-size: 14px;
    color: lime;
}
.settings-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    height: 8px;
    background: #333;
    border-radius: 4px;
    outline: none;
}
.settings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: lime;
    border-radius: 50%;
    cursor: pointer;
}
.settings-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: lime;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.toggle-btn {
    background-color: black;
    color: lime;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    padding: 8px 15px;
    border: 2px solid lime;
    cursor: pointer;
    min-width: 80px;
}
.toggle-btn:hover {
    background-color: lime;
    color: black;
}
.toggle-btn.active {
    background-color: lime;
    color: black;
}
#volume-value {
    font-size: 14px;
    color: lime;
    min-width: 40px;
    text-align: right;
}
.settings-title {
    font-size: 20px;
    color: lime;
    margin-bottom: 10px;
    border-bottom: 2px solid lime;
    padding-bottom: 10px;
}
#credits {
    margin-top: 20px;
    font-size: 12px;
    color: gray;
    text-align: center;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}
.back-btn {
    background-color: black;
    color: lime;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    padding: 10px 30px;
    border: 2px solid lime;
    cursor: pointer;
    margin-top: 15px;
}
.back-btn:hover {
    background-color: lime;
    color: black;
}
