/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(135deg, #0a1a0a 0%, #1a4a1a 50%, #0a2a0a 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, #1a4a1a, #2a5a2a);
	padding: 20px;
	box-shadow: 0 -5px 20px rgba(0, 255, 0, 0.3);
	z-index: 1000;
	border-top: 3px solid #00ff00;
	animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.cookie-content p {
	margin-bottom: 15px;
	font-size: 14px;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-buttons button {
	background: linear-gradient(45deg, #00ff00, #00cc00);
	color: #000;
	border: none;
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

.cookie-buttons button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.cookie-buttons a {
	color: #00ff00;
	text-decoration: underline;
	font-size: 12px;
}

/* Header and Navigation */
.hero-header {
	background: linear-gradient(135deg, #0f2f0f 0%, #1a4a1a 100%);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2300ff0020"/><circle cx="80" cy="30" r="1" fill="%2300ff0030"/><circle cx="40" cy="70" r="1.5" fill="%2300ff0020"/><circle cx="90" cy="80" r="1" fill="%2300ff0040"/></svg>');
	animation: starfield 20s linear infinite;
}

@keyframes starfield {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100px);
	}
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 47, 15, 0.95);
	backdrop-filter: blur(10px);
	z-index: 999;
	padding: 15px 0;
	border-bottom: 2px solid #00ff00;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo h1 {
	font-size: 24px;
	background: linear-gradient(45deg, #00ff00, #00cc00);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-menu a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #00ff00;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.nav-menu a:hover {
	color: #00ff00;
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

/* Hero Content */
.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	min-height: 100vh;
	padding-top: 100px;
	position: relative;
	z-index: 2;
}

.hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 30px;
	background: linear-gradient(45deg, #00ff00, #ffffff, #00ff00);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
	animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
	0% {
		filter: brightness(1);
	}
	100% {
		filter: brightness(1.2);
	}
}

.hero-text p {
	font-size: 1.2rem;
	margin-bottom: 20px;
	line-height: 1.8;
	color: #ccffcc;
}

.cta-button {
	background: linear-gradient(45deg, #00ff00, #00cc00, #00ff00);
	background-size: 200% 200%;
	color: #000;
	font-size: 1.3rem;
	font-weight: bold;
	padding: 20px 40px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
	animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.cta-button:hover {
	background-position: 100% 0;
	transform: scale(1.1);
	box-shadow: 0 0 50px rgba(0, 255, 0, 0.8);
}

/* Billiard Animation */
.billiard-animation {
	position: relative;
	width: 400px;
	height: 300px;
	margin: 0 auto;
	background: linear-gradient(135deg, #228b22, #32cd32);
	border-radius: 20px;
	border: 8px solid #8b4513;
	box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}

.table-glow {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(0, 255, 0, 0.2),
		transparent
	);
	border-radius: 25px;
	animation: tableGlow 4s ease-in-out infinite;
}

@keyframes tableGlow {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.8;
	}
}

.cosmic-balls::before,
.cosmic-balls::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.cosmic-balls::before {
	background: radial-gradient(circle, #ffffff, #cccccc);
	top: 50px;
	left: 50px;
	animation: ballMove1 6s ease-in-out infinite;
}

.cosmic-balls::after {
	background: radial-gradient(circle, #000000, #333333);
	top: 150px;
	right: 50px;
	animation: ballMove2 8s ease-in-out infinite;
}

@keyframes ballMove1 {
	0%,
	100% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(100px, 50px);
	}
	50% {
		transform: translate(200px, 0);
	}
	75% {
		transform: translate(100px, -50px);
	}
}

@keyframes ballMove2 {
	0%,
	100% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(-100px, -50px);
	}
	50% {
		transform: translate(-200px, 0);
	}
	75% {
		transform: translate(-100px, 50px);
	}
}

/* Game Section */
.game-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #1a4a1a 0%, #0a2a0a 100%);
	position: relative;
}

.game-section h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 50px;
	background: linear-gradient(45deg, #00ff00, #ffffff);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.game-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	font-size: 1.2rem;
	color: #ccffcc;
	line-height: 1.8;
}

.game-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto 80px;
	background: #000;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
	border: 3px solid #00ff00;
}

.game-container iframe {
	width: 100%;
	height: 600px;
	display: block;
}

.game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: opacity 0.5s ease;
}

.game-loading {
	text-align: center;
}

.cosmic-loader {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(0, 255, 0, 0.2);
	border-top: 4px solid #00ff00;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Game Features */
.game-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 80px;
}

.feature {
	text-align: center;
	padding: 40px;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 0, 0.1),
		rgba(0, 255, 0, 0.05)
	);
	border-radius: 20px;
	border: 2px solid rgba(0, 255, 0, 0.3);
	transition: all 0.3s ease;
}

.feature:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
	border-color: #00ff00;
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #00ff00;
}

/* About Section */
.about-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #0a2a0a 0%, #1a4a1a 100%);
}

.about-section h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px;
	color: #00ff00;
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	color: #ccffcc;
	line-height: 1.8;
}

