/* ===== СПЕЦИФИЧНЫЕ СТИЛИ ДЛЯ ТЕСТА СОВМЕСТИМОСТИ ===== */

/* Начальная страница */
.test-start {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.test-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.test-info .info-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 77, 141, 0.2);
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	transition: transform 0.3s ease;
	box-sizing: border-box;
}

.test-info .info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 77, 141, 0.4);
}

.test-info .info-card i {
	font-size: 2.5rem;
	color: #FF4D8D;
	margin-bottom: 15px;
}

.test-info .info-card h3 {
	font-size: 1.3rem;
	margin: 10px 0;
}

.test-info .info-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Выбор пола */
.gender-selection {
	margin: 40px 0;
	text-align: center;
}

.gender-selection h3 {
	margin-bottom: 30px;
	font-size: 1.5rem;
}

.gender-options {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 40px;
}

.gender-option {
	cursor: pointer;
	text-align: center;
}

.gender-option input {
	display: none;
}

.gender-icon {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	transition: all 0.3s ease;
}

.gender-option input:checked + .gender-icon {
	background: rgba(255, 77, 141, 0.1);
	border-color: #FF4D8D;
	transform: scale(1.1);
}

.gender-icon i {
	font-size: 2.5rem;
	color: rgba(255, 255, 255, 0.7);
}

.gender-option input:checked + .gender-icon i {
	color: #FF4D8D;
}

.gender-option input:checked + .gender-icon.male-icon {
	background: rgba(66, 133, 244, 0.1);
	border-color: #4285F4;
}

.gender-option input:checked + .gender-icon.female-icon {
	background: rgba(255, 77, 141, 0.1);
	border-color: #FF4D8D;
}

.gender-option input:checked + .gender-icon.male-icon i {
	color: #4285F4;
}

.gender-option input:checked + .gender-icon.female-icon i {
	color: #FF4D8D;
}

.gender-option span {
	font-size: 1.1rem;
	font-weight: 600;
}

/* Кнопка начала */
.start-button-container {
	text-align: center;
	margin-top: 40px;
}

.btn-start {
	background: var(--gradient-passion);
	color: white;
	border: none;
	padding: 18px 50px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.btn-start:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 77, 141, 0.3);
}

/* Страница "Поделиться" */
.share-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.share-header {
	text-align: center;
	margin-bottom: 40px;
}

.success-icon {
	font-size: 5rem;
	color: #4CAF50;
	margin-bottom: 20px;
}

.share-header h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	background: var(--gradient-passion);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.share-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Кнопки поделиться */
.share-options {
	margin-bottom: 40px;
}

.share-options h3 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 25px;
	color: #FF4D8D;
}

.share-buttons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.btn-share-social {
	padding: 20px;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	transition: var(--transition-smooth);
	border: none;
	color: white;
	box-sizing: border-box;
}

.btn-share-social.whatsapp {
	background: #25D366;
}

.btn-share-social.telegram {
	background: #0088cc;
}

.btn-share-social.link {
	background: var(--gradient-passion);
}

.btn-share-social:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Инструкции */
.instructions {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 77, 141, 0.2);
	border-radius: 15px;
	padding: 25px;
	margin: 40px 0;
	box-sizing: border-box;
}

.instructions h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: #FF4D8D;
}

.instructions ul {
	list-style: none;
	padding: 0;
}

.instructions li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.instructions li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #FF4D8D;
}

/* Футер страницы поделиться */
.share-footer {
	text-align: center;
	margin-top: 40px;
}

.btn-back {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px 30px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.btn-back:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

/* Страница партнера */
.partner-page {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.partner-header {
	text-align: center;
	margin-bottom: 40px;
}

.partner-header h1 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	background: var(--gradient-passion);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.partner-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
}

.partner-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.test-code {
	font-family: monospace;
	background: rgba(0, 0, 0, 0.3);
	padding: 5px 10px;
	border-radius: 5px;
	color: #FF4D8D;
}

/* Результаты */
.results-page {
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.results-header {
	text-align: center;
	margin-bottom: 50px;
}

.results-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Счет по категориям */
.category-scores h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	text-align: center;
	color: #FF4D8D;
}

.category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.category-header h4 {
	font-size: 1.2rem;
	margin: 0;
	min-width: 200px;
}

.category-percent {
	font-size: 1.8rem;
	font-weight: 700;
	color: #FF4D8D;
	flex-shrink: 0;
}

.category-progress {
	margin: 15px 0;
	width: 100%;
}

.category-progress .progress-bar {
	height: 8px;
	width: 100%;
}

.category-progress .progress-fill {
	background: var(--gradient-passion);
	height: 100%;
}

.category-tip {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 10px;
	flex-wrap: wrap;
}

.category-tip i {
	color: #FF4D8D;
}

/* Кнопки действий */
.results-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.btn-back-home {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px 30px;
	border-radius: 12px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.btn-back-home:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.test-code-display {
	text-align: center;
	margin-top: 40px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-sizing: border-box;
}

.test-code-display p {
	margin: 10px 0;
}

.test-code-display strong {
	color: #FF4D8D;
	font-size: 1.2rem;
}

.expiry-info {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-top: 10px;
}

.expiry-info i {
	color: #FF4D8D;
	margin-right: 5px;
}

/* Тест не найден */
.test-not-found {
	text-align: center;
	padding: 100px 20px;
	box-sizing: border-box;
}

.test-not-found h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #FF4D8D;
}

.test-not-found p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.8);
}

