/* Global Styles */
:root {
	--primary-color: #ff5252; /* Red color like the clown nose */
	--secondary-color: #1e3a8a; /* Dark blue */
	--accent-color: #ffc107; /* Yellow/Gold */
	--text-color: #333333;
	--light-bg: #f9f9f9;
	--dark-bg: #121212;
	--gradient-1: linear-gradient(120deg, #3498db, #8e44ad);
	--gradient-2: linear-gradient(120deg, #f6d365, #fda085);
	--transition: all 0.3s ease;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	--border-radius: 8px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
	background-color: var(--light-bg);
}

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

section {
	padding: 80px 0;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 15px;
	font-weight: 700;
	line-height: 1.3;
}

p {
	margin-bottom: 15px;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	margin: 5px;
}

.btn.primary {
	background-color: var(--primary-color);
	color: #212121; /* Dark Gray for high contrast */
}

.btn.secondary {
	background-color: var(--secondary-color);
	color: white;
}

.btn.mini {
	padding: 8px 16px;
	font-size: 14px;
}

.btn.small {
	padding: 8px 16px;
	font-size: 14px;
	margin-top: 10px;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.highlight {
	color: var(--primary-color);
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.section-header h2:after {
	content: "";
	position: absolute;
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
}

/* Background Animation */
.background-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.05;
	background: radial-gradient(
			circle at 25% 25%,
			var(--primary-color) 1%,
			transparent 10%
		),
		radial-gradient(
			circle at 75% 75%,
			var(--secondary-color) 1%,
			transparent 10%
		),
		radial-gradient(circle at 25% 75%, var(--accent-color) 1%, transparent 10%),
		radial-gradient(
			circle at 75% 25%,
			var(--secondary-color) 1%,
			transparent 10%
		);
	background-size: 100px 100px;
	animation: move-background 20s linear infinite;
}

@keyframes move-background {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 100px 100px;
	}
}

@keyframes float-nose {
	0% {
		transform: translateY(0) scale(0.7);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100vh) scale(1.08);
		opacity: 0;
	}
}

@keyframes wiggle {
	0%,
	100% {
		transform: rotate(-4deg);
	}
	20% {
		transform: rotate(6deg);
	}
	40% {
		transform: rotate(-6deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-2deg);
	}
}

.logo-hint {
	display: block;
	text-align: center;
	font-size: 0.95rem;
	color: #a44;
	opacity: 0.7;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
	animation: hint-wiggle 2.2s infinite;
	pointer-events: none;
	user-select: none;
}
@keyframes hint-wiggle {
	0%,
	100% {
		transform: translateY(0);
	}
	12% {
		transform: translateY(-4px) scale(1.05);
	}
	25% {
		transform: translateY(0);
	}
	37% {
		transform: translateY(-3px);
	}
	50% {
		transform: translateY(0);
	}
}
@media (max-width: 600px) {
	.logo-hint {
		font-size: 0.9rem;
		opacity: 0.55;
	}
}

@keyframes sparkle-pop {
	0% {
		opacity: 1;
		transform: scale(0.3);
	}
	70% {
		opacity: 0.8;
		transform: scale(1.1);
	}
	100% {
		opacity: 0;
		transform: scale(0.1);
	}
}

@keyframes blimp-move {
	0% {
		left: -200px;
	}
	100% {
		left: 120vw;
	}
}

/* Navigation */
nav {
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-color);
}

