@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* Header */
.site-header {
	background: linear-gradient(
		90deg,
		#0f2027,
		#203a43,
		#2c5364
	); /* темний градієнт */
	padding: 20px;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center; /* Лого по центру */
}

/* Logo Text */
.logo-text {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff88);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 2px;
	position: relative;
	transition: transform 0.3s ease;
}

/* Ефект світіння */
.logo-text::after {
	content: 'Lisencoro';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	color: rgba(0, 255, 200, 0.3);
	filter: blur(8px);
}

/* Hover effect */
.logo-text:hover {
	transform: scale(1.1) rotate(-2deg);
	text-shadow:
		0 0 10px #00f5ff,
		0 0 20px #ff00ff,
		0 0 30px #00ff88;
}

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

@media (max-width: 480px) {
	.logo-text {
		font-size: 1.3rem;
	}
}

.hero-section {
	background: linear-gradient(
		135deg,
		#283e51,
		#485563
	); /* темно-сірий + синій */
	color: #f4f4f4;
	padding: 80px 20px;
	text-align: center;
}

.hero-container {
	max-width: 900px;
	margin: 0 auto;
}

.hero-section h1 {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.3;
}

.hero-section h1 .block {
	display: block;
}

.hero-section h1 .highlight {
	display: inline-block;
	background: linear-gradient(90deg, #ff9966, #ff5e62);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
}

.hero-section p {
	font-size: 1.1rem;
	margin: 20px auto 40px;
	max-width: 700px;
	color: #e0e0e0;
}

.hero-button a {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(90deg, #ff5e62, #ff9966);
	color: #fff;
	font-weight: bold;
	border-radius: 30px;
	text-decoration: none;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.hero-button a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(255, 94, 98, 0.6);
}

/* Адаптивність */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 1.8rem;
	}
	.hero-section p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.5rem;
	}
	.hero-button a {
		padding: 10px 20px;
		font-size: 0.95rem;
	}
}

.vantagens {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 70px 20px;
	text-align: center;
}

.vantagens h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 50px;
	color: #343a40;
}

.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	max-width: 1000px;
	margin: 0 auto;
}

.card {
	background: #fff;
	border-radius: 16px;
	padding: 30px 20px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card .icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.card-azul .icon {
	color: #0d6efd;
}

.card-roxo .icon {
	color: #6f42c1;
}

.card-laranja .icon {
	color: #fd7e14;
}

.card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #495057;
}

/* Адаптивність */
@media (min-width: 768px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
	.vantagens h2 {
		font-size: 2.2rem;
	}
}

.bonus-section {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 50px 20px;
}

.bonus-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	border: 2px solid #0d6efd;
	border-radius: 20px;
	padding: 30px;
	background: #ffffff;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.bonus-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.bonus-text h3 {
	font-size: 1.6rem;
	font-weight: 800;
	color: #212529;
	margin-bottom: 10px;
	text-align: center;
}

.rating {
	font-size: 1rem;
	font-weight: bold;
	color: #198754;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.bonus-logo img {
	height: 80px;
	width: auto;
	border-radius: 12px;
	background: linear-gradient(90deg, #0d6efd, #6610f2, #fd7e14);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.bonus-logo img:hover {
	transform: scale(1.05);
}

.bonus-action {
	text-align: center;
}

.btn-bonus {
	display: inline-block;
	padding: 12px 25px;
	background: linear-gradient(90deg, #0d6efd, #6610f2, #fd7e14);
	color: #fff;
	font-weight: bold;
	border-radius: 30px;
	text-decoration: none;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.btn-bonus:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
}

.nota {
	font-size: 0.85rem;
	color: #6c757d;
	margin-top: 8px;
}

/* Адаптивність */
@media (min-width: 768px) {
	.bonus-container {
		flex-direction: row;
	}
	.bonus-text h3 {
		text-align: left;
		font-size: 1.8rem;
	}
	.bonus-action {
		text-align: right;
	}
}

.info-section {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	padding: 70px 20px;
}

.info-section .container {
	max-width: 1100px;
	margin: 0 auto;
}

.intro {
	text-align: left;
	margin-bottom: 50px;
}

.intro h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: #212529;
}

.intro .highlight {
	color: #0d6efd;
}

.intro p {
	font-size: 1.1rem;
	color: #495057;
	line-height: 1.6;
}

.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.card {
	background: #fff;
	border-radius: 18px;
	padding: 30px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card .icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.card-azul .icon {
	color: #0d6efd;
}

.card-verde .icon {
	color: #198754;
}

.card-laranja .icon {
	color: #fd7e14;
}

.card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #212529;
}

.card p {
	font-size: 0.95rem;
	color: #6c757d;
	line-height: 1.5;
}

/* Адаптивність */
@media (min-width: 768px) {
	.intro {
		text-align: center;
	}
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 992px) {
	.intro h2 {
		font-size: 2.8rem;
	}
}

.social-section {
	background: #f8f9fa;
	padding: 60px 20px;
	text-align: center;
}

.social-container {
	max-width: 1000px;
	margin: 0 auto;
}

.social-container h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 30px;
	color: #212529;
}

