.quiz-container {
    font-family: 'Segoe UI';
    background: #f9f9f9;
    color: #000 !important;
    padding: 20px;
    max-width: 600px;
    margin: auto;
    display: none;
}

h4.ncq_title {
    color: #1e293b;
    text-align: center;
    margin-bottom: 10px;
}

.ncq_quiz-step {
    display: none;
    background: white;
    color: #000 !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.ncq_quiz-step.ncq_active {
    display: block;
}

.dark-question-title {
    color: #000;
    font-weight: 700;
}

label.ncq_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

label.ncq_label:hover {
    background: #e0e0e0;
}

.ncq_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.ncq_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button.ncq_button:hover {
    background: #0056b3;
}

button.ncq_button:hover:not(:disabled) {
    background: #0056b3;
}

button.ncq_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.ncq_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.ncq_clear-choice:hover {
    background: #555;
}

p.ncq_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.ncq_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: ncq_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes ncq_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

input.ncq_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#ncq_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    display: block;
    max-width: 200px;
}

#ncq_retryBtn:hover {
    background: #1e7e34;
}

h4.whn_title {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

p.whn_description {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.whn_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.whn_quiz-step.whn_active {
    display: block;
}

.whn_quiz-step h3 {
    margin-bottom: 15px;
    color: #222;
}

label.whn_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

label.whn_label:hover {
    background: #e0e0e0;
}

input.whn_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.whn_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.whn_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

button.whn_button:hover {
    background: #0056b3;
}

button.whn_button:hover:not(:disabled) {
    background: #0056b3;
}

button.whn_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.whn_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.whn_clear-choice:hover {
    background: #555;
}

p.whn_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.whn_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: whn_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes whn_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#whn_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    max-width: 200px;
    text-align: center;
    display: block;
}

#whn_retryBtn:hover {
    background: #1e7e34;
}

h4.fch_title {
    text-align: center;
    margin-bottom: 10px;
    color: #1e293b;
}

.fch_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.fch_quiz-step.fch_active {
    display: block;
}

.fch_quiz-step p {
    font-weight: bold;
    margin-bottom: 15px;
}

label.fch_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

label.fch_label:hover {
    background: #e0e0e0;
}

input.fch_radio[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

input.fch_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.fch_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.fch_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

button.fch_button:hover {
    background: #0056b3;
}

button.fch_button:hover:not(:disabled) {
    background: #0056b3;
}

button.fch_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.fch_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.fch_clear-choice:hover {
    background: #555;
}

p.fch_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.fch_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: fch_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes fch_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#fch_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}

#fch_retryBtn:hover {
    background: #1e7e34;
}

h4.fgq_title {
    text-align: center;
    margin-bottom: 10px;
    color: #1e293b;
}

.fgq_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.fgq_quiz-step.fgq_active {
    display: block;
}

.fgq_quiz-step p {
    margin-bottom: 15px;
    font-weight: bold;
    color: #0f172a;
}

label.fgq_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

label.fgq_label:hover {
    background: #e0e0e0;
}

input.fgq_radio {
    margin-right: 10px;
    cursor: pointer;
}

input.fgq_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
}

.fgq_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.fgq_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    user-select: none;
}

button.fgq_button:hover {
    background: #0056b3;
}

button.fgq_button:hover:not(:disabled) {
    background: #0056b3;
}

button.fgq_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.fgq_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    user-select: none;
    display: block;
    margin-left: auto;
}

button.fgq_clear-choice:hover {
    background: #555;
}

input.fgq_submit {
    background-color: #0284c7;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    user-select: none;
}

input.fgq_submit:hover {
    background-color: #0369a1;
}

p.fgq_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.fgq_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: fgq_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes fgq_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#fgq_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    user-select: none;
}

#fgq_retryBtn:hover {
    background: #1e7e34;
}

h4.srq_title, h4.wcw_title {
    text-align: center;
    margin-bottom: 10px;
    color: #1d3557;
}

.srq_quiz-step, .wcw_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.srq_quiz-step.srq_active, .wcw_quiz-step.wcw_active {
    display: block;
}

