/* THEJUNKDUMP — Ultimate Y2K Aesthetic Stylesheet */

:root {
	--pink-hot: #ff1493;
	--pink-bubblegum: #ff66b2;
	--pink-candy: #ff85c0;
	--pink-pastel: #ffe6f2;
	--pink-glow: rgba(255, 102, 178, 0.4);
	
	--blue-baby: #8be0ff;
	--blue-cyber: #48cae4;
	--blue-pastel: #e0f7ff;
	
	--purple-lavender: #d8b4fe;
	--purple-soft: #ebdcfd;
	--purple-deep: #9333ea;
	
	--lime-cyber: #bbf705;
	--lime-glow: rgba(187, 247, 5, 0.5);
	
	--chrome-light: #ffffff;
	--chrome-mid: #d1d5db;
	--chrome-dark: #9ca3af;
	
	--bg-main: #fff5fa;
	--card-bg: rgba(255, 255, 255, 0.85);
	--border-y2k: #ff99cc;
	
	--font-bubble: "Rubik Bubbles", cursive, system-ui;
	--font-pixel: "VT323", monospace;
	--font-chunky: "Fredoka", sans-serif;
	--font-syne: "Syne", sans-serif;
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-main);
	background-image: 
		radial-gradient(circle at 15% 20%, rgba(255, 182, 217, 0.45) 0%, transparent 40%),
		radial-gradient(circle at 85% 30%, rgba(139, 224, 255, 0.4) 0%, transparent 45%),
		radial-gradient(circle at 50% 80%, rgba(216, 180, 254, 0.4) 0%, transparent 50%),
		linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 100% 100%, 32px 32px, 32px 32px;
	color: #2b1029;
	font-family: var(--font-body);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
	cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><text y='20' font-size='20'>✨</text></svg>"), auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	background: #ffe6f2;
}
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #ff66b2, #9333ea);
	border-radius: 8px;
	border: 2px solid #fff;
}

/* Top Y2K Window & Status Bar */
.top-nav-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(90deg, #ff66b2, #b794f6, #70d6ff, #ff66b2);
	background-size: 300% 100%;
	animation: rainbowShift 12s ease infinite;
	padding: 8px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #ffffff;
	box-shadow: 0 4px 15px rgba(255, 20, 147, 0.25);
}

@keyframes rainbowShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.top-nav-inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.y2k-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.95);
	padding: 4px 12px;
	border-radius: 999px;
	font-family: var(--font-pixel);
	font-size: 1.15rem;
	font-weight: bold;
	color: #d01375;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 #fff;
	letter-spacing: 0.5px;
}

.pulse-dot {
	width: 9px;
	height: 9px;
	background-color: #39ff14;
	border-radius: 50%;
	box-shadow: 0 0 8px #39ff14;
	animation: pulseLive 1.4s infinite;
}

@keyframes pulseLive {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.3); opacity: 0.7; }
}

.top-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sound-toggle-btn {
	background: #ffffff;
	border: 2px solid #d01375;
	padding: 4px 10px;
	border-radius: 20px;
	font-family: var(--font-chunky);
	font-size: 0.85rem;
	font-weight: 700;
	color: #d01375;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 3px 0 #d01375;
	transition: all 0.15s ease;
}

.sound-toggle-btn:active {
	transform: translateY(2px);
	box-shadow: 0 1px 0 #d01375;
}

.sound-toggle-btn.active {
	background: #ffe6f2;
	color: #ff1493;
}

/* Chrome / Glossy Buttons */
.glossy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(180deg, #ff85c0 0%, #ff1493 50%, #d01375 100%);
	color: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 999px;
	padding: 16px 36px;
	font-family: var(--font-chunky);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.5px;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 
		0 6px 0 #a00755,
		0 12px 25px rgba(255, 20, 147, 0.45),
		inset 0 2px 3px rgba(255, 255, 255, 0.8),
		inset 0 -2px 5px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.glossy-btn::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 45%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 999px;
	pointer-events: none;
}

