.smorfia-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: #110d1a;
    color: #e2dcf0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    font-family: Arial, sans-serif;
}
.smorfia-container h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 10px;
}
.smorfia-instruction {
    font-size: 14px;
    color: #bfaecf;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}
.smorfia-field {
    margin-bottom: 20px;
}
.smorfia-field label {
    display: block;
    font-size: 13px;
    color: #bfaecf;
    margin-bottom: 8px;
    font-weight: bold;
}
.smorfia-container textarea {
    width: 100%;
    padding: 12px;
    background: #0b0714;
    color: #fff;
    border: 1px solid #4a3b63;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    resize: none;
}
.smorfia-container select {
    width: 100%;
    padding: 10px;
    background: #0b0714;
    color: #fff;
    border: 1px solid #4a3b63;
    border-radius: 6px;
}
.smorfia-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#smorfia-submit-btn, #smorfia-reset-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
#smorfia-submit-btn {
    background: #8a5cf5;
    color: #fff;
}
#smorfia-submit-btn:hover {
    background: #a17fff;
}
#smorfia-reset-btn {
    background: #2b223a;
    color: #bfa3ff;
    border: 1px solid #4a3b63;
}
.smorfia-results-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #4a3b63;
    text-align: center;
}
.smorfia-balls-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}
.smorfia-ball {
    width: 46px;
    height: 46px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #8c7200);
    color: #140f1f;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}
.smorfia-error {
    color: #ffd700;
    background: rgba(138, 92, 245, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #4a3b63;
    text-align: center;
    font-size: 14px;
}
