@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Creepster&family=Bungee&family=Fredoka+One:wght@400&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Comic Neue', cursive;
	background:
		radial-gradient(circle at 20% 80%, #ff00ff 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, #00ffff 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, #ffff00 0%, transparent 50%),
		linear-gradient(45deg, #ff1493, #00ff00, #ff4500, #8a2be2, #ffd700, #ff69b4);
	background-size: 400% 400%, 300% 300%, 500% 500%, 600% 600%;
	animation:
		psychedelicShift 4s ease infinite,
		backgroundPulse 2s ease-in-out infinite alternate;
	min-height: 100vh;
	overflow-x: hidden;
	cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><text y="20" font-size="20">😬</text></svg>'), auto;
}

@keyframes psychedelicShift {
	0% {
		background-position: 0% 50%, 100% 0%, 50% 50%, 0% 0%;
	}

	25% {
		background-position: 100% 50%, 0% 100%, 0% 0%, 100% 100%;
	}

	50% {
		background-position: 50% 100%, 50% 50%, 100% 100%, 50% 50%;
	}

	75% {
		background-position: 0% 0%, 100% 0%, 0% 50%, 0% 100%;
	}

	100% {
		background-position: 0% 50%, 100% 0%, 50% 50%, 0% 0%;
	}
}

@keyframes backgroundPulse {
	from {
		filter: brightness(1) saturate(1) hue-rotate(0deg);
	}

	to {
		filter: brightness(1.2) saturate(1.5) hue-rotate(10deg);
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
}

.header {
	text-align: center;
	margin-bottom: 40px;
	animation: crazyBounce 3s ease infinite;
}

@keyframes crazyBounce {

	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}

	10% {
		transform: scale(1.1) rotate(5deg);
	}

	20% {
		transform: scale(0.9) rotate(-3deg);
	}

	30% {
		transform: scale(1.05) rotate(2deg);
	}

	40% {
		transform: scale(0.95) rotate(-1deg);
	}

	50% {
		transform: scale(1.03) rotate(1deg);
	}

	60% {
		transform: scale(0.97) rotate(-0.5deg);
	}

	70% {
		transform: scale(1.01) rotate(0.3deg);
	}

	80% {
		transform: scale(0.99) rotate(-0.1deg);
	}

	90% {
		transform: scale(1.005) rotate(0.05deg);
	}
}

.title {
	font-family: 'Bungee', cursive;
	font-size: 5rem;
	background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff, #ff8000, #0080ff, #ff0040);
	background-size: 600% 600%;
	animation:
		rainbowShift 2s ease infinite,
		textWobble 4s ease-in-out infinite,
		glitchText 8s infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow:
		0 0 10px rgba(255, 0, 128, 0.8),
		0 0 20px rgba(0, 255, 128, 0.6),
		0 0 30px rgba(128, 0, 255, 0.4);
	margin-bottom: 20px;
	transform: perspective(500px) rotateX(15deg);
	letter-spacing: 0.1em;
}

@keyframes rainbowShift {
	0% {
		background-position: 0% 50%;
		hue-rotate: 0deg;
	}

	50% {
		background-position: 100% 50%;
		hue-rotate: 180deg;
	}

	100% {
		background-position: 0% 50%;
		hue-rotate: 360deg;
	}
}

@keyframes textWobble {

	0%,
	100% {
		transform: perspective(500px) rotateX(15deg) rotateY(0deg);
	}

	25% {
		transform: perspective(500px) rotateX(20deg) rotateY(5deg);
	}

	50% {
		transform: perspective(500px) rotateX(10deg) rotateY(0deg);
	}

	75% {
		transform: perspective(500px) rotateX(25deg) rotateY(-5deg);
	}
}

@keyframes glitchText {

	0%,
	90%,
	100% {
		transform: perspective(500px) rotateX(15deg) translate(0);
	}

	91% {
		transform: perspective(500px) rotateX(15deg) translate(-2px, -2px);
	}

	92% {
		transform: perspective(500px) rotateX(15deg) translate(2px, 2px);
	}

	93% {
		transform: perspective(500px) rotateX(15deg) translate(-1px, 1px);
	}

	94% {
		transform: perspective(500px) rotateX(15deg) translate(1px, -1px);
	}
}

.subtitle {
	font-family: 'Fredoka One', cursive;
	font-size: 2rem;
	color: #2d3436;
	font-weight: bold;
	text-shadow:
		3px 3px 0px #ff00ff,
		6px 6px 0px #00ffff,
		9px 9px 0px #ffff00;
	animation:
		shadowDance 3s ease-in-out infinite,
		colorCycle 5s ease infinite;
	transform: rotate(-2deg);
}

@keyframes shadowDance {

	0%,
	100% {
		text-shadow:
			3px 3px 0px #ff00ff,
			6px 6px 0px #00ffff,
			9px 9px 0px #ffff00;
	}

	50% {
		text-shadow:
			-3px -3px 0px #ff00ff,
			-6px -6px 0px #00ffff,
			-9px -9px 0px #ffff00;
	}
}

@keyframes colorCycle {
	0% {
		color: #ff0080;
	}

	20% {
		color: #00ff80;
	}

	40% {
		color: #8000ff;
	}

	60% {
		color: #ff8000;
	}

	80% {
		color: #0080ff;
	}

	100% {
		color: #ff0080;
	}
}

.warning-banner {
	background: linear-gradient(45deg, #ff0000, #ffff00, #ff0000, #ffff00);
	background-size: 200% 200%;
	animation: warningFlash 0.5s ease infinite;
	color: #000;
	text-align: center;
	padding: 15px;
	font-size: 1.2rem;
	font-weight: bold;
	border: 5px dashed #ff0000;
	margin: 20px 0;
	transform: rotate(1deg);
}

@keyframes warningFlash {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.domains {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin: 80px 0;
	flex-wrap: wrap;
}

.domain-card {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.1) 100%),
		linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(0, 255, 255, 0.2));
	backdrop-filter: blur(20px) saturate(180%);
	border: 5px solid;
	border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
	border-radius: 30px;
	padding: 40px;
	text-align: center;
	transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.675);
	position: relative;
	overflow: hidden;
	animation: cardFloat 6s ease-in-out infinite;
}

