.bbc-quiz-container {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	max-width: 600px;
	margin: 2rem auto;
	padding: 0 1rem;
	color: #333333;
}

.bbc-quiz-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 2.5rem;
	border: 2px solid #f0f0f0;
	position: relative;
	overflow: hidden;
}

.bbc-quiz-header h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.6rem;
	font-weight: 800;
	color: #111;
	text-align: center;
}

.bbc-quiz-header p {
	color: #666;
	font-size: 0.95rem;
	text-align: center;
	margin: 0 0 1.5rem 0;
}

.bbc-progress-bar-container {
	height: 6px;
	background: #eef1f6;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.bbc-progress-bar {
	height: 100%;
	width: 33%;
	background: linear-gradient(90deg, #ff5e62, #ff9966);
	transition: width 0.4s ease;
}

.bbc-quiz-step {
	display: none;
}

.bbc-quiz-step.active {
	display: block;
	animation: fadeIn 0.3s ease-in-out;
}

.bbc-quiz-step h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	text-align: center;
	color: #222;
}

.bbc-quiz-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.8rem;
}

.bbc-quiz-btn {
	background: #fafafa;
	border: 2px solid #eef1f6;
	border-radius: 12px;
	padding: 1.2rem;
	text-align: left;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	outline: none;
}

.bbc-quiz-btn:hover {
	border-color: #ff9966;
	background: #fffcf8;
	transform: translateY(-2px);
}

.bbc-quiz-btn.selected {
	border-color: #ff5e62;
	background: #fff5f5;
	box-shadow: 0 4px 12px rgba(255, 94, 98, 0.15);
}

.bbc-emoji {
	font-size: 1.8rem;
	margin-bottom: 0.4rem;
}

.bbc-quiz-btn strong {
	font-size: 1rem;
	color: #222;
	margin-bottom: 0.2rem;
}

.bbc-quiz-btn span:last-child {
	font-size: 0.8rem;
	color: #666;
}

.bbc-quiz-footer {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
}

.bbc-nav-btn {
	background: none;
	border: none;
	color: #ff5e62;
	font-weight: 600;
	cursor: pointer;
	padding: 0.6rem 1rem;
	transition: opacity 0.2s;
}

.bbc-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Loader */
.bbc-result-loader {
	text-align: center;
	padding: 3rem 0;
}

.bbc-spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #ff5e62;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem auto;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Results block styles */
.bbc-result-content {
	text-align: center;
	animation: fadeIn 0.4s ease;
}

.bbc-badge {
	display: inline-block;
	background: #ffebeb;
	color: #ff5e62;
	font-weight: 700;
	font-size: 0.8rem;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	text-transform: uppercase;
	margin-bottom: 0.8rem;
}

#bbc-match-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
}

#bbc-match-emoji {
	font-size: 4rem;
	margin: 1.2rem 0;
	animation: bounce 2s infinite;
}

#bbc-match-desc {
	font-size: 1rem;
	line-height: 1.5;
	color: #555;
	margin-bottom: 1.5rem;
}

.bbc-recommendations-list {
	background: #fdfdfd;
	border: 1px dashed #ddd;
	border-radius: 12px;
	padding: 1.2rem;
	margin-bottom: 2rem;
	text-align: left;
}

.bbc-recommendations-list h4 {
	margin: 0 0 0.8rem 0;
	font-size: 0.95rem;
	text-transform: uppercase;
	color: #777;
	letter-spacing: 0.5px;
}

.bbc-recommendations-list ul {
	margin: 0;
	padding-left: 1.2rem;
}

.bbc-recommendations-list li {
	margin-bottom: 0.4rem;
	font-size: 0.95rem;
	color: #333;
}

.bbc-cta-group {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.bbc-primary-cta {
	background: linear-gradient(135deg, #ff5e62, #ff9966);
	color: #fff;
	text-decoration: none;
	padding: 1rem;
	border-radius: 12px;
	font-weight: 700;
	display: block;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 6px 20px rgba(255, 94, 98, 0.25);
}

.bbc-primary-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 94, 98, 0.35);
}

.bbc-secondary-cta {
	background: transparent;
	border: none;
	color: #888;
	font-size: 0.9rem;
	cursor: pointer;
	padding: 0.5rem;
	text-decoration: underline;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
