body {
    background-color: #111;
    color: #e0e0e0;
    font-family: monospace;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 20px;
    background-image: url("audio/mansion.jpg");
    background-size: cover;
    background-attachment: fixed;
}

#game-container {
    width: 600px;
    text-align: center;
}

#game-title {
    font-family: 'Creepster', cursive;
    color: #ff4444;
    font-size: 2.5em;
    text-shadow: 0 0 10px #800080;
    margin-bottom: 20px;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

#tts-button {
    background-color: #800080;
    color: #fff;
    border: 2px solid #b300b3;
    padding: 5px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: monospace;
}

#tts-button:hover {
    background-color: #b300b3;
    box-shadow: 0 0 10px #ff4444;
}

#story-text {
    background-color: rgba(34, 34, 34, 0.9);
    border: 2px solid #ff4444;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 150px;
    font-size: 1.2em;
}

#story-text.creepy {
    color: #add8e6;
}

#choices {
    margin: 20px 0;
}

button {
    background-color: #800080;
    color: #fff;
    border: 2px solid #b300b3;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-family: monospace;
    font-size: 1em;
    transition: all 0.3s;
}

button:hover {
    background-color: #b300b3;
    box-shadow: 0 0 10px #ff4444;
}

#game-over {
    background-color: rgba(34, 34, 34, 0.9);
    border: 2px solid #ff4444;
    padding: 20px;
}

h2 {
    color: #ff4444;
}