.domain-card:nth-child(1) {
	animation-delay: 0s;
}

.domain-card:nth-child(2) {
	animation-delay: 3s;
}

@keyframes cardFloat {

	0%,
	100% {
		transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px);
	}

	25% {
		transform: perspective(1000px) rotateX(5deg) rotateY(3deg) translateY(-20px);
	}

	50% {
		transform: perspective(1000px) rotateX(-3deg) rotateY(-2deg) translateY(-10px);
	}

	75% {
		transform: perspective(1000px) rotateX(2deg) rotateY(4deg) translateY(-15px);
	}
}

.domain-card::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 300%;
	height: 300%;
	background:
		conic-gradient(from 0deg,
			transparent,
			rgba(255, 0, 255, 0.3),
			transparent,
			rgba(0, 255, 255, 0.3),
			transparent,
			rgba(255, 255, 0, 0.3),
			transparent);
	animation: spinningRainbow 4s linear infinite;
	opacity: 0;
}

@keyframes spinningRainbow {
	to {
		transform: rotate(360deg);
	}
}

.domain-card:hover {
	transform: perspective(1000px) rotateX(20deg) rotateY(15deg) scale(1.1);
	box-shadow:
		0 30px 60px rgba(255, 0, 255, 0.4),
		0 0 100px rgba(0, 255, 255, 0.3),
		inset 0 0 50px rgba(255, 255, 0, 0.2);
	animation: crazyShake 0.5s ease infinite;
}

.domain-card:hover::before {
	opacity: 1;
}

@keyframes crazyShake {

	0%,
	100% {
		transform: perspective(1000px) rotateX(20deg) rotateY(15deg) scale(1.1);
	}

	25% {
		transform: perspective(1000px) rotateX(22deg) rotateY(17deg) scale(1.12);
	}

	75% {
		transform: perspective(1000px) rotateX(18deg) rotateY(13deg) scale(1.08);
	}
}

.domain-name {
	font-family: 'Bungee', cursive;
	font-size: 3rem;
	background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff, #ff8000);
	background-size: 400% 400%;
	animation: rainbowShift 2s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
	transform: rotateZ(-5deg);
}

.domain-emoji {
	font-size: 4rem;
	animation:
		emojiSpin 3s linear infinite,
		emojiScale 2s ease-in-out infinite alternate;
	display: block;
	margin: 10px 0;
}

@keyframes emojiSpin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes emojiScale {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.3);
	}
}

.warning-banner {
	background: linear-gradient(45deg, #ff0000, #ffff00, #ff00ff, #00ffff);
	background-size: 400% 400%;
	animation:
		warningRainbow 1s ease infinite,
		bannerShake 0.1s ease infinite;
	color: #000;
	text-align: center;
	padding: 20px;
	font-size: 1.5rem;
	font-weight: bold;
	border: 10px double #ff0000;
	margin: 30px 0;
	transform: rotate(-1deg);
	box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
}

@keyframes warningRainbow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes bannerShake {

	0%,
	100% {
		transform: rotate(-1deg) translate(0px, 0px);
	}

	25% {
		transform: rotate(-1.2deg) translate(-1px, -1px);
	}

	50% {
		transform: rotate(-0.8deg) translate(1px, 1px);
	}

	75% {
		transform: rotate(-1.1deg) translate(-1px, 1px);
	}
}

.features {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
		linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
	backdrop-filter: blur(20px) contrast(120%) saturate(150%);
	border-radius: 25px;
	padding: 50px;
	margin: 80px 0;
	border: 8px solid;
	border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
	position: relative;
	animation: sectionBreathe 4s ease-in-out infinite;
}

@keyframes sectionBreathe {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.02);
	}
}