.glossy-btn:hover {
	transform: translateY(-2px) scale(1.02);
	filter: brightness(1.08);
	box-shadow: 
		0 8px 0 #a00755,
		0 16px 30px rgba(255, 20, 147, 0.5),
		inset 0 2px 3px rgba(255, 255, 255, 0.9);
}

.glossy-btn:active {
	transform: translateY(4px);
	box-shadow: 
		0 2px 0 #a00755,
		0 4px 10px rgba(255, 20, 147, 0.3);
}

.glossy-btn-lime {
	background: linear-gradient(180deg, #d4ff33 0%, #bbf705 50%, #8ac400 100%);
	color: #1a3300;
	box-shadow: 
		0 6px 0 #5f8700,
		0 12px 25px rgba(187, 247, 5, 0.4),
		inset 0 2px 3px rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.glossy-btn-lime:hover {
	box-shadow: 
		0 8px 0 #5f8700,
		0 16px 30px rgba(187, 247, 5, 0.55);
}
.glossy-btn-lime:active {
	box-shadow: 0 2px 0 #5f8700;
}

.glossy-btn-silver {
	background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 40%, #cbd5e1 70%, #94a3b8 100%);
	color: #334155;
	box-shadow: 
		0 6px 0 #64748b,
		0 12px 20px rgba(0, 0, 0, 0.15),
		inset 0 2px 2px #fff;
	text-shadow: 0 1px 0 #fff;
}
.glossy-btn-silver:hover {
	box-shadow: 0 8px 0 #64748b, 0 16px 25px rgba(0, 0, 0, 0.2);
}
.glossy-btn-silver:active {
	box-shadow: 0 2px 0 #64748b;
}

/* Hero Section */
.hero-wrapper {
	position: relative;
	min-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px 80px;
	overflow: hidden;
}

.hero-bg-sparkles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: 
		radial-gradient(2px 2px at 20px 30px, #ff66b2, rgba(0,0,0,0)),
		radial-gradient(3px 3px at 80px 70px, #70d6ff, rgba(0,0,0,0)),
		radial-gradient(2px 2px at 150px 120px, #bbf705, rgba(0,0,0,0)),
		radial-gradient(3px 3px at 240px 40px, #d8b4fe, rgba(0,0,0,0));
	background-repeat: repeat;
	background-size: 280px 200px;
	opacity: 0.7;
	animation: glitterShimmer 8s linear infinite;
}

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

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 900px;
	margin: 0 auto;
}

.hero-welcome-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 3px dashed #ff66b2;
	padding: 8px 24px;
	border-radius: 999px;
	font-family: var(--font-chunky);
	font-size: 1.15rem;
	font-weight: 700;
	color: #ff1493;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(255, 102, 178, 0.25);
	transform: rotate(-1.5deg);
	transition: transform 0.2s ease;
}

.hero-welcome-badge:hover {
	transform: rotate(0deg) scale(1.05);
}

/* Enormous Brand Title */
.hero-brand-title {
	font-family: var(--font-bubble);
	font-size: clamp(3.2rem, 11vw, 7.8rem);
	line-height: 0.95;
	letter-spacing: 2px;
	margin: 0 0 16px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	color: #ff1493;
	text-shadow: 
		-2px -2px 0 #ffffff,  
		 2px -2px 0 #ffffff,
		-2px  2px 0 #ffffff,
		 2px  2px 0 #ffffff,
		 0 4px 0 #d01375,
		 0 8px 0 #900a50,
		 0 12px 24px rgba(255, 20, 147, 0.5);
	filter: drop-shadow(0 10px 18px rgba(216, 20, 120, 0.2));
	user-select: none;
	animation: floatingTitle 4s ease-in-out infinite;
}

@keyframes floatingTitle {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-8px) rotate(0.8deg); }
}

.title-chrome-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.4) 30%,
		transparent 48%,
		rgba(255, 255, 255, 0.6) 52%,
		transparent 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
}

.hero-tagline {
	font-family: var(--font-pixel);
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	letter-spacing: 1.5px;
	color: #2b1029;
	margin: 0 0 28px;
	font-weight: bold;
	background: rgba(255, 255, 255, 0.9);
	display: inline-block;
	padding: 4px 20px;
	border-radius: 8px;
	border: 2px solid #b794f6;
	box-shadow: 4px 4px 0 #b794f6;
	transform: rotate(0.8deg);
}