.btn-retry {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gradient-passion);
	color: white;
	padding: 15px 30px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.btn-retry:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 77, 141, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
	.gender-options {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.share-buttons {
		grid-template-columns: 1fr;
	}

	.partner-info {
		grid-template-columns: 1fr;
	}

	.results-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-back-home {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.category-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.category-percent {
		font-size: 1.5rem;
	}
}

/* ===== СТИЛИ ДЛЯ SEO-ЭЛЕМЕНТОВ ===== */
/* Скрытые семантические элементы для SEO */
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Бейджи для популярности в соцсетях */
.social-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255, 77, 141, 0.1);
	border: 1px solid rgba(255, 77, 141, 0.3);
	border-radius: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin: 10px 0;
	box-sizing: border-box;
}

.social-badge i {
	color: #FF4D8D;
}

/* Микроразметка для рейтингов */
.rating-microdata {
	display: none;
}

.stars-rating {
	display: flex;
	gap: 2px;
	color: #FFD700;
	margin: 10px 0;
	flex-wrap: wrap;
}

.stars-rating i {
	font-size: 16px;
}

/* Стили для сниппетов FAQ */
.faq-snippet {
	background: rgba(255, 255, 255, 0.05);
	border-left: 4px solid #FF4D8D;
	padding: 20px;
	margin: 20px 0;
	border-radius: 0 8px 8px 0;
	box-sizing: border-box;
}

.faq-question {
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.faq-answer {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Оптимизированные заголовки */
.h1-optimized {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #FF4D8D 0%, #A855F7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.h2-optimized {
	font-size: 1.8rem;
	line-height: 1.3;
	margin: 30px 0 15px;
	color: white;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Улучшенные CTA кнопки для конверсий */
.cta-button {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 77, 141, 0.4);
}

.cta-button:active {
	transform: translateY(-1px);
}

/* Стили для отзывов/рекомендаций */
.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 77, 141, 0.2);
	border-radius: 15px;
	padding: 25px;
	margin: 20px 0;
	position: relative;
	box-sizing: border-box;
}

.testimonial-card:before {
	content: "❝";
	position: absolute;
	top: 10px;
	left: 15px;
	font-size: 2rem;
	color: rgba(255, 77, 141, 0.3);
}

.testimonial-text {
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 15px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: white;
	flex-wrap: wrap;
}

.author-avatar {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #FF4D8D, #A855F7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

/* Стили для статей/пояснений */
.content-explanation {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.05), rgba(168, 85, 247, 0.05));
	border-radius: 12px;
	padding: 25px;
	margin: 30px 0;
	box-sizing: border-box;
}

.explanation-title {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.explanation-title i {
	color: #FF4D8D;
}

/* Стили для списков преимуществ */
.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.benefit-item {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
	box-sizing: border-box;
}

.benefit-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 77, 141, 0.05);
}

.benefit-icon {
	font-size: 2.5rem;
	color: #FF4D8D;
	margin-bottom: 15px;
}

.benefit-title {
	font-weight: 600;
	color: white;
	margin-bottom: 10px;
}

/* Оптимизация скорости загрузки */
.lazy-load {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.lazy-load.loaded {
	opacity: 1;
	transform: translateY(0);
}

/* Стили для мобильных SEO элементов */
@media (max-width: 768px) {
	.h1-optimized {
		font-size: 2rem;
	}

	.h2-optimized {
		font-size: 1.5rem;
	}

	.benefits-list {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.content-explanation {
		padding: 20px;
	}

	.testimonial-card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.h1-optimized {
		font-size: 1.8rem;
	}

	.h2-optimized {
		font-size: 1.3rem;
	}
}

/* Анимации для вовлечения пользователей */
@keyframes pulse-cta {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.pulse-animation {
	animation: pulse-cta 2s infinite;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease forwards;
}

/* ===== СТИЛИ ДЛЯ ТЕСТА ===== */
.test-start {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px 20px 40px;
	box-sizing: border-box;
}

.test-header {
	text-align: center;
	margin-bottom: 50px;
}

.test-description {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
}

/* Стили для скрытия/показа вопросов */
.question-block {
	display: none;
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-sizing: border-box;
}

.question-block.active {
	display: block;
	opacity: 1;
	transform: translateX(0);
}

/* Стили для формы */
#testForm {
	max-width: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}

.navigation-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
	gap: 20px;
	box-sizing: border-box;
}

.btn-prev,
.btn-complete {
	padding: 16px 32px;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: var(--transition-smooth);
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	min-width: 180px;
	justify-content: center;
	height: 56px;
	box-sizing: border-box;
	flex: 1;
	max-width: 300px;
}

.btn-prev {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.1);
	cursor: not-allowed;
}

.btn-prev.enabled {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 182, 193, 0.15) 100%);
	color: white;
	border: 2px solid rgba(255, 182, 193, 0.3);
	cursor: pointer;
}

.btn-prev.enabled:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 182, 193, 0.2) 100%);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(255, 182, 193, 0.3);
}

.btn-complete {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.3) 0%, rgba(168, 85, 247, 0.3) 100%);
	color: rgba(255, 255, 255, 0.5);
	cursor: not-allowed;
	border: 2px solid rgba(255, 77, 141, 0.2);
}

.btn-complete.enabled {
	background: var(--gradient-romantic);
	color: white;
	cursor: pointer;
	border: 2px solid transparent;
	box-shadow: 0 8px 25px rgba(255, 77, 141, 0.3);
}

.btn-complete.enabled:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 77, 141, 0.4);
}

.completion-section {
	display: none;
}

