.cl-container {
    max-width: 550px;
    margin: 20px auto;
    padding: 25px;
    background: #140f1f;
    color: #e5dfef;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-family: inherit;
}
.cl-container h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 15px;
}
.cl-instruction {
    font-size: 14px;
    color: #bfaecf;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.cl-field-group {
    margin-bottom: 20px;
}
.cl-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #ffd700;
}
.cl-field-group 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;
}
.cl-field-group select {
    width: 100%;
    padding: 10px;
    background: #0b0714;
    color: #fff;
    border: 1px solid #4a3b63;
    border-radius: 6px;
}
.cl-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#cl-submit-btn, #cl-reset-btn {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s;
}
#cl-submit-btn {
    background: #ffd700;
    color: #140f1f;
}
#cl-submit-btn:hover {
    background: #fff066;
}
#cl-reset-btn {
    background: #231934;
    color: #ffd700;
    border: 1px solid #4a3b63;
}
#cl-reset-btn:hover {
    background: #0b0714;
}
.cl-results-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #4a3b63;
    text-align: center;
}
.cl-mantra-box {
    background: #231934;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #4a3b63;
}
.cl-balls-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}
.cl-ball {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #8c7200);
    color: #140f1f;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}
