/* ==== Reset + Body ==== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: url('../img/bg.jpg') no-repeat center center fixed;
	background-size: cover;
	color: #fff;
	line-height: 1.6;
}

/* ==== Header ==== */
.main-header {
	position: fixed;
	width: 100%;
	top: 0;
	background-color: rgba(248, 245, 245, 0.95);
	z-index: 1000;
}

.main-header .container {
	max-width: 1200px;
	margin: auto;
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #ff5405;
	text-decoration: none;
}

.logo img {
	max-height: 40px;
}

.desktop-menu {
	display: flex;
	gap: 1.5rem;
}

.desktop-menu a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.desktop-menu a:hover {
	color: #ff5405;
}

.intro-banner {
	position: relative;
	background: linear-gradient(135deg, #1c1f24, #2e3238);
	color: #fff;
	padding: 100px 20px 80px;
	text-align: center;
	overflow: hidden;
}

.intro-wrapper {
	max-width: 950px;
	margin: 0 auto;
	animation: fadeInUp 1.4s ease-out both;
}

.intro-title {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	animation: slideInTop 1.2s ease-out both;
}

.intro-age-note {
	background-color: rgba(255, 255, 255, 0.08);
	display: inline-block;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 1.05rem;
	font-weight: 500;
	color: #ffd700;
	animation: fadeIn 2s ease-in both;
}

/* Анімації */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInTop {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Адаптивність */
@media (max-width: 768px) {
	.intro-title {
		font-size: 1.8rem;
	}
	.intro-age-note {
		font-size: 0.95rem;
		padding: 10px 16px;
	}
}

.review-card-wrapper {
	background: linear-gradient(135deg, #202326, #2b2f33);
	border-radius: 18px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
	padding: 22px 20px;
	text-align: center;
	color: #fff;

	max-width: 500px;
	margin: 50px auto 50px;
	animation: floatIn 1.2s ease-out both;
	transition: transform 0.3s ease;
}
.review-card-wrapper:hover {
	transform: translateY(-6px) scale(1.02);
}

.review-rank {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffd700;
	margin-bottom: 15px;
	animation: fadeInSlideDown 1s ease-out;
}

.review-logo img {
	max-width: 250px;
	margin-bottom: 12px;
	animation: zoomIn 1.4s ease-out;
}

.review-bonus {
	margin-bottom: 18px;
}
.bonus-main {
	font-size: 1.3rem;
	font-weight: 600;
}
.bonus-main span {
	color: #00ffae;
	font-weight: 900;
}
.bonus-extra {
	font-size: 1.05rem;
	color: #ffc107;
	margin-top: 5px;
}

.review-rating {
	margin-bottom: 20px;
}
.rating-score {
	font-size: 2rem;
	font-weight: bold;
	color: #00ffa0;
}
.rating-stars {
	color: gold;
	font-size: 1.4rem;
}
.rating-votes {
	font-size: 0.95rem;
	color: #ccc;
}

.review-action .review-btn {
	background-color: #00ffae;
	color: #1c1e1f;
	font-weight: bold;
	padding: 10px 22px;
	border-radius: 12px;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s;
}
.review-action .review-btn:hover {
	background-color: #ffc107;
	color: #1c1e1f;
}

/* Анімації */
@keyframes floatIn {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@keyframes fadeInSlideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.6);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Адаптивність */
@media (max-width: 768px) {
	.review-card-wrapper {
		padding: 18px 15px;
	}
	.review-logo img {
		max-width: 100px;
	}
	.bonus-main {
		font-size: 1.1rem;
	}
	.rating-score {
		font-size: 1.6rem;
	}
}

.select-feature-wrap {
	padding: 80px 20px;
	background: #1f2123;
	color: #ffffff;
	overflow-x: hidden;
}

.select-feature-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.select-feature-heading {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 45px;
	animation: fadeSlideIn 1s ease forwards;
}

.select-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

.select-feature-box {
	background: #292c2e;
	padding: 25px;
	border-radius: 14px;
	text-align: center;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	animation: zoomInUp 1s ease forwards;
}
.select-feature-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}

.select-feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background: linear-gradient(135deg, #00ffae, #00caff);
	border-radius: 50%;
	box-shadow: 0 0 10px #00ffae88;
	animation: pulseIcon 1.8s infinite ease-in-out;
}

.select-feature-subtitle {
	font-size: 1.3rem;
	font-weight: 700;
	color: #00ffae;
	margin-bottom: 10px;
}
.select-feature-text {
	font-size: 1rem;
	color: #e0e0e0;
}

/* Анімації */
@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale(0.85) translateY(30px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}
@keyframes pulseIcon {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 10px #00ffae88;
	}
	50% {
		transform: scale(1.08);
		box-shadow: 0 0 20px #00ffaecc;
	}
}

/* Адаптивність */
@media (max-width: 768px) {
	.select-feature-heading {
		font-size: 1.6rem;
	}
	.select-feature-box {
		padding: 18px;
	}
	.select-feature-subtitle {
		font-size: 1.15rem;
	}
}

.help-request-section {
	padding: 70px 20px;
	background: #1a1d1f;
	color: #fff;
}

.help-request-wrapper {
	max-width: 700px;
	margin: 0 auto;
	background: #242628;
	padding: 35px 25px;
	border-radius: 16px;
	box-shadow: 0 6px 18px #0006;
	animation: fadeSlideUp 0.8s ease-in-out;
}

.help-request-title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 15px;
	color: #00ffd0;
	animation: fadeSlideUp 0.6s ease-in-out;
}

