* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	overflow: hidden;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Intro Container */
#intro-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFD700; /* Fallback color */
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease-out;
	overflow: hidden;
}

#intro-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: conic-gradient(from 0deg, #FFD700 0deg, #FF8C00 120deg, #FF69B4 240deg, #FFD700 360deg);
	transform: translate(-50%, -50%);
	animation: gradientRotate 20s linear infinite;
	z-index: -1;
}

@keyframes gradientRotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

#intro-container.intro-active {
	opacity: 1;
}

#intro-container.intro-hidden {
	opacity: 0;
	pointer-events: none;
	z-index: -1;
}

/* Persistent Title */
.intro-title {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	width: 100%;
	text-align: center;
	z-index: 10;
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
}

.intro-title.active {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.intro-title h1 {
	margin: 0;
}

.intro-scene {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(80px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-scene.active {
	opacity: 1;
	transform: translateY(0);
}

/* Statement scenes should be positioned lower when title is visible */
.intro-scene[data-title] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15%; /* Default, will be overridden by JS for stacking */
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease, padding-top 0.3s ease;
	pointer-events: none;
}

.intro-scene[data-title].active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.statement-content {
	text-align: center;
	width: 100%;
	max-width: 90%;
	margin-bottom: 2rem;
	padding: 0.8rem 0;
}

.statement-text {
	font-size: 3.5rem;
	font-weight: 600;
	color: #FFF;
	line-height: 1.6;
	margin: 0;
	padding: 1rem 0;
	text-shadow: 
		2px 2px 8px rgba(0, 0, 0, 0.8),
		0 0 15px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(0, 0, 0, 0.4);
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.statement-text br {
	line-height: 1.8;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.intro-scene h1 {
	color: #FFF;
	font-size: 4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	text-shadow: 
		2px 2px 8px rgba(0, 0, 0, 0.8),
		0 0 15px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(0, 0, 0, 0.4);
}

.title-pink {
	color: #FFFFFF !important;
	font-weight: 700 !important;
	font-size: 7rem !important;
	text-shadow: 
		3px 3px 10px rgba(0, 0, 0, 0.9),
		0 0 20px rgba(0, 0, 0, 0.7),
		0 0 40px rgba(0, 0, 0, 0.5) !important;
}

.lov3-gradient {
	color: #FFD700 !important; /* Gold/Yellow for better visibility on purple/orange gradient */
	font-weight: 700;
	text-shadow: 
		2px 2px 6px rgba(0, 0, 0, 0.8),
		0 0 15px rgba(255, 215, 0, 0.4);
}

/* Intro Logo */
.logo-intro {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.intro-logo {
	height: 550px;
	width: auto;
	max-width: 90%;
	filter: 
		drop-shadow(0 0 30px rgba(0, 0, 0, 0.4)) 
		drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.5))
		drop-shadow(0 0 40px rgba(0, 0, 0, 0.3));
}

.skip-btn {
	position: absolute;
	bottom: 40px;
	right: 40px;
	padding: 16px 32px;
	background: rgba(255, 255, 255, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #FFF;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	z-index: 1001;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.skip-btn:hover {
	background: rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.mute-btn {
	position: absolute;
	bottom: 40px;
	right: 200px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #FFF;
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	z-index: 1001;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mute-btn:hover {
	background: rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.mute-btn.muted {
	opacity: 0.7;
}

/* Static Page Mute Button */
.mute-btn-static {
	position: fixed;
	bottom: 40px;
	right: 40px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.6);
	color: #FFF;
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	z-index: 1001;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mute-btn-static:hover {
	background: rgba(255, 255, 255, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.mute-btn-static.muted {
	opacity: 0.7;
}

/* Static Page */
#static-page {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/Lov3background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	overflow-y: auto;
}

#static-page.static-visible {
	opacity: 1;
	visibility: visible;
}

.page-content {
	max-width: 800px;
	padding: 20px 40px 40px 40px;
	position: relative;
	z-index: 2;
}

.logo-container {
	margin-bottom: 10px;
	margin-top: -40px;
	padding-top: 0;
}

.logo {
	height: 350px;
	width: auto;
	margin-left: -25px;
	margin-top: -50px;
	/* Add subtle shadow for better visibility on gradient background */
	filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5)) drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.7));
}

.content-container {
	margin-top: -50px;
}

.content-container h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 15px;
	margin-top: 0;
	line-height: 1.2;
	text-shadow: 
		2px 2px 8px rgba(0, 0, 0, 0.8),
		0 0 20px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(0, 0, 0, 0.3);
}

.content-container h2 {
	font-size: 3rem;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 20px;
	margin-top: 0;
	line-height: 1.3;
	text-shadow: 
		2px 2px 8px rgba(0, 0, 0, 0.8),
		0 0 20px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
	padding: 15px 20px;
	border-radius: 8px;
	backdrop-filter: blur(2px);
}

.content-container p {
	font-size: 1.3rem;
	color: #FFFFFF;
	line-height: 1.8;
	margin-bottom: 20px;
	text-shadow: 
		1px 1px 4px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(0, 0, 0, 0.5);
}

.content-container ul {
	list-style: none;
	margin: 20px 0;
	padding-left: 0;
}

.content-container ul li {
	font-size: 1.3rem;
	color: #FFFFFF;
	line-height: 1.8;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
	text-shadow: 
		1px 1px 4px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(0, 0, 0, 0.5);
}

.content-container ul li:before {
	content: "•";
	color: #FFD700; /* Gold/Yellow for better visibility */
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -2px;
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.lov3-gradient {
	color: #FFD700 !important; /* Gold/Yellow for better visibility on purple/orange gradient */
	font-weight: 700;
	text-shadow: 
		2px 2px 6px rgba(0, 0, 0, 0.8),
		0 0 15px rgba(255, 215, 0, 0.4);
}

/* Button removed */

/* Social icons removed */

#particles-js {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.page-content {
		max-width: 100%;
		padding: 20px;
	}
	
	.intro-scene h1 {
		font-size: 3rem;
		font-weight: 700;
	}
	
	.title-pink {
		font-size: 4.5rem !important;
	}
	
	.intro-logo {
		height: 350px;
	}
	
	.logo {
		height: 150px;
	}
	
	.content-container h1 {
		font-size: 2rem;
	}
	
	.content-container h2 {
		font-size: 1.8rem;
	}
}