.features::before {
	content: '💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮💀🤮';
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	font-size: 2rem;
	background: #000;
	color: #fff;
	text-align: center;
	padding: 10px;
	animation: marqueeScroll 8s linear infinite;
	white-space: nowrap;
	overflow: hidden;
}

@keyframes marqueeScroll {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.features h2 {
	font-family: 'Creepster', cursive;
	font-size: 3.5rem;
	text-align: center;
	margin: 40px 0;
	background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff);
	background-size: 300% 300%;
	animation: rainbowShift 3s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
	animation:
		rainbowShift 3s ease infinite,
		headingDance 5s ease-in-out infinite;
}

@keyframes headingDance {

	0%,
	100% {
		transform: rotate(0deg) scale(1);
	}

	25% {
		transform: rotate(2deg) scale(1.05);
	}

	50% {
		transform: rotate(0deg) scale(1.1);
	}

	75% {
		transform: rotate(-2deg) scale(1.05);
	}
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.feature {
	background:
		radial-gradient(circle at top left, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
		radial-gradient(circle at bottom right, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
		rgba(255, 255, 255, 0.2);
	padding: 30px;
	border-radius: 20px;
	border: 4px solid;
	border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff) 1;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	animation: featureFloat 8s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.feature:nth-child(odd) {
	animation-delay: 0s;
}

.feature:nth-child(even) {
	animation-delay: 4s;
}

@keyframes featureFloat {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-15px) rotate(1deg);
	}

	50% {
		transform: translateY(-25px) rotate(0deg);
	}

	75% {
		transform: translateY(-10px) rotate(-1deg);
	}
}

.feature:hover {
	transform: translateY(-20px) rotate(10deg) scale(1.1);
	box-shadow:
		0 25px 50px rgba(255, 0, 255, 0.4),
		0 0 100px rgba(0, 255, 255, 0.3);
	animation: featureSpasm 0.3s ease infinite;
}

@keyframes featureSpasm {

	0%,
	100% {
		transform: translateY(-20px) rotate(10deg) scale(1.1);
	}

	50% {
		transform: translateY(-22px) rotate(12deg) scale(1.12);
	}
}

.feature h3 {
	font-family: 'Fredoka One', cursive;
	font-size: 1.6rem;
	background: linear-gradient(45deg, #ff0080, #00ff80);
	background-size: 200% 200%;
	animation: rainbowShift 4s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 15px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature p {
	color: #2d3436;
	line-height: 1.8;
	font-weight: bold;
	font-size: 1.1rem;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.cta-section {
	text-align: center;
	margin: 100px 0;
	animation: ctaPulse 3s ease-in-out infinite;
	position: relative;
}

@keyframes ctaPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.cta-section::before {
	content: '🚨 URGENT! DOMAINS WON\'T LAST LONG! 🚨';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: #ff0000;
	color: #fff;
	padding: 10px 20px;
	border-radius: 15px;
	font-weight: bold;
	animation: urgentBlink 1s ease infinite;
	font-size: 1rem;
}

@keyframes urgentBlink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.cta-button {
	background: linear-gradient(45deg, #ff0080, #8000ff, #00ff80, #ff8000);
	background-size: 400% 400%;
	animation:
		rainbowShift 2s ease infinite,
		buttonDance 4s ease-in-out infinite;
	color: #fff;
	font-family: 'Fredoka One', cursive;
	font-size: 2.2rem;
	font-weight: bold;
	padding: 25px 60px;
	border: 6px solid #fff;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.3),
		0 0 50px rgba(255, 0, 255, 0.5),
		inset 0 0 30px rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes buttonDance {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(3deg);
	}

	75% {
		transform: rotate(-3deg);
	}
}

.cta-button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
}

.cta-button:hover {
	transform: scale(1.2) rotate(5deg);
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 100px rgba(255, 0, 255, 0.8),
		0 0 150px rgba(0, 255, 255, 0.6);
	animation: buttonSpasm 0.2s ease infinite;
}

.cta-button:hover::after {
	width: 300px;
	height: 300px;
}

@keyframes buttonSpasm {

	0%,
	100% {
		transform: scale(1.2) rotate(5deg);
	}

	50% {
		transform: scale(1.25) rotate(7deg);
	}
}

.cta-button:active {
	transform: scale(0.9) rotate(-10deg);
	animation: explosionEffect 0.5s ease;
}

@keyframes explosionEffect {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.8);
	}

	100% {
		box-shadow: 0 0 0 50px rgba(255, 0, 255, 0);
	}
}

.stats {
	display: flex;
	justify-content: space-around;
	margin: 60px 0;
	flex-wrap: wrap;
	gap: 30px;
}

.stat {
	text-align: center;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 0, 255, 0.2) 100%);
	padding: 30px;
	border-radius: 20px;
	backdrop-filter: blur(15px);
	border: 4px solid;
	border-image: linear-gradient(45deg, #ff00ff, #00ffff) 1;
	animation: statBounce 6s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}

.stat:nth-child(1) {
	animation-delay: 0s;
}

.stat:nth-child(2) {
	animation-delay: 2s;
}

.stat:nth-child(3) {
	animation-delay: 4s;
}

@keyframes statBounce {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-15px) rotate(5deg);
	}
}