.help-request-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #ccc;
	margin-bottom: 30px;
	animation: fadeSlideUp 0.8s ease-in-out;
}

.help-request-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.help-request-field {
	display: flex;
	flex-direction: column;
	animation: fadeSlideUp 0.9s ease-in-out;
}

.help-request-field label {
	margin-bottom: 7px;
	font-weight: 600;
	color: #eee;
}

.help-request-field input,
.help-request-field textarea {
	padding: 12px 14px;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	background: #2e2f31;
	color: #fff;
	box-shadow: inset 0 0 3px #0005;
	transition: box-shadow 0.2s;
}

.help-request-field input:focus,
.help-request-field textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px #00ffd0aa;
}

.help-request-submit {
	margin-top: 15px;
	align-self: center;
	background: #00ffd0;
	color: #1a1d1f;
	padding: 12px 28px;
	border: none;
	border-radius: 12px;
	font-weight: 800;
	font-size: 1.1rem;
	cursor: pointer;
	transition:
		background 0.25s,
		transform 0.25s;
}

.help-request-submit:hover {
	background: #00bca1;
	transform: scale(1.04);
}

/* Анімація */
@keyframes fadeSlideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Адаптивність */
@media (max-width: 480px) {
	.help-request-title {
		font-size: 1.6rem;
	}
	.help-request-submit {
		width: 100%;
	}
}

.bas-zone {
	background-color: #0b0b0b;
	color: #fff;
	padding: 60px 20px 30px 20px;
	font-family: 'Segoe UI', sans-serif;
	animation: fadeUp 1.2s ease-in-out;
}

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

