* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Karla', sans-serif;
	color: #fff;
	background-color: #000;
	background-image: url('../img/bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.w {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0 0 15px;
	background: #dde9f9;

	z-index: 10;
}

.h-w {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.logo {
	font-size: 40px;
	color: #000;
	text-decoration: none;
	text-transform: uppercase;

	display: flex;
	align-items: center;
	gap: 3px;
}

.logo img {
	max-width: 60px;
}

.h-w a {
	color: #000;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 22px;
}

.h-w a:hover {
	color: #5683e5;
}

.h-btn {
	background-color: #0000ee;
	color: #fff !important;
	padding: 10px;
	border-radius: 5px;
	transition: all 0.5s ease;
}

.h-btn:hover {
	background-color: #fff;
	color: #0000ee !important;
}

.hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 250px 20px;
}

.hero-cont {
	background-color: #dde9f9;
	padding: 60px;
	border-radius: 40px;
}

.hero h1 {
	font-size: 3rem;
	color: #000;
	text-align: center;

	margin-bottom: 30px;
}

.hero p {
	font-size: 1.5rem;

	line-height: 1.6;
	color: #000;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes flicker {
	0%,
	19%,
	21%,
	23%,
	25%,
	54%,
	56%,
	100% {
		opacity: 1;
	}
	20%,
	24%,
	55% {
		opacity: 0.4;
	}
}

.age-warning {
	/* position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999; */
	background-color: #f60a0a;
	color: #fff;
	font-family: sans-serif;
	font-size: 14px;
	padding: 10px 20px;
	display: flex;
	justify-content: center;
	align-items: center;

	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.age-warning-content {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	text-align: center;
	max-width: 1000px;
}

.age-warning-content p {
	font-size: 14px;
}

.age-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-weight: bold;
	font-size: 12px;
}

.age-warning a {
	color: #0000ee;
	font-weight: 600;
	text-decoration: underline;
}

.age-warning a:hover {
	color: #000099;
}

.age-warning .highlight {
	font-weight: bold;
}

@media (max-width: 768px) {
	header {
		position: fixed;
		top: 0;
		width: 100%;
		padding: 0 0 15px;
		background: #dde9f9;

		z-index: 10;
	}

	.logo {
		font-size: 30px;
		color: #000;
		text-decoration: none;
	}

	.h-w a {
		color: #000;
		text-decoration: none;
		transition: color 0.3s;
		font-size: 18px;
	}
	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.3rem;
	}
}

.hero a.cta-button {
	margin-top: 30px;
	display: inline-block;
	padding: 15px 30px;
	font-size: 1.3rem;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 0 10px #ffcc00;
	animation: pulse 2s infinite;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.hero a.cta-button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px #ff6600;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 10px #ffcc00;
	}
	50% {
		box-shadow: 0 0 20px #ff6600;
	}
	100% {
		box-shadow: 0 0 10px #ffcc00;
	}
}

.why-section {
	padding: 60px 20px;
	background: #dde9f9;
	text-align: center;
	animation: fadeIn 2s ease-in-out;
}