/* Стили для навигационных точек */
.nav-dot {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.08);
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-smooth);
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.1rem;
	font-weight: 600;
	flex-shrink: 0;
	box-sizing: border-box;
}

.nav-dot:hover {
	background: rgba(255, 182, 193, 0.15);
	border-color: rgba(255, 77, 141, 0.4);
	transform: scale(1.1);
	color: white;
}

.nav-dot.active {
	background: var(--gradient-romantic);
	border-color: #FF4D8D;
	color: white;
	transform: scale(1.2);
	box-shadow: 0 0 25px rgba(255, 77, 141, 0.4);
}

.nav-dot.answered {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(102, 187, 106, 0.2) 100%);
	border-color: rgba(76, 175, 80, 0.4);
	color: #A5D6A7;
}

.nav-dot.answered.active {
	background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
	border-color: #4CAF50;
	color: white;
}

/* Стили для info-box на странице share */
.share-page .info-box {
	margin: 50px auto;
	max-width: 650px;
	padding: 40px;
	text-align: center;
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
	border: var(--border-romantic);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-romantic);
	box-sizing: border-box;
}

.share-page .info-box i {
	font-size: 4rem;
	color: var(--hot-pink);
	margin-bottom: 25px;
	display: block;
	animation: float 3s ease-in-out infinite;
}

.share-page .info-box h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: white;
	background: var(--gradient-romantic);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.share-page .info-box p {
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 30px;
	line-height: 1.7;
	font-size: 1.2rem;
}

.share-page .btn-same-device {
	background: var(--gradient-romantic);
	color: white;
	text-decoration: none;
	padding: 18px 40px;
	border-radius: var(--radius-md);
	font-size: 1.2rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: var(--transition-smooth);
	border: 2px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 10px 30px rgba(255, 77, 141, 0.3);
	box-sizing: border-box;
}

.share-page .btn-same-device:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 20px 45px rgba(255, 77, 141, 0.4);
	border-color: rgba(255, 255, 255, 0.25);
}

/* Анимация для плавного появления */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.test-container > * {
	animation: fadeIn 0.5s ease;
}

/* Индикатор проверки партнера */
.partner-check-container {
	text-align: center;
	margin: 40px auto;
	max-width: 600px;
	padding: 30px;
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
	border: var(--border-romantic);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(10px);
	box-sizing: border-box;
}

.partner-check-container i {
	font-size: 3.5rem;
	color: var(--hot-pink);
	margin-bottom: 20px;
	display: block;
	animation: heartbeat 1.5s infinite;
}

.partner-check-container h3 {
	font-size: 1.6rem;
	margin-bottom: 15px;
	color: white;
	background: var(--gradient-romantic);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.partner-check-container p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	font-size: 1.1rem;
}

.check-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.check-progress .spinner {
	width: 24px;
	height: 24px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top: 3px solid var(--hot-pink);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	flex-shrink: 0;
}

/* Стили для share-buttons */
.share-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 30px 0;
}

/* Стили для страницы результатов */
.results-share-section {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
	border: var(--border-romantic);
	border-radius: var(--radius-xl);
	padding: 35px;
	margin: 40px auto;
	text-align: center;
	backdrop-filter: blur(10px);
	max-width: 800px;
	box-sizing: border-box;
}

.results-share-section h3 {
	font-size: 1.8rem;
	margin-bottom: 25px;
	color: white;
	background: var(--gradient-romantic);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.results-link-display {
	font-family: 'Courier New', monospace;
	font-size: 1.2rem;
	background: rgba(0, 0, 0, 0.25);
	padding: 20px;
	border-radius: var(--radius-md);
	margin: 25px 0;
	letter-spacing: 1px;
	color: var(--hot-pink);
	border: 2px solid rgba(255, 77, 141, 0.4);
	word-break: break-all;
	text-align: left;
	line-height: 1.6;
	box-sizing: border-box;
	overflow-x: auto;
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
	.navigation-buttons {
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
		padding: 20px 0;
	}

	.btn-prev,
	.btn-complete {
		width: 100%;
		min-width: auto;
		height: 52px;
		max-width: 100%;
	}

	.nav-dot {
		width: 42px;
		height: 42px;
		font-size: 1rem;
	}

	.share-page .info-box {
		margin: 40px 20px;
		padding: 30px 20px;
	}

	.share-page .btn-same-device {
		width: 100%;
		justify-content: center;
		padding: 16px 24px;
	}

	.partner-check-container {
		margin: 30px 20px;
		padding: 25px 20px;
	}

	.partner-check-container i {
		font-size: 3rem;
	}

	.share-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-share-social {
		width: 100%;
		max-width: 300px;
	}

	.results-share-section {
		margin: 30px 20px;
		padding: 25px 20px;
	}

	.results-link-display {
		font-size: 1rem;
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.btn-prev,
	.btn-complete {
		padding: 14px 20px;
		font-size: 1rem;
		height: 48px;
	}

	.nav-dot {
		width: 38px;
		height: 38px;
		font-size: 0.9rem;
	}

	.share-page .info-box {
		padding: 25px 15px;
	}

	.share-page .info-box h3 {
		font-size: 1.5rem;
	}

	.share-page .info-box p {
		font-size: 1.1rem;
	}

	.btn-share-social {
		width: 100%;
		margin-bottom: 10px;
	}
}

/* Стили для breadcrumb (хлебных крошек) */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 30px;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	max-width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;
	display: inline-block;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumb a:hover {
	color: #FF4D8D;
	background: rgba(255, 77, 141, 0.1);
}

.breadcrumb span {
	color: #FF4D8D;
	font-weight: 600;
	padding: 4px 8px;
	white-space: nowrap;
	display: inline-block;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumb .separator {
	color: rgba(255, 255, 255, 0.4);
	margin: 0 2px;
	font-size: 12px;
}

/* Скрытый breadcrumb для микроразметки */
.visually-hidden[itemprop="breadcrumb"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	display: block !important;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
	.breadcrumb {
		padding: 12px 15px;
		gap: 6px;
		margin: 15px 0 25px;
	}

	.breadcrumb a,
	.breadcrumb span {
		padding: 3px 6px;
		font-size: 13px;
		max-width: 150px;
	}

	.breadcrumb .separator {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.breadcrumb {
		padding: 10px 12px;
		gap: 4px;
		flex-wrap: wrap;
		max-height: 60px;
		overflow-y: auto;
	}

	.breadcrumb a,
	.breadcrumb span {
		padding: 2px 4px;
		font-size: 12px;
		max-width: 120px;
	}

	/* Альтернативный компактный вариант для очень маленьких экранов */
	.breadcrumb.compact {
		flex-direction: column;
		align-items: flex-start;
		max-height: none;
	}

	.breadcrumb.compact .separator {
		display: none;
	}

	.breadcrumb.compact a,
	.breadcrumb.compact span {
		display: block;
		width: 100%;
		padding: 3px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		max-width: 100%;
	}

	.breadcrumb.compact a:last-child,
	.breadcrumb.compact span:last-child {
		border-bottom: none;
	}
}

/* Дополнительные стили для предотвращения расползания */
.breadcrumb-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.breadcrumb-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	min-height: 44px;
}

/* Если хлебные крошки все равно расползаются, можно использовать этот вариант */
.breadcrumb-fixed {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min-content, max-content));
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 77, 141, 0.5) rgba(255, 255, 255, 0.1);
	padding-bottom: 5px;
	box-sizing: border-box;
}