.hero-cta-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 10px;
}

.hero-helper-text {
	font-family: var(--font-chunky);
	font-size: 0.95rem;
	color: #8c4c78;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Floating Y2K Stickers */
.sticker {
	position: absolute;
	z-index: 15;
	user-select: none;
	cursor: grab;
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.sticker:hover {
	transform: scale(1.18) rotate(5deg) !important;
	filter: drop-shadow(0 12px 20px rgba(255, 20, 147, 0.35)) brightness(1.08);
	z-index: 40;
}

.sticker:active {
	cursor: grabbing;
	transform: scale(1.05) !important;
}

/* Individual Sticker Styles */
.sticker-omg {
	top: 8%;
	left: 4%;
	background: #bbf705;
	color: #000;
	padding: 10px 18px;
	border-radius: 14px;
	font-family: var(--font-syne);
	font-weight: 900;
	font-size: 1.5rem;
	border: 3px solid #000;
	box-shadow: 4px 4px 0 #000;
	transform: rotate(-14deg);
	animation: floatGentle1 6s ease-in-out infinite;
}

.sticker-new-junk {
	top: 16%;
	right: 4%;
	background: linear-gradient(135deg, #e0f2fe, #f5d0fe, #fef08a, #fed7aa);
	color: #4a044e;
	padding: 10px 20px;
	border-radius: 999px;
	font-family: var(--font-chunky);
	font-weight: 900;
	font-size: 1.15rem;
	border: 2px solid #ffffff;
	box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3), inset 0 1px 0 #fff;
	transform: rotate(12deg);
	animation: floatGentle2 7s ease-in-out infinite;
}

.sticker-so-cute {
	bottom: 22%;
	left: 6%;
	background: #ff66b2;
	color: #ffffff;
	padding: 12px 22px;
	border-radius: 30px;
	font-family: var(--font-bubble);
	font-size: 1.3rem;
	border: 3px solid #ffffff;
	box-shadow: 0 6px 0 #d01375, 0 10px 20px rgba(0, 0, 0, 0.15);
	transform: rotate(-8deg);
	animation: floatGentle3 5.5s ease-in-out infinite;
}

.sticker-need-this {
	bottom: 15%;
	right: 5%;
	background: #ffffff;
	color: #000000;
	padding: 8px 16px;
	border: 2px solid #000000;
	font-family: var(--font-pixel);
	font-size: 1.3rem;
	box-shadow: 5px 5px 0 #ff1493;
	transform: rotate(9deg);
	animation: floatGentle1 8s ease-in-out infinite;
}

.sticker-coming-soon {
	top: 3%;
	right: 22%;
	background: #70d6ff;
	color: #0c4a6e;
	padding: 6px 14px;
	border-radius: 6px;
	font-family: var(--font-pixel);
	font-size: 1.25rem;
	font-weight: bold;
	border: 2px dashed #0369a1;
	transform: rotate(6deg);
	animation: floatGentle3 6.5s ease-in-out infinite;
}

.sticker-2000s-baby {
	bottom: 3%;
	left: 20%;
	background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #94a3b8 100%);
	color: #1e293b;
	padding: 8px 18px;
	border-radius: 999px;
	font-family: var(--font-syne);
	font-size: 0.95rem;
	font-weight: 800;
	border: 2px solid #ffffff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15), inset 0 2px 2px #fff;
	transform: rotate(-5deg);
	animation: floatGentle2 7.5s ease-in-out infinite;
}

.sticker-charm {
	font-size: 2.8rem;
	animation: spinFloat 10s ease-in-out infinite alternate;
}

.sticker-tamagotchi {
	top: 28%;
	left: 12%;
	transform: rotate(-15deg);
}

.sticker-flip-phone {
	top: 30%;
	right: 14%;
	transform: rotate(18deg);
}

.sticker-bow {
	bottom: 8%;
	right: 24%;
	transform: rotate(-10deg);
}

.sticker-butterfly {
	top: 8%;
	left: 28%;
	transform: rotate(12deg);
}

.sticker-cherry {
	bottom: 30%;
	left: 3%;
	transform: rotate(15deg);
}

@keyframes floatGentle1 {
	0%, 100% { transform: translateY(0px) rotate(-14deg); }
	50% { transform: translateY(-12px) rotate(-10deg); }
}
@keyframes floatGentle2 {
	0%, 100% { transform: translateY(0px) rotate(12deg); }
	50% { transform: translateY(-15px) rotate(16deg); }
}
@keyframes floatGentle3 {
	0%, 100% { transform: translateY(0px) rotate(-8deg); }
	50% { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes spinFloat {
	0% { transform: translateY(0) rotate(-10deg) scale(1); }
	50% { transform: translateY(-15px) rotate(10deg) scale(1.1); }
	100% { transform: translateY(-5px) rotate(-5deg) scale(1.05); }
}

/* Infinite Scrolling Marquee */
.marquee-container {
	background: #ff1493;
	background: linear-gradient(90deg, #ff1493, #ff66b2, #ff1493);
	color: #ffffff;
	padding: 14px 0;
	overflow: hidden;
	white-space: nowrap;
	border-top: 3px solid #ffffff;
	border-bottom: 3px solid #ffffff;
	box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
	position: relative;
	z-index: 20;
}

.marquee-content {
	display: inline-flex;
	align-items: center;
	animation: scrollMarquee 25s linear infinite;
	font-family: var(--font-chunky);
	font-size: 1.4rem;
	font-weight: 900;
	letter-spacing: 2px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marquee-text-chrome {
	color: #ffffff;
	background: linear-gradient(180deg, #ffffff 0%, #ffe6f2 60%, #ffd1e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 0 16px;
}

.marquee-star {
	color: #bbf705;
	font-size: 1.2rem;
	-webkit-text-fill-color: #bbf705;
	animation: pulseStar 1.5s infinite;
}

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

@keyframes scrollMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Main Content Container */
.page-container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
	gap: 80px;
	position: relative;
	z-index: 10;
}

/* Y2K Window & Card Panels */
.y2k-window {
	background: #ffffff;
	border: 3px solid #ff66b2;
	border-radius: 16px;
	box-shadow: 
		8px 8px 0px #b794f6,
		0 20px 40px rgba(255, 102, 178, 0.15);
	overflow: hidden;
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.y2k-window:hover {
	box-shadow: 
		10px 10px 0px #ff1493,
		0 25px 50px rgba(255, 20, 147, 0.2);
}

.y2k-window-header {
	background: linear-gradient(90deg, #ff66b2, #b794f6);
	padding: 10px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #ffffff;
	color: #ffffff;
	font-family: var(--font-pixel);
	font-size: 1.25rem;
	letter-spacing: 1px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.y2k-window-controls {
	display: flex;
	align-items: center;
	gap: 6px;
}

.window-btn {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.2);
	display: inline-block;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.window-btn.close { background: #ff5f56; }
.window-btn.min { background: #ffbd2e; }
.window-btn.max { background: #27c93f; }

.y2k-window-body {
	padding: 36px 32px;
	position: relative;
}

/* About Section */
.about-section {
	position: relative;
}

.section-title-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.section-title {
	font-family: var(--font-bubble);
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	color: #ff1493;
	text-transform: uppercase;
	line-height: 1.1;
	text-shadow: 2px 2px 0 #ffe6f2, 4px 4px 0 #b794f6;
}

.section-tag {
	background: #bbf705;
	color: #1a3300;
	padding: 4px 12px;
	border-radius: 999px;
	font-family: var(--font-pixel);
	font-size: 1.1rem;
	font-weight: bold;
	border: 2px solid #1a3300;
	transform: rotate(3deg);
}

.about-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 36px;
	align-items: center;
}

@media (max-width: 820px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
}

.about-text-box {
	font-size: 1.18rem;
	line-height: 1.75;
	color: #3f1a3a;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-lead {
	font-size: 1.35rem;
	font-weight: 700;
	color: #ff1493;
	font-family: var(--font-chunky);
}

.about-punchline {
	background: #ffe6f2;
	border-left: 5px solid #ff1493;
	padding: 16px 20px;
	border-radius: 0 12px 12px 0;
	font-weight: 700;
	font-size: 1.22rem;
	color: #2b1029;
	font-style: italic;
}

.about-visual-collage {
	position: relative;
	background: radial-gradient(circle, #ffeaf5 0%, #f3e8ff 100%);
	border: 3px solid #ff85c0;
	border-radius: 20px;
	padding: 24px;
	text-align: center;
	box-shadow: inset 0 0 20px rgba(255, 102, 178, 0.15);
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.collage-polaroid {
	background: #ffffff;
	padding: 14px 14px 28px;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.05);
	transform: rotate(-3deg);
	border: 1px solid #e5e7eb;
	max-width: 260px;
	transition: transform 0.3s ease;
}

.collage-polaroid:hover {
	transform: rotate(0deg) scale(1.05);
}

.polaroid-art {
	background: linear-gradient(135deg, #ffcbf2, #e2eafc, #caffbf);
	border-radius: 4px;
	height: 160px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	gap: 6px;
	position: relative;
	overflow: hidden;
}

.polaroid-caption {
	font-family: var(--font-pixel);
	font-size: 1.2rem;
	color: #6b21a8;
	margin-top: 10px;
	text-align: center;
}

/* Interactive Toss More Junk Button */
.toss-junk-btn {
	background: #ffffff;
	border: 2px dashed #ff1493;
	color: #ff1493;
	padding: 8px 16px;
	border-radius: 20px;
	font-family: var(--font-chunky);
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	box-shadow: 0 3px 8px rgba(255, 20, 147, 0.15);
	transition: all 0.2s ease;
}

.toss-junk-btn:hover {
	background: #ff1493;
	color: #ffffff;
	transform: scale(1.05);
}

/* Coming Soon & Loading Section */
.loading-section {
	position: relative;
}

.loading-box {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 248, 0.95));
	border: 3px solid #ff66b2;
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	position: relative;
	box-shadow: 0 15px 35px rgba(255, 102, 178, 0.2);
}

.panic-sticker {
	position: absolute;
	top: -16px;
	right: 24px;
	background: #ff5252;
	color: #ffffff;
	font-family: var(--font-syne);
	font-weight: 900;
	font-size: 1rem;
	padding: 6px 14px;
	border-radius: 6px;
	border: 2px solid #ffffff;
	box-shadow: 3px 3px 0 #900;
	transform: rotate(6deg);
	animation: wigglePanic 2s infinite ease-in-out;
}

@keyframes wigglePanic {
	0%, 100% { transform: rotate(6deg); }
	50% { transform: rotate(-3deg); }
}

.loading-copy {
	max-width: 640px;
	margin: 0 auto 32px;
	font-size: 1.25rem;
	line-height: 1.65;
	color: #3b1836;
}

.loading-copy p {
	margin-bottom: 12px;
}

/* Visual Retro Progress Bar */
.progress-block {
	max-width: 650px;
	margin: 0 auto 30px;
	background: #2b1029;
	border: 3px solid #ffffff;
	border-radius: 14px;
	padding: 16px 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), inset 0 2px 6px rgba(0,0,0,0.5);
}

.progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-pixel);
	font-size: 1.4rem;
	color: #bbf705;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.progress-track {
	height: 28px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid #52254d;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	padding: 2px;
}

.progress-bar-fill {
	height: 100%;
	width: 73%;
	background: repeating-linear-gradient(
		45deg,
		#ff1493,
		#ff1493 12px,
		#ff66b2 12px,
		#ff66b2 24px
	);
	border-radius: 4px;
	position: relative;
	animation: barberPole 2s linear infinite;
	box-shadow: 0 0 12px rgba(255, 20, 147, 0.8);
}

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

.progress-status-ticker {
	font-family: var(--font-pixel);
	font-size: 1.15rem;
	color: #8be0ff;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* Interactive Fortune / Charm Spinner */
.charm-spinner-card {
	margin-top: 24px;
	background: #ffffff;
	border: 2px dashed #b794f6;
	border-radius: 16px;
	padding: 20px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.charm-fortune-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 12px 0;
	padding: 12px;
	background: #fdf2f8;
	border-radius: 12px;
	border: 1px solid #fbcfe8;
}

.fortune-charm-icon {
	font-size: 2.2rem;
	animation: bounceSmall 1.5s infinite;
}

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

/* Email Drop Alert Section */
.drop-alert-section {
	background: linear-gradient(135deg, #ffcce6 0%, #e0f2fe 50%, #f3e8ff 100%);
	border: 4px solid #ff1493;
	border-radius: 24px;
	padding: 48px 32px;
	box-shadow: 10px 10px 0 #9333ea, 0 20px 40px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
}

.drop-alert-inner {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 5;
}

.drop-alert-title {
	font-family: var(--font-bubble);
	font-size: clamp(2rem, 4.5vw, 3rem);
	color: #ff1493;
	line-height: 1.15;
	margin-bottom: 12px;
	text-shadow: 2px 2px 0 #ffffff;
}

.drop-alert-subtitle {
	font-size: 1.3rem;
	color: #4a154b;
	font-weight: 600;
	margin-bottom: 28px;
	font-family: var(--font-chunky);
}

.signup-form {
	display: flex;
	gap: 12px;
	max-width: 520px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.signup-input {
	flex: 1;
	min-width: 260px;
	padding: 16px 22px;
	border-radius: 999px;
	border: 3px solid #ff1493;
	background: #ffffff;
	font-family: var(--font-chunky);
	font-size: 1.15rem;
	color: #2b1029;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(255, 20, 147, 0.15);
	outline: none;
	transition: all 0.2s ease;
}

.signup-input:focus {
	border-color: #9333ea;
	box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.25);
}

.signup-input::placeholder {
	color: #a87299;
	font-style: italic;
}

/* VIP Card Pass Notification */
.vip-pass-card {
	margin-top: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #fff1f8 50%, #f5d0fe 100%);
	border: 3px solid #ff1493;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 25px rgba(255, 20, 147, 0.25);
	display: inline-block;
	text-align: left;
	animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.vip-badge-ribbon {
	background: #bbf705;
	color: #000;
	font-family: var(--font-pixel);
	font-size: 1.1rem;
	font-weight: bold;
	padding: 2px 10px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 8px;
}

/* Socials Section */
.socials-section {
	position: relative;
}

.socials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 24px;
}

.social-card {
	background: #ffffff;
	border: 3px solid #b794f6;
	border-radius: 20px;
	padding: 28px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	box-shadow: 6px 6px 0 #ff66b2;
	transition: all 0.2s ease;
	text-decoration: none;
	color: inherit;
}

.social-card:hover {
	transform: translateY(-6px);
	box-shadow: 8px 8px 0 #ff1493, 0 15px 30px rgba(255, 102, 178, 0.25);
}

.social-icon-bubble {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border: 2px solid #ffffff;
}

.social-icon-ig {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
}

.social-icon-tt {
	background: #000000;
	color: #fff;
}

.social-handle {
	font-family: var(--font-chunky);
	font-size: 1.4rem;
	font-weight: 800;
	color: #ff1493;
}

.social-meta {
	font-size: 0.95rem;
	color: #64748b;
}

/* FAQ Section */
.faq-section {
	position: relative;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.faq-item {
	background: #ffffff;
	border: 2px solid #ff99cc;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 4px 4px 0 #ffe6f2;
	transition: all 0.2s ease;
}

.faq-item:hover {
	border-color: #ff1493;
}

.faq-question {
	width: 100%;
	padding: 18px 24px;
	background: #fff;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-chunky);
	font-size: 1.25rem;
	font-weight: 800;
	color: #2b1029;
	text-align: left;
	cursor: pointer;
}

.faq-question:hover {
	color: #ff1493;
}

.faq-answer {
	padding: 0 24px 20px;
	font-size: 1.15rem;
	color: #581c4e;
	border-top: 1px dashed #ffd1e8;
	background: #fffafa;
	padding-top: 14px;
	font-weight: 600;
}

.faq-icon-arrow {
	font-size: 1.2rem;
	color: #ff1493;
	transition: transform 0.2s ease;
}

.faq-icon-arrow.open {
	transform: rotate(180deg);
}

/* Charm Wishlist / Community Requests Box */
.wishlist-container {
	margin-top: 40px;
	background: #fff9fc;
	border: 3px dashed #b794f6;
	border-radius: 20px;
	padding: 28px 24px;
}

.wishlist-form {
	display: grid;
	grid-template-columns: 1fr 2fr auto auto;
	gap: 10px;
	margin: 16px 0 24px;
}

@media (max-width: 768px) {
	.wishlist-form {
		grid-template-columns: 1fr;
	}
}

.wish-input {
	padding: 10px 16px;
	border-radius: 10px;
	border: 2px solid #ff99cc;
	font-family: var(--font-body);
	font-size: 1rem;
	outline: none;
}

.wish-chips {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.wish-chip {
	background: #ffffff;
	border: 2px solid #fbcfe8;
	padding: 12px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	box-shadow: 2px 2px 0 #fce7f3;
}

.wish-like-btn {
	background: #ffe4e6;
	border: 1px solid #fda4af;
	color: #e11d48;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 0.85rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: bold;
}

.wish-like-btn:hover {
	background: #f43f5e;
	color: #fff;
}

/* Footer Section */
.footer-wrap {
	background: linear-gradient(180deg, transparent 0%, #ffe6f2 30%, #fcddec 100%);
	border-top: 3px solid #ff66b2;
	padding: 60px 20px 40px;
	text-align: center;
	position: relative;
	margin-top: 40px;
}

.footer-brand {
	font-family: var(--font-bubble);
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	color: #ff1493;
	margin-bottom: 6px;
	text-shadow: 2px 2px 0 #ffffff;
}

.footer-tagline {
	font-family: var(--font-pixel);
	font-size: 1.4rem;
	color: #6b21a8;
	margin-bottom: 24px;
	letter-spacing: 1px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.footer-link {
	font-family: var(--font-chunky);
	font-weight: 800;
	font-size: 1.1rem;
	color: #2b1029;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: all 0.2s ease;
}

.footer-link:hover {
	color: #ff1493;
	background: #ffffff;
	border-color: #ff99cc;
	transform: translateY(-2px);
}

.footer-credits {
	font-size: 0.95rem;
	color: #a21caf;
	font-weight: 600;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.footer-counter-box {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #000;
	color: #39ff14;
	font-family: var(--font-pixel);
	font-size: 1.2rem;
	padding: 4px 12px;
	border: 2px solid #555;
	border-radius: 4px;
	margin-top: 16px;
	box-shadow: inset 0 0 6px #39ff14;
}

/* Sparkle Cursor / Burst Overlay */
.sparkle-particle {
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	font-size: 1.2rem;
	animation: particleFade 0.75s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes particleFade {
	0% {
		opacity: 1;
		transform: translate(0, 0) scale(1.2) rotate(0deg);
	}
	100% {
		opacity: 0;
		transform: translate(var(--tx), var(--ty)) scale(0.3) rotate(180deg);
	}
}

/* Toast Notification */
.toast-msg {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #ffffff;
	border: 3px solid #ff1493;
	border-radius: 16px;
	padding: 14px 20px;
	box-shadow: 6px 6px 0 #b794f6, 0 10px 25px rgba(0, 0, 0, 0.15);
	font-family: var(--font-chunky);
	font-weight: 700;
	font-size: 1.05rem;
	color: #d01375;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 10px;
	animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.top-nav-inner {
		flex-direction: column;
		gap: 6px;
	}
	.y2k-window-body {
		padding: 24px 16px;
	}
	.signup-form {
		flex-direction: column;
	}
	.glossy-btn {
		width: 100%;
		padding: 14px 24px;
		font-size: 1.1rem;
	}
	.hero-brand-title {
		letter-spacing: 1px;
	}
}
