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

body {
	font-family: 'Press Start 2P', cursive;
	color: #fff;
	background-color: #000;
}

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

header {
	position: fixed;
	width: 100%;
	padding: 15px 0;
	background: #1a1a1a;
	border-bottom: 3px solid #ffcc00;
	z-index: 10;
}

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

.logo {
	font-size: 40px;
	color: #ffcc00;
}

nav {
	display: flex;
	gap: 20px;
}

nav a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 22px;
}

nav a:hover {
	color: #ffcc00;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background: #fff;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	background: #1a1a1a;
	position: absolute;
	top: 60px;
	right: 20px;
	padding: 20px;
	border: 2px solid #ffcc00;
}

.mobile-nav a {
	color: #fff;
	margin-bottom: 10px;
}

.hero {
	background: url('../img/hero-bg.png') center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 170px 20px 150px;
	/* animation: fadeIn 2s ease-in-out; */
}

.hero-cont {
	background-color: #1a1a1a;
	padding: 60px;
	border-top-left-radius: 100px;
	border-bottom-right-radius: 100px;
}

.hero h1 {
	font-size: 3rem;
	color: #ffcc00;
	text-align: center;
	text-shadow: 2px 2px #000;
}

.hero p {
	font-size: 1.5rem;
	margin-top: 20px;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.6;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
	border-radius: 8px;
}

@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;
	}
}

@media (max-width: 768px) {
	nav {
		display: none;
	}

	.burger {
		display: flex;
	}

	.mobile-nav.active {
		display: flex;
	}

	.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: #111;
	text-align: center;
	animation: fadeIn 2s ease-in-out;
}

.why-section h2 {
	font-size: 2rem;
	color: #ffcc00;
	margin-bottom: 40px;
}

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

.reason {
	background: #1f1f1f;
	padding: 25px;
	border: 2px solid #ffcc00;
	border-radius: 12px;
	width: 280px;
	animation: pulse 3s infinite;
	transition: transform 0.3s;
}

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

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

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

.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;
	}
}

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

.reviews-section h2 {
	font-size: 2rem;
	color: #ffcc00;
	margin-bottom: 30px;
}

.reviews-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.review-card {
	background: #1c1c1c;
	border: 2px solid #ffcc00;
	border-radius: 12px;
	padding: 20px;
	width: 280px;
	box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
	transition: transform 0.3s;
	animation: pulse 3s infinite;
}

.review-card:hover {
	transform: scale(1.05);
}

.review-author {
	color: #ff6600;
	margin-top: 15px;
	font-size: 1rem;
}

.review-text {
	font-size: 1.1rem;
	margin-top: 10px;
}

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

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

.disclaimer-section {
	background: #1b1b1b;
	border-left: 4px solid #ffcc00;
	border-top: 4px solid #ffcc00;
	border-right: 4px solid #ffcc00;
	padding: 40px 20px;
	animation: fadeIn 2s ease-in-out;
	max-width: 900px;
	margin: 0 auto;
}

.disclaimer-section h2 {
	color: #ffcc00;
	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: #ddd;
	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: #ff6600;
	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: #1a1a1a;
	padding: 40px 20px;
	border-top: 4px solid #ffcc00;
	/* animation: fadeIn 2s ease-in-out; */
}

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

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

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

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

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

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

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

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

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

.footer-disclaimer p {
	font-size: 1rem;
	color: #aaa;
	line-height: 1.6;
	text-align: justify;
}

.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);
	}
}

.game-info-section {
	padding: 60px 20px;
	background: #111;
	animation: fadeIn 2s ease-in-out;
}

.game-info-section h2 {
	font-size: 2rem;
	color: #ffcc00;
	text-align: center;
	margin-bottom: 30px;
}

.game-info-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

.game-info-image {
	flex: 1 1 300px;
}

.game-info-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
}

.game-info-text {
	flex: 1 1 400px;
	font-size: 1rem;
	color: #ccc;
	line-height: 1.8;
	text-align: justify;
}

.game-warning {
	margin-top: 20px;
	padding: 15px;
	background: #1c1c1c;
	border-left: 4px solid #ff6600;
	font-size: 1.1rem;
	color: #ffcc00;
}

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

.cookie-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #1a1a1a;
	border: 2px solid #ffcc00;
	border-radius: 10px;
	padding: 20px;
	width: 300px;
	z-index: 1000;
	box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
	animation: slideIn 1s ease-in-out;
}

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

.cookie-box button {
	padding: 10px 20px;
	font-size: 0.7rem;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

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

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

.modal-age {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal-age.show {
	display: flex;
}

.modal-content {
	background-color: #1a1a1a;
	border: 3px solid #ffcc00;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	max-width: 400px;
	box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
	animation: popIn 0.6s ease-out;
}

.modal-content h2 {
	color: #ffcc00;
	margin-bottom: 20px;
	font-size: 1rem;
}

.modal-content button {
	margin: 10px;
	padding: 10px 20px;
	font-size: 0.75rem;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.modal-content button:hover {
	background: #ffaa00;
}

@keyframes popIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.policy-container {
	max-width: 900px;
	margin: auto;
	background-color: #111;
	padding: 170px 20px 60px;
	border-left: 2px solid #ffcc00;
	border-right: 2px solid #ffcc00;

	box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
	/* animation: fadeIn 1.5s ease-in-out; */
}

.policy-container h1,
.policy-container h2 {
	color: #ffcc00;
	font-size: 2rem;
	margin-bottom: 20px;
	text-align: center;
}

.policy-container p {
	font-size: 1.1rem;
	color: #ddd;
	margin-bottom: 15px;
	text-align: justify;
}

.policy-container ul {
	margin-bottom: 15px;
}

.policy-container li {
	font-size: 1.1rem;
	color: #ccc;
}

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

.contact-section {
	max-width: 900px;
	margin: auto;
	background-color: #111;
	padding: 250px 30px 100px;
	border-left: 2px solid #ffcc00;
	border-right: 2px solid #ffcc00;

	box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
	/* animation: fadeIn 1.5s ease-in-out; */
}

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

.contact-section p.description {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 30px;
	text-align: center;
}

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

input,
textarea {
	font-family: 'Press Start 2P', cursive;
	font-size: 1rem;
	padding: 10px;
	border-radius: 6px;
	border: 2px solid #ffcc00;
	background-color: #1c1c1c;
	color: #fff;
	outline: none;
}

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

button {
	padding: 12px;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	font-size: 1.2rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background: #ffaa00;
}

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

.contact-email {
	margin-top: 30px;
	font-size: 1.5rem;
	color: #aaa;
	text-align: center;
}

@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;
	}
}
