body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #161b22;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 90%;
    }

h1 {
    color: #58a6ff;
    margin-bottom: 20px;
}

#story-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

#choices-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }

.choice-button {
    background-color: #21262d;
    color: #c9d1d9;
    border: 1px solid #30363d;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.choice-button:hover {
    background-color: #30363d;
    transform: translateY(-2px);
}

.choice-button:active {
    transform: translateY(0);
}