/* CDA Quiz - front-end, ciemna stylistyka spojna z cdaction.pl */

.cda-quiz {
    background: #0b0a10;
    color: #ffffff;
    padding: 24px 16px 48px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.cda-quiz-box {
    max-width: 720px;
    margin: 0 auto;
    background: #17151d;
    border: 1px solid #23212c;
    border-radius: 16px;
    padding: 24px 20px;
}

.cda-quiz-archive-intro {
	text-align: center;
	margin-bottom: 1.5em;
}
.cda-quiz-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.2em;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1em;
}
.cda-quiz-archive-card {
	display: block;
	background: #23212c;
	border-radius: 6px;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	transition: transform .15s ease-in-out;
}
.cda-quiz-archive-card:hover {
	transform: translateY(-3px);
}
.cda-quiz-archive-card-thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.cda-quiz-archive-card-body {
	padding: .9em 1em 1.1em;
}
.cda-quiz-archive-card-title {
	margin: 0 0 .3em;
	font-size: 1.1em;
	color: #fff;
}
.cda-quiz-archive-card-meta {
	margin: 0;
	color: #f86a22;
	font-size: .85em;
	font-weight: 700;
	text-transform: uppercase;
}

.cda-quiz-thumb {
    margin: -24px -20px 20px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.cda-quiz-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.cda-quiz-title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #ffffff;
}

.cda-quiz-content,
.cda-quiz-question-content {
    line-height: 1.6;
    margin-bottom: 20px;
}

.cda-quiz-content img,
.cda-quiz-question-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cda-quiz-meta {
    color: #b7b3c2;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.cda-quiz-btn {
    display: inline-block;
    background: #f86a22;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease, transform 0.1s ease;
}

.cda-quiz-btn:hover,
.cda-quiz-btn:focus {
    background: #ff7d3b;
    color: #ffffff;
}

.cda-quiz-btn:active {
    transform: scale(0.98);
}

.cda-quiz-btn-start,
.cda-quiz-btn-next {
    width: 100%;
    display: block;
}

.cda-quiz-already-done {
    background: #23212c;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.cda-quiz-already-done p {
    margin-top: 0;
}

/* Pasek postepu */
.cda-quiz-progress {
    margin-bottom: 20px;
}

.cda-quiz-progress-label {
    font-size: 0.9rem;
    color: #b7b3c2;
    margin-bottom: 8px;
}

.cda-quiz-progress-bar {
    background: #23212c;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.cda-quiz-progress-fill {
    background: #f86a22;
    height: 100%;
    border-radius: 999px;
    transition: width 0.2s ease;
}

.cda-quiz-question-title {
    font-size: 1.3rem;
    margin: 0 0 12px;
}

/* Opcje odpowiedzi - duze przyciski, wygodne na telefonie */
.cda-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cda-quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #23212c;
    border: 2px solid #2f2c3a;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    min-height: 56px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.cda-quiz-option:hover {
    border-color: #f86a22;
}

.cda-quiz-option input[type="radio"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    accent-color: #f86a22;
}

.cda-quiz-option:has(input:checked) {
    border-color: #f86a22;
    background: #2b2233;
}

.cda-quiz-option-body {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cda-quiz-option-image img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.cda-quiz-option-label {
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Wynik */
.cda-quiz-result-trivia,
.cda-quiz-result-points {
    text-align: center;
    margin-bottom: 24px;
}

.cda-quiz-score {
    font-size: 1.2rem;
}

.cda-quiz-outcome-image img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.cda-quiz-outcome-title {
    color: #f86a22;
    font-size: 1.5rem;
    margin: 0 0 12px;
}

.cda-quiz-outcome-description {
    line-height: 1.6;
    margin-bottom: 16px;
}

.cda-quiz-result-back {
    text-align: center;
}

.cda-quiz-result-back a {
    color: #b7b3c2;
    text-decoration: underline;
}

.cda-quiz-result-back a:hover {
    color: #ffffff;
}

@media (min-width: 600px) {
    .cda-quiz-box {
        padding: 32px 40px;
    }

    .cda-quiz-btn-start,
    .cda-quiz-btn-next {
        width: auto;
        display: inline-block;
    }
}
