body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #2a2a2a;
    background-color: #ffffff;
}

.container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

h1 {
    color: #036afb;
    margin-bottom: 31px;
    font-size: 2rem;
    font-weight: 600;
}

.question {
    margin-bottom: 25px;
}

.question h3 {
    margin-bottom: 10px;
    color: #4f6d7a;
    font-size: 1.125rem;
}

select, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fdfdfd;
    transition: border 0.2s;
}

select:focus,
textarea:focus {
    border-color: #4f6d7a;
    outline: none;
}

textarea {
    min-height: 120px;
}

button {
    background-color: #92b9fc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #f83f70;
}

#results {
    margin-top: 30px;
}

.play-card {
    background-color: #ffffff;
    border-left: 4px solid #a3b8c2;
    margin-bottom: 15px;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #6b7280;
}

.error {
    background-color: #fcebea;
    color: #b91c1c;
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    border: 1px solid #f5c6cb;
}
