body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#app {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

/* Setup Screen */
#setup-screen p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.name-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.name-inputs label {
    font-weight: bold;
    font-size: 0.9rem;
    text-align: left;
}

.name-inputs input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Game Screen */
#intro-message {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.5;
}

#status-bar {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

#actions {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

#actions h2 {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0;
}

/* Buttons */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

