body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

h1 {
    color: #00bcd4;
    margin-bottom: 1.5rem;
}

#story-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 100px;
}

#options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: #00bcd4;
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

button:hover {
    background-color: #0097a7;
}

button:active {
    transform: translateY(2px);
}

#restart-btn {
    margin-top: 20px;
    background-color: #ff5722;
    color: white;
}

#restart-btn:hover {
    background-color: #e64a19;
}