.stat-number {
	font-family: 'Bungee', cursive;
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(45deg, #ff0080, #00ff80);
	background-size: 200% 200%;
	animation: rainbowShift 3s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.stat-label {
	color: #2d3436;
	font-weight: bold;
	margin-top: 10px;
	font-size: 1.1rem;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.floating-emoji {
	position: fixed;
	font-size: 3rem;
	pointer-events: none;
	z-index: -1;
	animation: chaosFloat 20s linear infinite;
	opacity: 0.8;
}

@keyframes chaosFloat {
	0% {
		transform: translateY(100vh) rotate(0deg) scale(1);
		left: -10%;
	}

	25% {
		transform: translateY(75vh) rotate(90deg) scale(1.5);
		left: 25%;
	}

	50% {
		transform: translateY(50vh) rotate(180deg) scale(0.8);
		left: 75%;
	}

	75% {
		transform: translateY(25vh) rotate(270deg) scale(1.2);
		left: 50%;
	}

	100% {
		transform: translateY(-100px) rotate(360deg) scale(1);
		left: 110%;
	}
}

.footer {
	text-align: center;
	margin-top: 80px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 30px;
	border-radius: 20px;
	border: 3px solid #ff00ff;
	animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
	from {
		box-shadow: 0 0 20px #ff00ff;
	}

	to {
		box-shadow: 0 0 50px #00ffff;
	}
}

.social-proof {
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
	margin: 40px 0;
	border-radius: 15px;
	border: 3px dashed #ff00ff;
	text-align: center;
	animation: socialShake 2s ease-in-out infinite;
	transform: rotate(2deg);
}

@keyframes socialShake {

	0%,
	100% {
		transform: rotate(2deg);
	}

	50% {
		transform: rotate(-2deg);
	}
}

.testimonial {
	font-style: italic;
	font-size: 1.2rem;
	color: #2d3436;
	font-weight: bold;
	margin: 10px 0;
}

@media (max-width: 768px) {
	.title {
		font-size: 3rem;
	}

	.domains {
		flex-direction: column;
		align-items: center;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.stats {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		font-size: 1.8rem;
		padding: 20px 40px;
	}

	.domain-name {
		font-size: 2rem;
	}

	.features h2 {
		font-size: 2.5rem;
	}
}

.chaos-mode {
	animation: totalChaos 10s ease infinite;
}

@keyframes totalChaos {
	0% {
		filter: hue-rotate(0deg) saturate(1);
	}

	25% {
		filter: hue-rotate(90deg) saturate(2);
	}

	50% {
		filter: hue-rotate(180deg) saturate(3);
	}

	75% {
		filter: hue-rotate(270deg) saturate(2);
	}

	100% {
		filter: hue-rotate(360deg) saturate(1);
	}
}

.screen-shake {
	animation: screenShake 0.5s ease-in-out;
}

@keyframes screenShake {

	0%,
	100% {
		transform: translate(0);
	}

	10% {
		transform: translate(-10px, -10px);
	}

	20% {
		transform: translate(10px, -10px);
	}

	30% {
		transform: translate(-10px, 10px);
	}

	40% {
		transform: translate(10px, 10px);
	}

	50% {
		transform: translate(-10px, -10px);
	}

	60% {
		transform: translate(10px, -10px);
	}

	70% {
		transform: translate(-10px, 10px);
	}

	80% {
		transform: translate(10px, 10px);
	}

	90% {
		transform: translate(-10px, -10px);
	}
}