.contenu-pied {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.bloc-identite .logo-footer {
	font-size: 24px;
	font-weight: bold;
	color: var(--primary, #4aff99);
	text-decoration: none;
}

.bloc-liens-legaux ul {
	list-style: none;
	padding: 0;
}

.bloc-liens-legaux a {
	color: #ccc;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.bloc-liens-legaux a:hover {
	color: var(--accent, #fff);
}

.bloc-contact p,
.bloc-contact a {
	font-size: 14px;
	color: #ccc;
	text-decoration: none;
}

.logos-certif {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.logos-certif img {
	max-height: 60px;
	opacity: 0.85;
	transition: transform 0.3s ease;
}

.logos-certif img:hover {
	transform: scale(1.05);
	opacity: 1;
}

.zone-prevention {
	margin: 40px auto 0;
	padding: 20px;
	border-top: 5px solid #ff5405;
	max-width: 600px;
}

.zone-prevention h3 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #fff;
}

.zone-prevention p {
	color: #ddd;
	font-size: 14px;
	line-height: 1.7;
}

.ligne-fin {
	text-align: center;
	margin-top: 30px;
	font-size: 13px;
	color: #888;
}

#cookieConsentBar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #1c1c1c;
	color: #fff;
	padding: 20px 15px;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
	animation: slideUp 0.5s ease-out;
	flex-wrap: wrap;
	font-family: 'Segoe UI', sans-serif;
}

.cookie-message {
	max-width: 900px;
	text-align: center;
}

.cookie-buttons {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.cookie-buttons button {
	background-color: #00d97e;
	color: #1c1c1c;
	border: none;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 1em;
	border-radius: 8px;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		transform 0.2s ease;
}

.cookie-buttons button:hover {
	background-color: #14c57d;
	transform: scale(1.05);
}

/* ❌ Відмова — окрема кнопка */
#declineCookieBtn {
	background-color: #f44336;
	color: #fff;
}

#declineCookieBtn:hover {
	background-color: #e0322c;
}

/* ✅ Анімація появи */
@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* ✅ Адаптивність */
@media (max-width: 600px) {
	.cookie-buttons {
		flex-direction: column;
	}
	.cookie-buttons button {
		width: 100%;
	}
}

/* Загальні стилі секції */
.section-feedback {
	padding: 100px 20px;

	animation: fadeIn 1s ease forwards;
}

/* Контейнер */
.feedback-wrapper {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
}

/* Дата */
.update-date {
	font-size: 12px;
	color: #777;
	margin-bottom: 10px;
}

/* Заголовок */
.feedback-title {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 25px;
	animation: slideUp 0.8s ease-out forwards;
}

/* Повідомлення */
.feedback-message {
	font-size: 18px;
	color: #333;
	background-color: #ffffff;

	padding: 15px 20px;
	margin: 0 auto 20px;
	max-width: 600px;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	animation: pulseIn 1s ease-in-out forwards;
}

/* Примітка */
.feedback-note {
	font-size: 16px;
	color: #fff;
	animation: fadeIn 1.5s ease-in 0.5s forwards;
}

/* Адаптивність */
@media (max-width: 768px) {
	.feedback-title {
		font-size: 26px;
	}

	.feedback-message {
		font-size: 16px;
	}

	.feedback-note {
		font-size: 15px;
	}
}

/* Анімації */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes pulseIn {
	0% {
		transform: scale(0.95);
		opacity: 0;
	}
	60% {
		transform: scale(1.02);
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}

.orentiva-privacy-section {
	font-family: 'Segoe UI', sans-serif;
	animation: fadeIn 0.8s ease;
	/* padding: 100px 20px; */
}

.orentiva-privacy-container {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 10px;
	background-color: #f9fafc;
	padding: 120px 20px;
}

.orentiva-privacy-title {
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	color: #2c3e50;
	margin-bottom: 30px;
}

.orentiva-privacy-intro {
	font-size: 17px;
	color: #444;
	margin-bottom: 25px;
	line-height: 1.6;
}

.orentiva-privacy-subtitle {
	font-size: 22px;
	color: #1a73e8;
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: 600;
}

.orentiva-privacy-container p {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.7;
}

.orentiva-privacy-date {
	font-weight: bold;
	color: #e74c3c;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.orentiva-privacy-title {
		font-size: 26px;
	}

	.orentiva-privacy-subtitle {
		font-size: 19px;
	}

	.orentiva-privacy-container p,
	.orentiva-privacy-intro {
		font-size: 15px;
	}
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.orentiva-jeu-responsable-section {
	font-family: 'Segoe UI', sans-serif;
	animation: fadeIn 1s ease;
}

.orentiva-jeu-responsable-wrapper {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
	padding: 110px 20px;
	background-color: #eef5fb;
}

.orentiva-jeu-responsable-title {
	font-size: 30px;
	color: #2c3e50;
	margin-bottom: 25px;
	font-weight: 700;
}

.orentiva-jeu-responsable-text {
	font-size: 17px;
	color: #444;
	margin-bottom: 30px;
	line-height: 1.6;
}

.orentiva-jeu-responsable-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.orentiva-jeu-responsable-item {
	background-color: #ffffff;

	margin: 10px auto;
	padding: 12px 18px;
	border-radius: 8px;
	max-width: 600px;
	color: #333;
	text-align: left;
	font-size: 16px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.orentiva-jeu-responsable-item:hover {
	transform: scale(1.02);
}

.orentiva-jeu-responsable-contact {
	font-size: 16px;
	color: #2c3e50;
	line-height: 1.6;
}

.orentiva-jeu-responsable-contact a {
	color: #1a73e8;
	text-decoration: underline;
}

.orentiva-jeu-responsable-contact strong {
	color: #e74c3c;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.orentiva-jeu-responsable-title {
		font-size: 24px;
	}

	.orentiva-jeu-responsable-text,
	.orentiva-jeu-responsable-item,
	.orentiva-jeu-responsable-contact {
		font-size: 15px;
	}
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.orentiva-cgu-section {
	font-family: 'Segoe UI', sans-serif;
	animation: fadeIn 1s ease-in;
}

.orentiva-cgu-container {
	max-width: 850px;
	margin: 0 auto;
	background-color: #f4f8fb;
	padding: 110px 20px;
}

.orentiva-cgu-title {
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	color: #1c355e;
	margin-bottom: 25px;
}

.orentiva-cgu-intro {
	font-size: 17px;
	color: #444;
	margin-bottom: 25px;
	line-height: 1.6;
}

.orentiva-cgu-subtitle {
	font-size: 22px;
	color: #1a73e8;
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: 600;
}

.orentiva-cgu-paragraph {
	font-size: 16px;
	color: #333;
	line-height: 1.7;
	margin-bottom: 20px;
}

.orentiva-cgu-update {
	font-size: 14px;
	color: #777;
	margin-top: 40px;
	text-align: right;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.orentiva-cgu-title {
		font-size: 26px;
	}

	.orentiva-cgu-subtitle {
		font-size: 19px;
	}

	.orentiva-cgu-paragraph,
	.orentiva-cgu-intro {
		font-size: 15px;
	}
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.orentiva-cookies-section {
	font-family: 'Segoe UI', sans-serif;
	animation: fadeIn 1s ease;
}

.orentiva-cookies-container {
	max-width: 850px;
	margin: 0 auto;
	background-color: #fdfefe;
	padding: 110px 20px;
}

.orentiva-cookies-title {
	font-size: 32px;
	font-weight: 700;
	color: #1c355e;
	margin-bottom: 25px;
	text-align: center;
}

.orentiva-cookies-intro {
	font-size: 17px;
	color: #444;
	margin-bottom: 25px;
	line-height: 1.6;
}

.orentiva-cookies-subtitle {
	font-size: 22px;
	color: #1a73e8;
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: 600;
}

.orentiva-cookies-paragraph {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.7;
}

.orentiva-cookies-list {
	list-style: disc inside;
	margin-bottom: 25px;
	padding-left: 15px;
	color: #333;
}

.orentiva-cookies-list li {
	margin-bottom: 10px;
	font-size: 16px;
}

.orentiva-cookies-update {
	font-size: 14px;
	color: #777;
	text-align: right;
	margin-top: 40px;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.orentiva-cookies-title {
		font-size: 26px;
	}

	.orentiva-cookies-subtitle {
		font-size: 19px;
	}

	.orentiva-cookies-paragraph,
	.orentiva-cookies-intro,
	.orentiva-cookies-list li {
		font-size: 15px;
	}
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