.reasons {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.reason {
	background: #0000ee;
	padding: 25px;

	border-radius: 12px;
	width: 280px;
	animation: pulse 3s infinite;
	transition: transform 0.3s;
}

.reason:hover {
	transform: translateY(-5px);
}

.reason h3 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.reason p {
	font-size: 1.1rem;
	line-height: 1.5;
	color: #fff;
}

.reason img {
	width: 70px;
	margin: 0 auto 40px;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes flicker {
	0%,
	19%,
	21%,
	23%,
	25%,
	54%,
	56%,
	100% {
		opacity: 1;
	}
	20%,
	24%,
	55% {
		opacity: 0.4;
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 10px #ffcc00;
	}
	50% {
		box-shadow: 0 0 20px #ff6600;
	}
	100% {
		box-shadow: 0 0 10px #ffcc00;
	}
}

.card {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-radius: 16px;
	border: 1px solid #ccc;
	box-shadow: 0 0 12px rgba(91, 145, 215, 0.3);
	padding: 40px;
	background-color: #dde9f9;
	max-width: 1000px;
	margin: 50px auto;
	gap: 20px;
}

.card-logo {
	flex: 1 1 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card-logo img {
	max-width: 150px;
	height: auto;
}

.card-offer {
	flex: 1 1 180px;
	text-align: center;
	color: #333;
}

.card-offer span {
	font-weight: bold;
	font-size: 18px;
	color: #4169e1;
}

.card-offer .card-refund {
	font-weight: bold;
	color: #000;
	margin-top: 5px;
	display: block;
}

.card-details {
	flex: 1 1 240px;
	text-align: center;
}

.card-details h3 {
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: bold;
	color: #000;
}

.card-stars {
	color: #f5b301;
	margin-bottom: 8px;
}

.card-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #444;
}

.card-details ul li {
	margin-bottom: 5px;
}

.card-cta {
	flex: 1 1 160px;
	text-align: center;
}

.card-cta a {
	background-color: #0000ee;
	color: #fff;
	padding: 12px 24px;
	border-radius: 20px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s ease;
}

.card-cta a:hover {
	background-color: #020263;
}

@media (max-width: 768px) {
	.card {
		flex-direction: column;
		text-align: center;
	}

	.card-logo,
	.card-offer,
	.card-details,
	.card-cta {
		flex: 1 1 100%;
	}
}

.disclaimer-section {
	background: #dde9f9;

	padding: 40px 20px;
	animation: fadeIn 2s ease-in-out;
}

.disclaimer-section-c {
	max-width: 900px;
	margin: 0 auto;
}

.disclaimer-section h2 {
	color: #000;
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-align: center;
}

.disclaimer-section p {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 15px;
	color: #000;
	text-align: justify;
}

.disclaimer-section ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: center;

	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.disclaimer-section li {
	margin-bottom: 10px;
}

.disclaimer-section li a {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
	color: #dde9f9;
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.5s ease;
}

.disclaimer-section li a img {
	height: 50px;
}

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

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

footer {
	background: #090e1d;
	padding: 40px 20px;
}

.footer-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-logo {
	flex: 1 1 200px;
}

.logos-bar {
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.logos-bar img {
	max-height: 50px;
	max-width: 120px;
	filter: brightness(100%) contrast(100%);
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
}

.logos-bar img:hover {
	transform: scale(1.1);
	filter: brightness(120%);
	cursor: pointer;
}

@media (max-width: 768px) {
	.logos-bar {
		gap: 20px;
	}

	.logos-bar img {
		max-width: 80px;
		max-height: 40px;
	}
}

.footer-logo a {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 20px;
	text-decoration: none;
}

.footer-logo p {
	font-size: 1rem;
	color: #fff;
	line-height: 1.5;
}

.footer-links {
	flex: 1 1 250px;
}

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

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

.footer-links a {
	color: #dde9f9;
	font-size: 1.2rem;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	font-size: 0.9rem;
	color: #777;
	margin-top: 30px;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.cookie-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #0a0e20;
	border: 1px solid #dde9f9;
	border-radius: 10px;
	padding: 20px;
	max-width: 1000px;
	z-index: 1000;

	animation: slideIn 1s ease-in-out;
}

.cookie-box p {
	font-size: 0.7rem;
	color: #fff;
	margin-bottom: 15px;
	line-height: 1.5;
}

.cookie-box button {
	padding: 10px 20px;
	font-size: 0.7rem;
	background: #dde9f9;
	color: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.cookie-box button:hover {
	background: #fff;
}

@keyframes slideIn {
	0% {
		transform: translateX(120%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.contact-section {
	background-color: #dde9f9;
	padding: 250px 30px;
}

.contact-section h1 {
	color: #000;
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-align: center;
}

form {
	display: flex;
	flex-direction: column;
	gap: 15px;

	max-width: 900px;
	margin: auto;
}

input,
textarea {
	font-size: 1rem;
	padding: 10px;
	border-radius: 6px;
	border: 2px solid #000;
	background-color: #dde9f9;
	color: #000;
	outline: none;
}

textarea {
	resize: vertical;
	min-height: 80px;
}

button {
	padding: 12px;
	background: #dde9f9;
	color: #000;
	font-size: 1.2rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background: #fff;
}

.confirmation {
	margin-top: 20px;
	color: #049f52;
	font-size: 1.5rem;
	text-align: center;
	display: none;
}

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

@media (max-width: 600px) {
	input,
	textarea,
	button {
		font-size: 0.6rem;
	}
}

.policy-section {
	background-color: #ffffff;
	padding: 250px 30px 100px;

	font-family: 'Segoe UI', sans-serif;
	color: #222;
}

.policy-section div {
	max-width: 900px;
	margin: 0 auto;
}

.policy-section h2 {
	font-size: 28px;
	color: #005580;
	margin-bottom: 25px;
}

.policy-section p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 18px;
}

.policy-section ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.policy-section ul li {
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.policy-section {
		padding: 220px 30px 100px;
	}

	.policy-section h2 {
		font-size: 22px;
	}

	.policy-section p,
	.policy-section li {
		font-size: 15px;
	}
}