.srq_quiz-step p, .wcw_quiz-step p {
    font-weight: bold;
    margin-bottom: 15px;
}

label.srq_label, label.wcw_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

label.srq_label:hover, label.wcw_label:hover {
    background: #e0e0e0;
}

.srq_controls, .wcw_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.srq_button, button.wcw_button {
    padding: 10px 20px;
    background: #1d72b8;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

button.srq_button:hover, button.wcw_button:hover {
    background: #125e99;
}

button.srq_button:hover:not(:disabled) {
    background: #0056b3;
}

button.srq_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.wcw_button:hover:not(:disabled) {
    background: #0056b3;
}

button.wcw_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.srq_clear-choice, button.wcw_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.srq_clear-choice:hover, button.wcw_clear-choice:hover {
    background: #555;
}

input.srq_email-input[type="email"], input.wcw_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

input.srq_submit-button, #wcw_submitBtn {
    width: 100%;
    margin-top: 20px;
    display: none;
}

input.srq_submit-button, #wcw_submitBtn {
    background-color: #0284c7;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    user-select: none;
}

input.srq_submit-button:hover, #wcw_submitBtn:hover {
    background-color: #0369a1;
}

p.srq_status-message, p.wcw_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.srq_loading-spinner, div.wcw_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1d72b8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: srq_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes srq_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes wcw_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#srq_retryBtn, #wcw_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}

#srq_retryBtn:hover, #wcw_retryBtn:hover {
    background: #1e7e34;
}

h4.gpc_title {
    text-align: center;
    margin-bottom: 15px;
    color: #222;
}

.gpc_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
    margin-bottom: 25px;
    transition: transform 0.2s ease-in-out;
}
    
.gpc_quiz-step.gpc_active {
    display: block;
    transform: scale(1.01);
}

.gpc_quiz-step p {
    font-weight: bold;
    margin-bottom: 15px;
}

label.gpc_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

label.gpc_label:hover {
    background: #e0e0e0;
}

input.gpc_radio[type="radio"] {
    margin-right: 10px;
}

input.gpc_email-input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.gpc_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
}

button.gpc_button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button.gpc_button:hover:not(:disabled) {
    background: #0056b3;
}

button.gpc_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.gpc_clear-choice {
    background: #888;
    padding: 6px 14px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.gpc_clear-choice:hover {
    background: #555;
}

input.gpc_submit-btn[type="submit"] {
    background-color: #1d72b8;
    color: #fff;
    font-size: 16px;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    display: none;
    transition: background-color 0.3s;
}

input.gpc_submit-btn[type="submit"]:hover {
    background-color: #125e99;
}

p.gpc_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.gpc_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: gpc_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes gpc_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#gpc_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}
#gpc_retryBtn:hover {
    background: #1e7e34;
}

h4.plcq_title {
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

p.plcq_instructions {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.plcq_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.plcq_quiz-step.plcq_active {
    display: block;
}

.plcq_quiz-step p.question-text {
    margin-bottom: 15px;
    font-weight: bold;
}

label.plcq_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

label.plcq_label:hover {
    background: #e0e0e0;
}

input.plcq_radio[type="radio"] {
    margin-right: 10px;
}

input.plcq_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.plcq_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.plcq_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

button.plcq_button:hover {
    background: #0056b3;
}

button.plcq_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.plcq_clear-choice:hover {
    background: #555;
}

button.plcq_button:hover:not(:disabled) {
    background: #0056b3;
}

button.plcq_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button#plcq_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}

button#plcq_retryBtn:hover {
    background: #1e7e34;
}

p.plcq_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.plcq_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: plcq_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes plcq_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

h4.clc_title {
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}

p.clc_description {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.clc_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.clc_quiz-step.clc_active {
    display: block;
}

.clc_quiz-step:hover {
    transform: scale(1.01);
}

.clc_quiz-step p {
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
}

label.clc_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    user-select: none;
}

label.clc_label:hover {
    background: #e0e0e0;
}

input.clc_radio-input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

input.clc_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.clc_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.clc_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

button.clc_button:hover:not(:disabled) {
    background: #0056b3;
}

button.clc_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.clc_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.clc_clear-choice:hover {
    background: #555;
}

p.clc_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.clc_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: clc_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes clc_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#clc_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}

#clc_retryBtn:hover {
    background: #1e7e34;
}