.breadcrumb-fixed::-webkit-scrollbar {
	height: 4px;
}

.breadcrumb-fixed::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
}

.breadcrumb-fixed::-webkit-scrollbar-thumb {
	background: rgba(255, 77, 141, 0.5);
	border-radius: 2px;
}

/* Для очень длинных ссылок */
.breadcrumb .truncate {
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
}

/* Иконки для breadcrumb */
.breadcrumb i {
	margin-right: 5px;
	font-size: 12px;
}

/* Активный пункт breadcrumb */
.breadcrumb .current {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.15), rgba(168, 85, 247, 0.15));
	border: 1px solid rgba(255, 77, 141, 0.3);
	border-radius: 6px;
}

/* ===== СТИЛИ ДЛЯ БАННЕРОВ ===== */
/* Верхний баннер игры */
.game-banner-promo {
	max-width: 800px;
	margin: 30px auto 40px;
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
	border: var(--border-romantic);
	border-radius: var(--radius-xl);
	padding: 25px;
	position: relative;
	box-shadow: 0 0 30px rgba(255, 77, 141, 0.15);
	backdrop-filter: blur(10px);
	box-sizing: border-box;
}

.game-banner-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	z-index: 10;
	flex-shrink: 0;
}

.game-banner-close:hover {
	background: rgba(255, 77, 141, 0.2);
	color: white;
	transform: rotate(90deg);
}

/* Нижний баннер игры с кнопкой закрытия */
.game-banner-bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, rgba(26, 11, 46, 0.98) 0%, rgba(15, 5, 25, 0.98) 100%);
	border-top: var(--border-passion);
	padding: 12px 0;
	z-index: 999;
	backdrop-filter: blur(10px);
	box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
	box-sizing: border-box;
}

.game-banner-bottom.hidden {
	transform: translateY(100%);
}

.game-banner-bottom-close {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 12px;
	flex-shrink: 0;
}

.game-banner-bottom-close:hover {
	background: rgba(255, 77, 141, 0.2);
	color: white;
	transform: translateY(-50%) rotate(90deg);
}

