@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
	--purple: #9b4f96;
	--bright-purple: #C000C0;
	--hot-pink: #ff00ff;
	--electric-blue: #00ffff;
	--neon-green: #39ff14;
	--bright-yellow: #ffff00;
	--deep-purple: #4b0082;
	--darker-purple: #2d0047;
}

body {
	font-family: 'VT323', monospace;
	background-color: black;
	color: white;
	margin: 0;
	padding: 0;

	background-repeat: repeat;
	background-size: 60px 60px;
	background: linear-gradient(
		135deg,
		var(--darker-purple) 0%,
		var(--deep-purple) 25%,
		var(--bright-purple) 50%,
		var(--deep-purple) 75%,
		var(--darker-purple) 100%
	);

}

.container {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	border: 10px ridge var(--bright-purple);
	background: linear-gradient(to bottom right, #000066, #660066);
	box-shadow: 0 0 20px var(--hot-pink);
	position: relative;
	overflow: hidden;
}

.header {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

h1 {
	font-family: 'Press Start 2P', cursive;
	font-size: 2.5rem;
	color: var(--hot-pink);
	text-shadow: 4px 4px 0 var(--bright-purple), 
				-2px -2px 0 var(--electric-blue),
				0 0 10px var(--hot-pink);
	margin: 0;
	transform: skew(-5deg);
	letter-spacing: 2px;
}

.names {
	font-size: 3rem;
	background: linear-gradient(to right, var(--hot-pink), var(--electric-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 10px rgba(255,255,255,0.5);
	margin: 10px 0;
	font-weight: bold;
}

.gig-title {
	font-size: 2.8rem;
	color: var(--neon-green);
	text-shadow: 0 0 10px var(--neon-green);
	margin: 10px 0 20px 0;
	font-weight: bold;
	transform: rotate(-2deg);
}

.divider {
	height: 20px;
	background: linear-gradient(to right, var(--hot-pink), var(--bright-purple), var(--electric-blue), var(--bright-purple), var(--hot-pink));
	margin: 20px 0;
	box-shadow: 0 0 10px var(--hot-pink),
				inset 0 0 5px var(--electric-blue);
	border: 2px solid var(--hot-pink);
	border-style: double;
	animation: rainbow 5s linear infinite;
	position: relative;
}

.divider::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	/* border: 1px solid var(--electric-blue); */
	pointer-events: none;
	/* box-shadow: 0 0 8px var(--electric-blue); */
}

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

.details {
	font-size: 1.8rem;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 20px;
	margin: 20px 0;
	border: 3px dashed var(--electric-blue);
	text-align: center;
}

.details p {
	margin: 5px 0;
}

.details span {
	color: var(--bright-yellow);
	font-weight: bold;
}

.party-info {
	font-size: 1.7rem;
	line-height: 1.4;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 20px;
	margin: 20px 0;
	border: 3px solid var(--hot-pink);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.party-info strong {
	color: var(--electric-blue);
}

.gif-container {
	display: flex;
	justify-content: center;
	margin: 15px 0;
	gap: 20px;
}

.gif-image {
	max-width: 150px;
	border: 2px solid var(--bright-purple);
	box-shadow: 0 0 10px var(--hot-pink);
}

.food-info {
	font-size: 1.5rem;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 15px;
	margin: 20px 0;
	border: 3px dotted var(--neon-green);
	text-align: center;
	color: var(--neon-green);
}

.description {
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 20px 0;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 20px;
	border-left: 5px solid var(--hot-pink);
}

.blink {
	animation: blink 1s step-end infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

.cursor-effect {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	top: 0;
	left: 0;
	z-index: 100;
}

.rsvp {
	text-align: center;
	margin-top: 30px;
	font-size: 2rem;
}

.rsvp a {
	display: inline-block;
	color: var(--bright-yellow);
	background-color: var(--bright-purple);
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	border: 3px outset var(--hot-pink);
	box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
	transition: all 0.2s;
}

.rsvp a:hover {
	transform: translate(2px, 2px);
	box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.tickets {
	text-align: center;
	margin-top: 20px;
	font-size: 2.2rem;
}

.tickets a {
	display: inline-block;
	color: black;
	background-color: var(--electric-blue);
	padding: 12px 24px;
	text-decoration: none;
	font-weight: bold;
	border: 3px outset var(--bright-purple);
	box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
	transition: all 0.2s;
}

.tickets a:hover {
	transform: translate(2px, 2px);
	box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.social-links a {
	color: var(--hot-pink);
	text-decoration: none;
	font-size: 1.2rem;
}

.social-links a:hover {
	text-decoration: underline;
	color: var(--electric-blue);
}

.hit-counter {
	font-family: 'Press Start 2P', cursive;
	font-size: 0.8rem;
	margin-top: 30px;
	text-align: center;
	color: var(--electric-blue);
}

.hit-counter::before {
	content: "Visitors: ";
}

.marquee {
	overflow: hidden;
	position: relative;
	height: 50px;
	background-color: var(--bright-purple);
	margin: 30px 0;
}

.marquee-content {
	display: block;
	width: 200%;
	position: absolute;
	overflow: hidden;
	animation: marquee 15s linear infinite;
	font-size: 2rem;
	padding: 5px 0;
	color: var(--bright-yellow);
	text-shadow: 2px 2px 0 black;
}

.dates {
	font-size: 2rem;
	padding: 5px 0;
	color: var(--bright-yellow);
	text-shadow: 2px 2px 0 black;
}

@keyframes marquee {
	0% { left: 0; }
	100% { left: -100%; }
}

@media (prefers-reduced-motion: reduce) {
	.marquee-content {
		animation: none;
		left: 0;
		width: 100%;
		text-align: center;
	}
	
	.divider {
		animation: none;
	}
	
	.blink {
		animation: none;
	}
	
	.gif-image {
		display: none;
	}
}

/* Stars cursor effect */
.star {
	position: absolute;
	width: 3px;
	height: 3px;
	background: var(--bright-yellow);
	pointer-events: none;
	border-radius: 50%;
	transition: opacity 0.3s ease;
}

footer {
	text-align: center;
	margin-top: 40px;
	font-size: 1rem;
	color: var(--hot-pink);
}

.under-construction {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 15px 0;
	position: relative;
}

.under-construction-text {
	font-family: 'Press Start 2P', cursive;
	font-size: 1rem;
	color: var(--bright-yellow);
	margin: 10px 0;
	text-align: center;
	text-shadow: 2px 2px 2px black;
}

.small-gif {
	max-width: 100px;
	margin: 5px;
	image-rendering: pixelated;
	border: 2px solid var(--hot-pink);
}

.cat-corner {
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	z-index: 5;
}

.construction-banner {
	display: flex;
	justify-content: center;
	margin: 10px 0;
	flex-wrap: wrap;
} 