h4.lgq_title {
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}

.lgq_quiz-step {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.lgq_quiz-step.lgq_active {
    display: block;
}

.lgq_quiz-step:hover {
    transform: scale(1.01);
}

.lgq_quiz-step p {
    font-weight: bold;
    margin-bottom: 15px;
}

label.lgq_label {
    display: block;
    margin: 8px 0;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

label.lgq_label:hover {
    background: #e0e0e0;
}

input.lgq_radio[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

input.lgq_email-input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.lgq_controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
}

button.lgq_button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.lgq_button:hover {
    background: #0056b3;
}

button.lgq_clear-choice {
    background: #888;
    padding: 6px 12px;
    font-size: 0.9em;
    margin-top: 12px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: white;
    transition: background-color 0.3s;
    display: block;
    margin-left: auto;
}

button.lgq_clear-choice:hover {
    background: #555;
}

button.lgq_button:hover:not(:disabled) {
    background: #0056b3;
}

button.lgq_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

p.lgq_status-message {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    min-height: 1.2em;
    color: #333;
}

div.lgq_loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007BFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: lgq_spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}

@keyframes lgq_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#lgq_retryBtn {
    display: none;
    margin: 20px auto 0;
    background: #28a745;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1em;
    padding: 12px 25px;
    text-align: center;
    max-width: 200px;
    display: block;
}

#lgq_retryBtn:hover {
    background: #1e7e34;
}

/*Match Countdown*/
.match-countdown-container {
    display: none;
    background: #1b263b;
}
.smc-widget-container {
    background: #1b263b;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.smc-widget-container ::placeholder {
    color: #ddd;
    opacity: 0.7;
}
.smc-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
}
.smc-inputs input {
    background: #415a77;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    margin: 0.4rem 0;
    width: 100%;
    font-size: 1rem;
}
.smc-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}
.smc-buttons button {
    background: #00b4d8;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.smc-buttons button:hover {
    background: #0077b6;
}
#smc-notify-btn {
    background: #2ecc71;
}
#smc-notify-btn:hover {
    background: #27ae60;
}
#smc-reset-btn {
    background: #e74c3c;
}
#smc-reset-btn:hover {
    background: #c0392b;
}
.smc-result-area {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 15px;
    background: linear-gradient(to right, #0b3d91, #1e6091);
    transition: background 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}
#smc-result {
    display: none;
}
.smc-match-info {
    font-size: 1.3rem;
    color: #adb5bd;
    margin-bottom: 1rem;
}
.smc-timer {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd60a;
}
.smc-finished-msg {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    color: #80ffdb;
}
.smc-hidden {
    display: none;
}
.smc-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.smc-modal-content {
  background: #fff;
  padding: 20px;
  margin: 15% auto;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.smc-modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}
.smc-modal-buttons button {
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
#smc-cancel-btn {
  background: #ccc;
}
#smc-cancel-btn:hover {
  background: #999;
}
#smc-confirm-btn {
  background: #28a745;
  color: white;
}
#smc-confirm-btn:hover {
    background-color: #068523;
}
#smc-confirm-message {
    color: #000;
}
#smc-close-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  display: none;
}
#smc-close-btn:hover {
  background-color: #0056b3;
}
.smc-fire-bg {
    background: #300000;
    animation: smcGlow 2s infinite alternate ease-in-out;
}
.smc-fire-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.4) 0%, transparent 70%);
    animation: smcFlameFlicker 1.2s infinite ease-in-out;
    z-index: 0;
}
@keyframes smcFlameFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1) rotate(1deg);
        opacity: 1;
    }
}
@keyframes smcGlow {
    0% {
        box-shadow: 0 0 20px 5px rgba(255, 100, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 40px 10px rgba(255, 50, 0, 0.8);
    }
}