/* Стили для вопросов на мобильных */
@media (max-width: 768px) {
	.answer-option {
		padding: 10px 12px;
		margin: 5px 0;
		box-sizing: border-box;
	}

	.answer-letter {
		display: none !important;
	}

	.answer-content {
		padding-left: 0;
	}

	.answer-text {
		padding-left: 8px;
	}

	.question-block {
		padding: 15px;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.answer-option {
		padding: 8px 10px;
		margin: 4px 0;
	}

	.question-block {
		padding: 12px 8px;
	}

	.navigation-buttons {
		margin-top: 20px;
		padding: 15px 0;
	}

	.btn-prev,
	.btn-complete {
		padding: 12px 16px;
		height: 44px;
		font-size: 0.95rem;
	}
}

/* Стили для страницы share */
.share-header {
	text-align: center;
	margin-bottom: 40px;
	padding-top: 20px !important;
}

.link-display {
	font-family: 'Courier New', monospace;
	font-size: 1.1rem;
	background: rgba(0, 0, 0, 0.25);
	padding: 20px;
	border-radius: var(--radius-md);
	margin: 20px 0;
	letter-spacing: 0.5px;
	color: var(--hot-pink);
	border: 2px solid rgba(255, 77, 141, 0.4);
	word-break: break-all;
	text-align: center;
	line-height: 1.6;
	max-width: 100%;
	overflow-x: auto;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.link-display {
		margin: 15px 10px;
		padding: 15px;
		font-size: 0.95rem;
	}

	.btn-copy {
		width: calc(100% - 20px);
		margin: 0 10px;
	}

	.share-page .info-box i {
		font-size: 3rem;
		margin: 0 auto 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFB6C1;
		filter: drop-shadow(0 0 10px rgba(255, 182, 193, 0.6));
	}

	.partner-check-container {
		margin: 30px 15px;
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.link-display {
		padding: 12px;
		font-size: 0.9rem;
	}
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ РЕЗУЛЬТАТОВ ===== */
/* Кнопка печати */
.print-section {
	text-align: center;
	margin: 40px 0;
}

.print-instruction {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 77, 141, 0.2);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	box-sizing: border-box;
}

.btn-print {
	background: linear-gradient(135deg, #25aae1 0%, #4481eb 100%);
	color: white;
	border: none;
	padding: 16px 32px;
	border-radius: var(--radius-md);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(37, 170, 225, 0.3);
	box-sizing: border-box;
}

.btn-print:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(37, 170, 225, 0.4);
}

/* Модальное окно для печати грамоты */
.print-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	box-sizing: border-box;
}

.print-modal.active {
	display: flex;
	opacity: 1;
}

.certificate {
	width: 210mm;
	height: 297mm;
	background: white;
	border-radius: 15px;
	padding: 40mm;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	position: relative;
	overflow: hidden;
	transform: scale(0.8);
	animation: zoomIn 0.5s ease forwards;
	box-sizing: border-box;
}

@keyframes zoomIn {
	to {
		transform: scale(1);
	}
}

.certificate::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 90%, rgba(255, 77, 141, 0.1) 90%),
		linear-gradient(-45deg, transparent 90%, rgba(168, 85, 247, 0.1) 90%);
	pointer-events: none;
}

.certificate-header {
	text-align: center;
	margin-bottom: 20mm;
	position: relative;
}

.certificate-title {
	font-size: 36px;
	color: #FF4D8D;
	margin-bottom: 10mm;
	font-weight: 700;
}

.certificate-subtitle {
	font-size: 24px;
	color: #333;
	margin-bottom: 5mm;
}