.social-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

.social-logos a {
	display: inline-block;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	background-color: #0f2027;
	padding: 5px;
	border-radius: 10px;
}

.social-logos a img {
	height: 60px;
	width: auto;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.social-logos a:hover img {
	transform: scale(1.1);
	box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}

/* Адаптивність */
@media (max-width: 768px) {
	.social-container h3 {
		font-size: 1.5rem;
	}
	.social-logos {
		gap: 18px;
	}
	.social-logos a img {
		height: 50px;
	}
}

@media (max-width: 480px) {
	.social-container h3 {
		font-size: 1.3rem;
	}
	.social-logos {
		gap: 15px;
	}
	.social-logos a img {
		height: 45px;
	}
}

.site-footer {
	background: linear-gradient(
		90deg,
		#0f2027,
		#203a43,
		#2c5364
	); /* темний градієнт */
	color: #fff;
	padding: 50px 20px 20px;
	font-family: Arial, sans-serif;
}

.footer-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto 40px;
	text-align: center;
}

.footer-logo .brand {
	font-size: 2rem;
	font-weight: 900;
	text-decoration: none;
	background: linear-gradient(90deg, #0d6efd, #6f42c1, #fd7e14);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform 0.3s ease;
}

.footer-logo .brand:hover {
	transform: scale(1.1);
}

.footer-links h3,
.footer-social h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 15px;
	color: #fff;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #0d6efd;
}

.footer-disclaimer {
	max-width: 1000px;
	margin: 0 auto 20px;
	font-size: 0.9rem;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}

.footer-copy {
	text-align: center;
	font-size: 0.85rem;
	color: #fff;
}

/* Responsividade */
@media (min-width: 768px) {
	.footer-container {
		grid-template-columns: repeat(3, 1fr);
		text-align: left;
	}
	.footer-social .icons {
		justify-content: flex-start;
	}
	.footer-disclaimer {
		text-align: justify;
	}
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #f8f9fa;
	color: #212529;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
	padding: 15px 20px;
	z-index: 1000;
}

.cookie-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
}

.cookie-container p {
	font-size: 0.95rem;
	line-height: 1.5;
}

.cookie-container a {
	color: #0d6efd;
	font-weight: 600;
	text-decoration: none;
}

.cookie-container a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 12px;
}