.logo img {
	width: 50px;
	height: auto;
	margin-right: 10px;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.logo span {
	color: var(--primary-color);
}

.menu ul {
	display: flex;
}

.menu ul li {
	margin: 0 15px;
}

.menu ul li a {
	color: var(--text-color);
	font-weight: 600;
	position: relative;
}

.menu ul li a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.menu ul li a:hover {
	color: var(--primary-color);
}

.menu ul li a:hover:after {
	width: 100%;
}

.mobile-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero-content {
	flex: 1;
	padding-right: 50px;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #666;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.bouncing-nose {
	animation: bounce 3.5s infinite;
}

.bouncing-nose img {
	width: 350px;
	height: auto;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.random-nose {
	pointer-events: auto;
	will-change: transform, opacity, left, top;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.25, 1.5, 0.5, 1),
		opacity 0.3s;
	cursor: pointer;
	user-select: none;
	overflow: visible;
}

.random-nose img {
	width: 100%;
	height: auto;
}

/* Games Section */
.games {
	background-color: white;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.game-card {
	background-color: white;
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.game-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.game-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.game-icon img {
	width: 100%;
	height: auto;
}

.game-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.game-status {
	margin-top: 20px;
}

.status {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.status.concept {
	background-color: #e3f2fd;
	color: #1565c0;
}

.status.ideation {
	background-color: #fff8e1;
	color: #ff8f00;
}

.status.live {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.status.upcoming {
	background-color: #f3e5f5;
	color: #6a1b9a;
}

.status.available {
	background-color: #e8f5e9;
	color: #2e7d32;
}

/* Artists Section */
.artists {
	background-color: var(--light-bg);
}

.artists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.artist-card {
	background-color: white;
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.artist-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.artist-image {
	width: 150px;
	height: 150px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--light-bg);
}

.artist-image img {
	width: 100%;
	height: auto;
}

.artist-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.artist-links {
	margin-top: 20px;
}

/* Ecosystem Section */
.ecosystem {
	background-color: white;
}

.ecosystem-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.ecosystem-image {
	flex: 1;
}

.ecosystem-text {
	flex: 1;
}

/* Newsletter Section */
/* Contact Section */
.contact {
	background-color: var(--light-bg);
	padding: 60px 0;
	margin-top: 20px;
}

.contact-form-container {
	max-width: 800px;
	margin: 30px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.contact-form-container iframe {
	width: 100%;
	min-height: 300px;
	border: none;
}

@media (max-width: 768px) {
	.contact-form-container {
		padding: 20px;
	}
}

/* Legal Pages */
.legal-content {
	padding-top: 120px;
	padding-bottom: 60px;
	min-height: 100vh;
	background-color: white;
}

.legal-content h1 {
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: var(--text-color);
}

.legal-text {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.legal-text h2 {
	font-size: 1.8rem;
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.legal-text h3 {
	font-size: 1.4rem;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--text-color);
}

.legal-text p {
	margin-bottom: 20px;
	color: #666;
}

.legal-text ul {
	margin-bottom: 20px;
	padding-left: 20px;
	list-style-type: disc;
}

.legal-text ul li {
	margin-bottom: 10px;
	color: #666;
}

.last-updated {
	margin-top: 40px;
	font-style: italic;
	color: #999;
}

/* Footer */
footer {
	background-color: var(--dark-bg);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.footer-logo {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer-logo img {
	width: 80px;
	margin-bottom: 15px;
}

.footer-logo p {
	font-size: 1.5rem;
	font-weight: 700;
}

.footer-logo span {
	color: var(--primary-color);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
}

.footer-column {
	margin-right: 60px;
	margin-bottom: 30px;
}

.footer-column h4 {
	font-size: 1.1rem;
	margin-bottom: 20px;
	position: relative;
}

.footer-column h4:after {
	content: "";
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
	bottom: -8px;
	left: 0;
}

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

.footer-column ul li a {
	color: #b0b0b0;
	transition: var(--transition);
}

.footer-column ul li a:hover {
	color: white;
	padding-left: 5px;
}

.social-icons {
	display: flex;
}

.social-icons a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 10px;
	transition: var(--transition);
	color: white;
}

.social-icons a:hover {
	background-color: var(--primary-color);
	transform: translateY(-5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.ecosystem-content {
		flex-direction: column;
	}

	.footer-content {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.mobile-toggle {
		display: block;
	}

	.menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: white;
		transition: var(--transition);
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.menu.active {
		left: 0;
	}

	.menu ul {
		flex-direction: column;
		text-align: center;
	}

	.menu ul li {
		margin: 15px 0;
	}

	.hero {
		flex-direction: column;
		text-align: center;
	}

	.hero-content {
		padding-right: 0;
		margin-bottom: 50px;
	}

	.cta-buttons {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.section-header h2 {
		font-size: 2rem;
	}
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 20px;
	transform: translateY(100%);
	transition: all 0.3s ease;
}

.cookie-banner.visible {
	transform: translateY(0);
}

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

.cookie-text h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.cookie-text p {
	font-size: 0.9rem;
	color: #555;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: space-between;
	}
}