.certificate-score {
	font-size: 72px;
	font-weight: 900;
	color: #FF4D8D;
	margin: 15mm 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.certificate-compatibility {
	font-size: 24px;
	color: #666;
	margin-bottom: 10mm;
}

.certificate-categories {
	margin: 15mm 0;
}

.certificate-category {
	margin-bottom: 5mm;
	font-size: 16px;
	color: #333;
}

.certificate-category strong {
	color: #FF4D8D;
}

.certificate-advice {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
	padding: 10mm;
	border-radius: 10px;
	margin-top: 15mm;
	border-left: 5px solid #FF4D8D;
}

.certificate-advice h4 {
	color: #FF4D8D;
	margin-bottom: 5mm;
	font-size: 20px;
}

.certificate-footer {
	text-align: center;
	margin-top: 20mm;
	color: #666;
	font-size: 14px;
}

.certificate-date {
	margin-top: 5mm;
	color: #999;
}

.print-actions {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-print-certificate,
.btn-close-certificate {
	padding: 12px 24px;
	border-radius: var(--radius-md);
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
	box-sizing: border-box;
}

.btn-print-certificate {
	background: var(--gradient-romantic);
	color: white;
}

.btn-close-certificate {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

@media print {
	body * {
		visibility: hidden;
	}

	.certificate,
	.certificate * {
		visibility: visible;
	}

	.certificate {
		position: absolute;
		left: 0;
		top: 0;
		width: 210mm;
		height: 297mm;
		transform: scale(1);
		box-shadow: none;
		border-radius: 0;
	}

	.print-actions {
		display: none;
	}
}

@media (max-width: 768px) {
	.certificate {
		width: 90vw;
		height: 127.3vw;
		padding: 30px;
		transform: scale(0.7);
	}

	.certificate-title {
		font-size: 28px;
	}

	.certificate-score {
		font-size: 56px;
	}

	.print-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-print-certificate,
	.btn-close-certificate {
		width: 200px;
	}
}

/* Стили для вопросов на мобильных */
@media (max-width: 768px) {
	.answer-option {
		padding: 10px 12px;
		margin: 5px 0;
	}

	.answer-letter {
		display: none !important;
	}

	.answer-content {
		padding-left: 0;
	}

	.answer-text {
		padding-left: 8px;
	}

	.question-block {
		padding: 15px;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.answer-option {
		padding: 8px 10px;
		margin: 4px 0;
	}

	.question-block {
		padding: 12px 8px;
	}

	.navigation-buttons {
		margin-top: 20px;
		padding: 15px 0;
	}

	.btn-prev,
	.btn-complete {
		padding: 12px 16px;
		height: 44px;
		font-size: 0.95rem;
	}

	.nav-dot {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}
}

/* Стили для страницы share на мобильных */
@media (max-width: 768px) {
	.link-display {
		margin: 10px 0;
		padding: 12px;
		font-size: 0.9rem;
		margin-left: 5px;
		margin-right: 5px;
	}

	.btn-copy {
		width: calc(100% - 10px);
		margin: 0 5px;
		padding: 12px;
	}

	.share-page .info-box {
		margin: 20px 10px;
		padding: 20px 15px;
	}

	.partner-check-container {
		margin: 20px 10px;
		padding: 15px 10px;
	}
}

@media (max-width: 480px) {
	.link-display {
		padding: 10px;
		font-size: 0.85rem;
		margin-left: 0;
		margin-right: 0;
	}

	.share-buttons {
		gap: 10px;
	}

	.btn-share-social {
		padding: 14px;
		margin-bottom: 8px;
	}

	.results-share-section {
		margin: 20px 10px;
		padding: 20px 15px;
	}

	.results-link-display {
		padding: 12px;
		font-size: 0.9rem;
	}
}

/* Дополнительные оптимизации для мобильных */
@media (max-width: 768px) {
	.test-start {
		padding: 15px 10px 25px;
	}

	.test-info {
		gap: 10px;
		margin: 20px 0;
	}

	.test-info .info-card {
		padding: 15px;
	}

	.gender-icon {
		width: 80px;
		height: 80px;
	}

	.gender-icon i {
		font-size: 2rem;
	}
}

/* Исправление для хлебных крошек на мобильных */
@media (max-width: 768px) {
	.breadcrumb {
		padding: 10px 12px;
		margin: 10px 0 15px;
	}
}

/* ===== СПЕЦИФИЧНЫЕ СТИЛИ ДЛЯ ТЕСТА СЕКСУАЛЬНЫХ ПРЕДПОЧТЕНИЙ ===== */

/* Предупреждение о возрастном ограничении */
.age-warning {
	background: linear-gradient(135deg, rgba(244, 67, 54, 0.15), rgba(229, 57, 53, 0.15));
	border: 2px solid rgba(244, 67, 54, 0.4);
	border-radius: var(--radius-xl);
	padding: 25px;
	margin: 30px auto;
	max-width: 800px;
	text-align: center;
	box-sizing: border-box;
}

.age-warning i {
	font-size: 3rem;
	color: #f44336;
	margin-bottom: 15px;
	display: block;
}

.age-warning h3 {
	color: white;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.age-warning p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 1.1rem;
}

/* Стили для категорий теста */
.category-tag {
	display: inline-block;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0 5px 10px 0;
	box-sizing: border-box;
}

.tag-sensual {
	background: rgba(255, 107, 139, 0.2);
	color: #FF6B8B;
	border: 1px solid rgba(255, 107, 139, 0.4);
}

.tag-oral {
	background: rgba(78, 205, 196, 0.2);
	color: #4ECDC4;
	border: 1px solid rgba(78, 205, 196, 0.4);
}

.tag-anal {
	background: rgba(69, 183, 209, 0.2);
	color: #45B7D1;
	border: 1px solid rgba(69, 183, 209, 0.4);
}

.tag-bdsm {
	background: rgba(168, 85, 247, 0.2);
	color: #A855F7;
	border: 1px solid rgba(168, 85, 247, 0.4);
}

.tag-roleplay {
	background: rgba(255, 234, 167, 0.2);
	color: #FFEAA7;
	border: 1px solid rgba(255, 234, 167, 0.4);
}

.tag-fetishes {
	background: rgba(150, 206, 180, 0.2);
	color: #96CEB4;
	border: 1px solid rgba(150, 206, 180, 0.4);
}

/* Карточка сексуального типа */
.sexual-type-card {
	background: linear-gradient(135deg, rgba(255, 77, 141, 0.15), rgba(168, 85, 247, 0.15));
	border: var(--border-romantic);
	border-radius: var(--radius-xl);
	padding: 30px;
	margin: 30px auto;
	max-width: 800px;
	text-align: center;
	box-sizing: border-box;
}

.sexual-type-icon {
	font-size: 4rem;
	color: #FF4D8D;
	margin-bottom: 20px;
}

.sexual-type-title {
	font-size: 1.8rem;
	background: var(--gradient-romantic);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
}

.sexual-type-description {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 1.1rem;
	margin-bottom: 20px;
}

/* Карта исследований для пары */
.exploration-map {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.exploration-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: 25px;
	text-align: center;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.exploration-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
}

.exploration-status {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 15px;
	box-sizing: border-box;
}

.status-excellent {
	background: rgba(76, 175, 80, 0.2);
	color: #4CAF50;
}

.status-good {
	background: rgba(255, 193, 7, 0.2);
	color: #FFC107;
}

.status-average {
	background: rgba(255, 152, 0, 0.2);
	color: #FF9800;
}

.status-needs-discussion {
	background: rgba(244, 67, 54, 0.2);
	color: #f44336;
}

.exploration-category {
	font-size: 1.2rem;
	color: white;
	margin-bottom: 10px;
	font-weight: 600;
}

.exploration-advice {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Безопасность и согласие */
.safety-section {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(102, 187, 106, 0.1));
	border: 1px solid rgba(76, 175, 80, 0.3);
	border-radius: var(--radius-xl);
	padding: 30px;
	margin: 40px auto;
	max-width: 800px;
	box-sizing: border-box;
}

.safety-section h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	margin-bottom: 25px;
	font-size: 1.5rem;
	flex-wrap: wrap;
}

.safety-section i {
	color: #4CAF50;
}

.safety-list {
	list-style: none;
	padding: 0;
}

.safety-item {
	margin-bottom: 15px;
	padding-left: 35px;
	position: relative;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.safety-item:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #4CAF50;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Анализ рисков */
.risk-analysis {
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.1));
	border: 1px solid rgba(255, 152, 0, 0.3);
	border-radius: var(--radius-lg);
	padding: 25px;
	margin: 30px 0;
	box-sizing: border-box;
}

.risk-analysis h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.risk-analysis i {
	color: #FF9800;
}

.risk-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
}

.risk-item {
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	padding: 15px;
	box-sizing: border-box;
}

.risk-level {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 8px;
	box-sizing: border-box;
}

.level-low {
	background: rgba(76, 175, 80, 0.2);
	color: #4CAF50;
}

.level-medium {
	background: rgba(255, 193, 7, 0.2);
	color: #FFC107;
}

.level-high {
	background: rgba(244, 67, 54, 0.2);
	color: #f44336;
}

/* Прогресс эксперимента */
.progress-experiment {
	margin: 40px 0;
}

.experiment-steps {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.experiment-steps:before {
	content: '';
	position: absolute;
	top: 25px;
	left: 10%;
	right: 10%;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	z-index: 1;
}

.experiment-step {
	position: relative;
	z-index: 2;
	text-align: center;
	flex: 1;
	min-width: 80px;
}

.step-circle {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.step-circle.completed {
	background: var(--gradient-romantic);
	color: white;
}

.step-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Кнопки для экспериментов */
.experiment-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin: 30px 0;
}

.btn-experiment {
	padding: 15px 25px;
	border-radius: var(--radius-md);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition-smooth);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	box-sizing: border-box;
}

.btn-experiment.safe {
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
	color: white;
}

.btn-experiment.explore {
	background: linear-gradient(135deg, #2196F3, #1976D2);
	color: white;
}

.btn-experiment.advanced {
	background: linear-gradient(135deg, #FF9800, #F57C00);
	color: white;
}

.btn-experiment:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
	.exploration-map {
		grid-template-columns: 1fr;
	}
	
	.experiment-steps {
		flex-direction: column;
		gap: 30px;
	}
	
	.experiment-steps:before {
		display: none;
	}
	
	.experiment-step {
		display: flex;
		align-items: center;
		gap: 20px;
		text-align: left;
	}
	
	.step-circle {
		margin: 0;
		flex-shrink: 0;
	}
	
	.experiment-buttons {
		flex-direction: column;
	}
	
	.btn-experiment {
		width: 100%;
		justify-content: center;
	}
}

/* Иконки для категорий */
.category-icon-sensual {
	color: #FF6B8B !important;
}

.category-icon-oral {
	color: #4ECDC4 !important;
}

.category-icon-anal {
	color: #45B7D1 !important;
}

.category-icon-bdsm {
	color: #A855F7 !important;
}

.category-icon-roleplay {
	color: #FFEAA7 !important;
}

.category-icon-fetishes {
	color: #96CEB4 !important;
}

/* Градиенты для диаграмм */
.chart-gradient-sensual {
	background: linear-gradient(135deg, #FF6B8B, #FF8E9E);
}

.chart-gradient-oral {
	background: linear-gradient(135deg, #4ECDC4, #6EDBD3);
}

.chart-gradient-anal {
	background: linear-gradient(135deg, #45B7D1, #65CFE8);
}

.chart-gradient-bdsm {
	background: linear-gradient(135deg, #A855F7, #C27BFF);
}

.chart-gradient-roleplay {
	background: linear-gradient(135deg, #FFEAA7, #FFF4D1);
}

.chart-gradient-fetishes {
	background: linear-gradient(135deg, #96CEB4, #B4E4CC);
}

/* Стили для ответов с предупреждениями */
.answer-warning {
	background: rgba(244, 67, 54, 0.1);
	border: 1px solid rgba(244, 67, 54, 0.3);
	border-radius: var(--radius-md);
	padding: 15px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.answer-warning i {
	color: #f44336;
}

/* Конфиденциальность */
.privacy-notice {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 20px;
	margin: 30px 0;
	text-align: center;
	box-sizing: border-box;
}

.privacy-notice i {
	color: #4CAF50;
	font-size: 2rem;
	margin-bottom: 15px;
	display: block;
}

.privacy-notice p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Индикатор риска */
.risk-indicator {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-left: 10px;
	box-sizing: border-box;
}

.risk-low {
	background: rgba(76, 175, 80, 0.2);
	color: #4CAF50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.risk-medium {
	background: rgba(255, 193, 7, 0.2);
	color: #FFC107;
	border: 1px solid rgba(255, 193, 7, 0.3);
}

.risk-high {
	background: rgba(244, 67, 54, 0.2);
	color: #f44336;
	border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Карточка предпочтений */
.preference-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 25px;
	margin-bottom: 20px;
	transition: var(--transition-smooth);
	box-sizing: border-box;
}

.preference-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 77, 141, 0.3);
}

.preference-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	flex-wrap: wrap;
	gap: 10px;
}

.preference-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.3rem;
	color: white;
	font-weight: 600;
}

.preference-percentage {
	font-size: 1.8rem;
	font-weight: 700;
	color: #FF4D8D;
	flex-shrink: 0;
}

.preference-description {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 15px;
	font-size: 1rem;
}

.preference-recommendation {
	background: rgba(255, 77, 141, 0.1);
	border-left: 3px solid #FF4D8D;
	padding: 15px;
	border-radius: 0 5px 5px 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	box-sizing: border-box;
}

/* Поле для сложных вопросов */
.sensitive-question {
	position: relative;
	margin: 20px 0;
}

.sensitive-question .question-text {
	color: #FF9800;
	font-weight: 600;
}

.sensitive-question .answer-option {
	border: 1px solid rgba(255, 152, 0, 0.3);
}

.sensitive-question .answer-option:hover {
	border-color: rgba(255, 152, 0, 0.6);
	background: rgba(255, 152, 0, 0.1);
}

/* Модальное окно для деталей */
.exploration-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: fadeIn 0.3s ease;
	box-sizing: border-box;
}

.exploration-modal.active {
	display: flex;
}

.exploration-modal-content {
	background: rgba(40, 20, 70, 0.95);
	border-radius: var(--radius-xl);
	padding: 40px;
	max-width: 600px;
	width: 100%;
	border: var(--border-romantic);
	position: relative;
	animation: slideUp 0.4s ease;
	box-sizing: border-box;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.modal-close:hover {
	background: rgba(255, 77, 141, 0.2);
	color: white;
	transform: rotate(90deg);
}

/* Индикатор завершенности */
.completion-indicator {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	background: rgba(76, 175, 80, 0.1);
	border: 1px solid rgba(76, 175, 80, 0.3);
	border-radius: var(--radius-md);
	margin: 20px 0;
	box-sizing: border-box;
	flex-wrap: wrap;
}

.completion-indicator i {
	color: #4CAF50;
}

.completion-indicator span {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

/* Стили для страницы результатов */
.results-warning {
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 193, 7, 0.15));
	border: 2px solid rgba(255, 152, 0, 0.4);
	border-radius: var(--radius-lg);
	padding: 20px;
	margin: 20px 0;
	box-sizing: border-box;
}

.results-warning i {
	color: #FF9800;
	margin-right: 10px;
}

.results-warning strong {
	color: white;
}

/* Анимации */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

.pulse-animation {
	animation: pulse 2s infinite;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.slide-in-left {
	animation: slideInLeft 0.5s ease;
}

/* Цветовая схема для уровней совместимости */
.compatibility-excellent {
	color: #4CAF50;
	background: rgba(76, 175, 80, 0.1);
	border-color: rgba(76, 175, 80, 0.3);
}

.compatibility-good {
	color: #FFC107;
	background: rgba(255, 193, 7, 0.1);
	border-color: rgba(255, 193, 7, 0.3);
}

.compatibility-average {
	color: #FF9800;
	background: rgba(255, 152, 0, 0.1);
	border-color: rgba(255, 152, 0, 0.3);
}

.compatibility-poor {
	color: #f44336;
	background: rgba(244, 67, 54, 0.1);
	border-color: rgba(244, 67, 54, 0.3);
}

/* Стили для прогресс-бара категорий */
.category-progress {
	margin: 15px 0;
	position: relative;
	width: 100%;
}

.category-progress .progress-bar {
	height: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
}

.category-progress .progress-fill {
	height: 100%;
	border-radius: 5px;
	transition: width 1s ease-in-out;
}

.progress-sensual {
	background: linear-gradient(90deg, #FF6B8B, #FF8E9E);
}

.progress-oral {
	background: linear-gradient(90deg, #4ECDC4, #6EDBD3);
}

.progress-anal {
	background: linear-gradient(90deg, #45B7D1, #65CFE8);
}

.progress-bdsm {
	background: linear-gradient(90deg, #A855F7, #C27BFF);
}

.progress-roleplay {
	background: linear-gradient(90deg, #FFEAA7, #FFF4D1);
}

.progress-fetishes {
	background: linear-gradient(90deg, #96CEB4, #B4E4CC);
}

/* Стили для мобильных устройств */
@media (max-width: 480px) {
	.preference-card {
		padding: 20px 15px;
	}
	
	.preference-title {
		font-size: 1.1rem;
	}
	
	.preference-percentage {
		font-size: 1.5rem;
	}
	
	.exploration-modal-content {
		padding: 20px 15px;
	}
	
	.sexual-type-card {
		padding: 20px 15px;
	}
	
	.sexual-type-icon {
		font-size: 3rem;
	}
	
	.sexual-type-title {
		font-size: 1.5rem;
	}
}

/* Специальные стили для темы */
.sexual-preferences-theme {
	--hot-pink: #FF4D8D;
	--purple: #A855F7;
	--blue: #4285F4;
	--green: #34A853;
	--yellow: #FFC107;
	--orange: #FF9800;
	--red: #f44336;
	
	--gradient-romantic: linear-gradient(135deg, var(--hot-pink), var(--purple));
	--gradient-passion: linear-gradient(135deg, var(--red), var(--orange));
	--gradient-exploration: linear-gradient(135deg, var(--blue), var(--green));
	--gradient-sensual: linear-gradient(135deg, #FF6B8B, #FF8E9E);
	
	--border-romantic: 1px solid rgba(255, 77, 141, 0.3);
	--border-passion: 1px solid rgba(244, 67, 54, 0.3);
	--border-exploration: 1px solid rgba(66, 133, 244, 0.3);
	
	--shadow-romantic: 0 10px 30px rgba(255, 77, 141, 0.2);
	--shadow-passion: 0 10px 30px rgba(244, 67, 54, 0.2);
	--shadow-exploration: 0 10px 30px rgba(66, 133, 244, 0.2);
}

/* Переопределение стандартных стилей для темы */
.sexual-preferences-theme .text-gradient {
	background: var(--gradient-romantic);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sexual-preferences-theme .btn-start {
	background: var(--gradient-passion);
}

.sexual-preferences-theme .btn-start:hover {
	box-shadow: var(--shadow-passion);
}

.sexual-preferences-theme .progress-fill {
	background: var(--gradient-romantic);
}

.sexual-preferences-theme .nav-dot.active {
	background: var(--gradient-passion);
}

.sexual-preferences-theme .answer-option input:checked + .answer-content {
	background: rgba(255, 77, 141, 0.1);
	border-color: var(--hot-pink);
}

.sexual-preferences-theme .btn-complete.enabled {
	background: var(--gradient-exploration);
}

.sexual-preferences-theme .btn-complete.enabled:hover {
	box-shadow: var(--shadow-exploration);
}