.btn-accept,
.btn-decline {
	padding: 8px 20px;
	border-radius: 6px;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-accept {
	background: #198754;
	color: #fff;
}

.btn-accept:hover {
	background: #157347;
}

.btn-decline {
	background: #e9ecef;
	color: #212529;
	border: 1px solid #adb5bd;
}

.btn-decline:hover {
	background: #dee2e6;
}

/* Adaptabilidade */
@media (min-width: 768px) {
	.cookie-container {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.age-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(33, 37, 41, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.age-box {
	background: #f8f9fa;
	color: #212529;
	padding: 30px 20px;
	border-radius: 15px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.age-box .icon {
	font-size: 3rem;
	color: #0d6efd;
	margin-bottom: 15px;
}

.age-box h2 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.age-box p {
	font-size: 0.95rem;
	color: #495057;
	margin-bottom: 20px;
	line-height: 1.4;
}

.btn-group {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.btn {
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-yes {
	background: #198754;
	color: #fff;
}

.btn-yes:hover {
	background: #157347;
}

.btn-no {
	background: #dc3545;
	color: #fff;
}

.btn-no:hover {
	background: #bb2d3b;
}

/* Responsivo */
@media (max-width: 480px) {
	.age-box h2 {
		font-size: 1.5rem;
	}
	.age-box p {
		font-size: 0.85rem;
	}
}

.privacidade-section {
	padding: 60px 20px;
	background: #f8f9fa;
	color: #212529;
}

.privacidade-section .container {
	max-width: 900px;
	margin: 0 auto;
}

.privacidade-section h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	font-weight: 800;
	color: #0d6efd;
	text-align: center;
}

.privacidade-section h3 {
	font-size: 1.3rem;
	margin-top: 25px;
	margin-bottom: 10px;
	font-weight: 700;
	color: #198754;
}

.privacidade-section p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 15px;
	text-align: justify;
}

.privacidade-section a {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 600;
}

.privacidade-section a:hover {
	text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
	.privacidade-section h2 {
		font-size: 1.8rem;
	}
	.privacidade-section h3 {
		font-size: 1.2rem;
	}
	.privacidade-section p {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.privacidade-section {
		padding: 40px 15px;
	}
	.privacidade-section h2 {
		font-size: 1.5rem;
	}
	.privacidade-section h3 {
		font-size: 1.1rem;
	}
}

.termos-section {
	padding: 60px 20px;
	background: #ffffff;
	color: #212529;
}

.termos-section .container {
	max-width: 900px;
	margin: 0 auto;
}

.termos-section h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	font-weight: 800;
	color: #0d6efd;
	text-align: center;
}

.termos-section h3 {
	font-size: 1.3rem;
	margin-top: 25px;
	margin-bottom: 10px;
	font-weight: 700;
	color: #dc3545;
}

.termos-section p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 15px;
	text-align: justify;
}

.termos-section a {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 600;
}

.termos-section a:hover {
	text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
	.termos-section h2 {
		font-size: 1.8rem;
	}
	.termos-section h3 {
		font-size: 1.2rem;
	}
	.termos-section p {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.termos-section {
		padding: 40px 15px;
	}
	.termos-section h2 {
		font-size: 1.5rem;
	}
	.termos-section h3 {
		font-size: 1.1rem;
	}
}

.cookies-section {
	padding: 60px 20px;
	background: #f1f3f5;
	color: #212529;
}

.cookies-section .container {
	max-width: 900px;
	margin: 0 auto;
}

.cookies-section h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	font-weight: 800;
	color: #20c997;
	text-align: center;
}

.cookies-section h3 {
	font-size: 1.3rem;
	margin-top: 25px;
	margin-bottom: 10px;
	font-weight: 700;
	color: #0d6efd;
}

.cookies-section p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 15px;
	text-align: justify;
}

.cookies-section ul {
	margin: 10px 0 20px 20px;
	padding: 0;
}

.cookies-section li {
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.cookies-section a {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 600;
}

.cookies-section a:hover {
	text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
	.cookies-section h2 {
		font-size: 1.8rem;
	}
	.cookies-section h3 {
		font-size: 1.2rem;
	}
	.cookies-section p,
	.cookies-section li {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.cookies-section {
		padding: 40px 15px;
	}
	.cookies-section h2 {
		font-size: 1.5rem;
	}
	.cookies-section h3 {
		font-size: 1.1rem;
	}
}

.aviso-idade {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	background: linear-gradient(90deg, #d32f2f, #b71c1c);
	color: #fff;
	font-size: 14px;
	text-align: center;
}
.aviso-idade .etiqueta-idade {
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 8px;
	border-radius: 6px;
	font-weight: bold;
}
.aviso-idade p {
	margin: 0;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.aviso-idade {
		flex-direction: column;
		font-size: 13px;
		text-align: center;
	}
}