.powers-list {
	background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), transparent);
	padding: 30px;
	border-radius: 15px;
	border-left: 4px solid #00ff00;
	margin-top: 30px;
}

.powers-list h3 {
	color: #00ff00;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.powers-list ul {
	list-style: none;
}

.powers-list li {
	margin-bottom: 10px;
	font-size: 1.1rem;
	padding-left: 10px;
}

.cosmic-hero {
	position: relative;
	height: 400px;
}

.hero-silhouette {
	width: 200px;
	height: 300px;
	background: linear-gradient(135deg, #000000, #333333);
	margin: 0 auto;
	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
	position: relative;
	box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}

.energy-aura {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle,
		transparent 40%,
		rgba(0, 255, 0, 0.1) 60%,
		rgba(0, 255, 0, 0.3) 100%
	);
	border-radius: 50%;
	animation: auraGlow 3s ease-in-out infinite alternate;
}

@keyframes auraGlow {
	0% {
		transform: scale(0.6);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0.7;
	}
}

/* Rating Section */
.rating-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #1a4a1a 0%, #0a2a0a 100%);
	text-align: center;
}

.rating-section h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	color: #00ff00;
}

.rating-section > p {
	font-size: 1.2rem;
	color: #ccffcc;
	margin-bottom: 60px;
}

.rating-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 800px;
	margin: 0 auto;
}

.current-rating {
	background: linear-gradient(
		135deg,
		rgba(0, 255, 0, 0.1),
		rgba(0, 255, 0, 0.05)
	);
	padding: 40px;
	border-radius: 20px;
	border: 2px solid rgba(0, 255, 0, 0.3);
}

.rating-number {
	font-size: 4rem;
	color: #00ff00;
	font-weight: bold;
	display: block;
	margin-bottom: 20px;
}

.rating-stars {
	font-size: 2rem;
	margin-bottom: 20px;
}

.star.filled {
	color: #00ff00;
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.user-rating {
	background: linear-gradient(
		135deg,
		rgba(0, 255, 0, 0.05),
		rgba(0, 255, 0, 0.1)
	);
	padding: 40px;
	border-radius: 20px;
	border: 2px solid rgba(0, 255, 0, 0.3);
}

.user-rating h3 {
	color: #00ff00;
	margin-bottom: 30px;
	font-size: 1.5rem;
}

.rating-input {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.rating-star {
	font-size: 2rem;
	color: rgba(0, 255, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.rating-star:hover,
.rating-star.active {
	color: #00ff00;
	text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
	transform: scale(1.2);
}

.rating-labels {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	font-size: 0.9rem;
	color: #ccffcc;
}

.submit-rating {
	background: linear-gradient(45deg, #00ff00, #00cc00);
	color: #000;
	border: none;
	padding: 15px 30px;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0.5;
}

.submit-rating:not([disabled]) {
	opacity: 1;
}

.submit-rating:not([disabled]):hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

/* Newsletter Section */
.newsletter-section {
	padding: 100px 0;
	background: linear-gradient(180deg, #0a2a0a 0%, #1a4a1a 100%);
	text-align: center;
}

.newsletter-section h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	color: #00ff00;
}

.newsletter-section > p {
	font-size: 1.2rem;
	color: #ccffcc;
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-form {
	max-width: 500px;
	margin: 0 auto;
}

.form-group {
	position: relative;
	margin-bottom: 30px;
}

.form-group input {
	width: 100%;
	padding: 20px 60px 20px 20px;
	border: 2px solid rgba(0, 255, 0, 0.3);
	border-radius: 50px;
	background: rgba(0, 0, 0, 0.3);
	color: #ffffff;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #00ff00;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.form-group input::placeholder {
	color: #ccffcc;
}

.form-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #00ff00;
}

.submit-button {
	background: linear-gradient(45deg, #00ff00, #00cc00);
	color: #000;
	border: none;
	padding: 20px 50px;
	border-radius: 50px;
	font-size: 1.3rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 30px;
	box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.submit-button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 50px rgba(0, 255, 0, 0.6);
}

.form-disclaimer {
	font-size: 0.9rem;
	color: #ccffcc;
	line-height: 1.6;
}

.form-disclaimer a {
	color: #00ff00;
	text-decoration: none;
}

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

/* Footer */
.footer {
	background: linear-gradient(135deg, #0a1a0a 0%, #1a2a1a 100%);
	padding: 60px 0 30px;
	border-top: 3px solid #00ff00;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
	color: #00ff00;
	margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
	color: #ccffcc;
	line-height: 1.8;
}

.footer-section ul {
	list-style: none;
}

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

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

.footer-section a:hover {
	color: #00ff00;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(0, 255, 0, 0.3);
	color: #ccffcc;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.nav-menu {
		flex-direction: column;
		gap: 15px;
	}

	.game-container iframe {
		height: 400px;
	}

	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rating-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cookie-buttons {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Hidden class for JavaScript */
.hidden {
	display: none !important;
}

.rating-display,
.user-rating {
	max-width: calc(100vw - 40px);
}
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}
	.rating-star {
		font-size: 1.5rem;
	}
}
.navbar {
	max-width: 100vw;
}
