/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #83efaa 0%, #6dd4a3 30%, #4ade80 60%, #22c55e 100%);
	min-height: 100vh;
	color: #000;
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 80%, rgba(131, 239, 170, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	position: relative;
	z-index: 1;
}

/* Hero Section */
.hero {
	text-align: center;
	padding: 60px 0;
	position: relative;
}

.dance-container {
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.explain-container {
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
}

.explain-container {
	position: relative;
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(15, 23, 42, 0.6) 100%);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.explain-container .section-title {
	margin-bottom: 20px;
	margin-top: 0;
}

.explain-container::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg,
			#83efaa, #4ade80, #22c55e, #16a34a, #15803d, #166534);
	border-radius: 22px;
	z-index: -1;
	opacity: 0.6;
}

.explain-image {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.explain-image:hover {
	transform: scale(1.02);
}

@media (min-width: 768px) {
	.explain-image {
		max-width: 600px;
	}
}

@media (min-width: 1024px) {
	.explain-image {
		max-width: 700px;
	}
}

.dance-container::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(135deg,
			rgba(131, 239, 170, 0.2) 0%,
			rgba(74, 222, 128, 0.1) 50%,
			rgba(34, 197, 94, 0.2) 100%);
	border-radius: 50px;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

.dance-container::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: radial-gradient(circle,
			rgba(131, 239, 170, 0.3) 0%,
			rgba(131, 239, 170, 0.1) 50%,
			transparent 100%);
	border-radius: 40px;
	z-index: -1;
	animation: glow 2s ease-in-out infinite alternate;
}

.dance-gif {
	max-width: 280px;
	height: auto;
	border-radius: 30px;
	box-shadow:
		0 25px 50px rgba(0, 0, 0, 0.6),
		0 0 0 3px rgba(131, 239, 170, 0.8),
		0 0 40px rgba(131, 239, 170, 0.4),
		inset 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: float 3s ease-in-out infinite;
	filter: saturate(1.3) contrast(1.2) brightness(1.1);
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(0, 0, 0, 0.6) 100%);
	padding: 10px;
	position: relative;
	z-index: 1;
}

.dance-gif:hover {
	transform: scale(1.08) translateY(-8px) rotate(2deg);
	box-shadow:
		0 35px 70px rgba(0, 0, 0, 0.7),
		0 0 0 4px rgba(131, 239, 170, 1),
		0 0 50px rgba(131, 239, 170, 0.6),
		inset 0 2px 4px rgba(0, 0, 0, 0.4);
	filter: saturate(1.5) contrast(1.3) brightness(1.2);
}

.hero-content {
	background: rgba(0, 0, 0, 0.85);
	border-radius: 30px;
	padding: 60px;
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.4),
		0 0 0 2px rgba(131, 239, 170, 0.6),
		0 0 40px rgba(131, 239, 170, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(30px) saturate(1.2);
	border: 2px solid rgba(131, 239, 170, 0.3);
	position: relative;
	overflow: hidden;
}

.hero-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(131, 239, 170, 0.05) 0%,
			transparent 30%,
			transparent 70%,
			rgba(34, 197, 94, 0.05) 100%);
	pointer-events: none;
}


.title {
	font-size: 5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 30%, #22c55e 60%, #16a34a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow:
		0 0 20px rgba(131, 239, 170, 0.5),
		0 0 40px rgba(131, 239, 170, 0.3),
		0 4px 8px rgba(0, 0, 0, 0.3);
	margin-bottom: 30px;
	letter-spacing: -4px;
	position: relative;
	animation: titleGlow 2s ease-in-out infinite alternate, pulse 3s ease-in-out infinite;
	filter: drop-shadow(0 0 10px rgba(131, 239, 170, 0.3));
}

.title::before {
	content: 'the pumpooor';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 50%, #22c55e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: blur(1px);
	opacity: 0.3;
	z-index: -1;
	animation: titleGlow 2s ease-in-out infinite alternate-reverse;
}

.description {
	font-size: 1.3rem;
	color: #83efaa;
	margin-bottom: 30px;
	font-weight: 600;
	text-shadow: 0 0 10px rgba(131, 239, 170, 0.3);
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.pumpooor-quote {
	background: linear-gradient(135deg,
			rgba(131, 239, 170, 0.1) 0%,
			rgba(74, 222, 128, 0.05) 100%);
	border: 2px solid rgba(131, 239, 170, 0.3);
	border-radius: 20px;
	padding: 24px;
	margin: 30px auto;
	max-width: 600px;
	position: relative;
	backdrop-filter: blur(10px);
}

.pumpooor-quote::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #83efaa, #4ade80, #22c55e);
	border-radius: 20px;
	z-index: -1;
	opacity: 0.3;
}

.quote-text {
	font-size: 1.1rem;
	color: #f8fafc;
	font-style: italic;
	margin: 0;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
}

/* Section Titles */
.section-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: #83efaa;
	margin-bottom: 30px;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(131, 239, 170, 0.8);
	letter-spacing: 1px;
}

/* Stats */
.stats {
	margin-top: 40px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 25px;
}

.stat-item {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
	border-radius: 20px;
	padding: 25px;
	border: 2px solid rgba(131, 239, 170, 0.4);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(131, 239, 170, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(131, 239, 170, 0.2), transparent);
	transition: left 0.6s ease;
}

.stat-item:hover::before {
	left: 100%;
}

.stat-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(131, 239, 170, 0.05) 0%,
			transparent 50%,
			rgba(34, 197, 94, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-item:hover::after {
	opacity: 1;
}

.stat-item:hover {
	transform: translateY(-10px) scale(1.05) rotate(1deg);
	box-shadow:
		0 25px 50px rgba(131, 239, 170, 0.4),
		0 0 0 2px rgba(131, 239, 170, 0.8),
		0 0 30px rgba(131, 239, 170, 0.3);
	border-color: #83efaa;
	filter: brightness(1.1) saturate(1.2);
}

.stat-label {
	display: block;
	font-size: 0.95rem;
	color: #83efaa;
	margin-bottom: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	position: relative;
	z-index: 1;
	text-shadow: 0 0 5px rgba(131, 239, 170, 0.3);
}

.stat-value {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 50%, #22c55e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 1;
	text-shadow:
		0 0 10px rgba(131, 239, 170, 0.4),
		0 0 20px rgba(131, 239, 170, 0.2);
	filter: drop-shadow(0 0 5px rgba(131, 239, 170, 0.3));
	animation: statPulse 2s ease-in-out infinite alternate;
}

/* Pumpooor Stats */
.pumpooor-stats {
	margin-top: 40px;
}

.pumpooor-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}

.pumpooor-stat {
	background: linear-gradient(135deg,
			rgba(131, 239, 170, 0.1) 0%,
			rgba(74, 222, 128, 0.05) 100%);
	border: 2px solid rgba(131, 239, 170, 0.3);
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	position: relative;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.pumpooor-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(131, 239, 170, 0.5);
	box-shadow: 0 8px 25px rgba(131, 239, 170, 0.2);
}

.pumpooor-stat-label {
	display: block;
	font-size: 0.875rem;
	color: #94a3b8;
	margin-bottom: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.8;
}

.pumpooor-stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 50%, #22c55e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 8px rgba(131, 239, 170, 0.2);
}

/* Explanation Section */
.explanation-section {
	padding: 80px 0;
	text-align: center;
}

.explanation-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

.explanation-text {
	margin-top: 40px;
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(15, 23, 42, 0.9) 100%);
	border-radius: 20px;
	padding: 40px;
	border: 2px solid rgba(131, 239, 170, 0.3);
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.explanation-text p {
	font-size: 1.3rem;
	color: #f1f5f9;
	line-height: 1.8;
	margin: 0;
	text-align: left;
	font-weight: 400;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Social Section */
.social {
	margin: 40px 0;
	text-align: center;
	position: relative;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.98);
	padding: 18px;
	border-radius: 50px;
	text-decoration: none;
	color: #374151;
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
	width: 70px;
	height: 70px;
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 50px;
}

.social-link:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 15px 35px rgba(131, 239, 170, 0.4), 0 0 0 1px rgba(131, 239, 170, 0.6);
	color: white;
}

.social-link:hover::before {
	opacity: 1;
}

.social-icon {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-icon {
	width: 28px;
	height: 28px;
}

/* Contract Address */
.contract-address {
	margin: 0 auto;
	max-width: 600px;
}


.ca-container {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}


.ca-value {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 0.9rem;
	color: #1f2937;
	font-weight: 600;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 12px 15px;
	border-radius: 12px;
	border: 2px solid rgba(131, 239, 170, 0.3);
	letter-spacing: 0.5px;
	line-height: 1.4;
	flex: 1;
	min-width: 200px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
}

.ca-value:hover {
	border-color: #83efaa;
	box-shadow: 0 5px 15px rgba(131, 239, 170, 0.2);
	transform: translateY(-2px);
	background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.ca-value:active {
	transform: translateY(0px) scale(0.98);
	box-shadow: 0 2px 8px rgba(131, 239, 170, 0.3);
}

.copy-btn {
	background: linear-gradient(135deg, #83efaa 0%, #4ade80 100%);
	border: none;
	border-radius: 8px;
	padding: 8px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(131, 239, 170, 0.3);
	position: relative;
	overflow: hidden;
	width: 36px;
	height: 36px;
}

.copy-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.copy-btn:hover {
	background: #6dd4a3;
	transform: scale(1.05);
}

.copy-btn:active {
	transform: scale(0.95);
}

.copy-icon {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

/* Toast Notification */
.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	background: #83efaa;
	color: white;
	padding: 15px 25px;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(131, 239, 170, 0.3);
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 1000;
	font-weight: 600;
}

.toast.show {
	transform: translateX(0);
}

/* Responsive Design */

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
	.container {
		padding: 15px;
	}

	.title {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.description {
		font-size: 0.9rem;
		line-height: 1.5;
		margin-bottom: 25px;
	}

	.pumpooor-quote {
		padding: 15px;
		margin: 20px 0;
	}

	.quote-text {
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.stat-item,
	.pumpooor-stat {
		padding: 15px;
	}

	.social-links {
		gap: 12px;
		margin: 20px 0;
	}

	.social-link {
		width: 50px;
		height: 50px;
	}

	.contract-address {
		flex-direction: column;
		gap: 12px;
		margin: 20px 0;
	}

	.ca-value {
		font-size: 0.8rem;
		padding: 10px 15px;
		min-width: 180px;
		height: 40px;
	}

	.copy-btn {
		width: 32px;
		height: 32px;
	}

	.explain-container {
		padding: 20px;
		margin: 15px 0;
	}

	.explain-image {
		max-width: 100%;
	}

	.explanation-text {
		padding: 20px;
		margin-top: 20px;
	}

	.explanation-text p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.dance-container {
		margin-bottom: 30px;
	}

	.dance-gif {
		max-width: 280px;
	}
}

/* Mobile (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
	.container {
		padding: 20px;
	}

	.title {
		font-size: 2.5rem;
	}

	.description {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.social-links {
		gap: 15px;
	}

	.social-link {
		width: 60px;
		height: 60px;
	}

	.contract-address {
		flex-direction: row;
		gap: 15px;
	}

	.ca-value {
		font-size: 0.9rem;
		padding: 12px 18px;
		min-width: 220px;
	}

	.copy-btn {
		width: 34px;
		height: 34px;
	}

	.explain-image {
		max-width: 100%;
		width: 100%;
	}

	.dance-gif {
		max-width: 350px;
	}
}

/* Specific fix for 600-700px range */
@media (min-width: 600px) and (max-width: 700px) {
	.explain-container {
		padding: 15px;
	}

	.explain-image {
		max-width: 100%;
		width: 100%;
		height: auto;
	}
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
	.container {
		padding: 30px;
	}

	.title {
		font-size: 3rem;
	}

	.description {
		font-size: 1.1rem;
	}

	.section-title {
		font-size: 1.7rem;
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}

	.social-link {
		width: 65px;
		height: 65px;
	}

	.ca-value {
		font-size: 1rem;
		padding: 14px 20px;
		min-width: 250px;
	}

	.copy-btn {
		width: 36px;
		height: 36px;
	}

	.explain-image {
		max-width: 100%;
		width: 100%;
	}

	.dance-gif {
		max-width: 400px;
	}
}

/* Desktop (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
	.container {
		padding: 40px;
	}

	.title {
		font-size: 3.5rem;
	}

	.description {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.social-link {
		width: 70px;
		height: 70px;
	}

	.ca-value {
		font-size: 1.1rem;
		padding: 16px 24px;
		min-width: 280px;
	}

	.copy-btn {
		width: 38px;
		height: 38px;
	}

	.explain-image {
		max-width: 700px;
	}

	.dance-gif {
		max-width: 450px;
	}

	/* Hide Volume 5m at 1200px and below */
	.stat-item:nth-child(5) {
		display: none;
	}
}

/* Desktop (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
	.container {
		padding: 40px;
	}

	.title {
		font-size: 3.5rem;
	}

	.description {
		font-size: 1.2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.stats-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 30px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.social-link {
		width: 70px;
		height: 70px;
	}

	.ca-value {
		font-size: 1.1rem;
		padding: 16px 24px;
		min-width: 280px;
	}

	.copy-btn {
		width: 38px;
		height: 38px;
	}

	.explain-image {
		max-width: 700px;
	}

	.dance-gif {
		max-width: 450px;
	}
}

/* Large Desktop (1441px+) */
@media (min-width: 1441px) {
	.container {
		padding: 50px;
		max-width: 1400px;
		margin: 0 auto;
	}

	.title {
		font-size: 4rem;
	}

	.description {
		font-size: 1.3rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.stats-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 35px;
	}

	.pumpooor-stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 35px;
	}

	.social-link {
		width: 75px;
		height: 75px;
	}

	.ca-value {
		font-size: 1.2rem;
		padding: 18px 28px;
		min-width: 300px;
	}

	.copy-btn {
		width: 40px;
		height: 40px;
	}

	.explain-image {
		max-width: 800px;
	}

	.dance-gif {
		max-width: 500px;
	}
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		padding: 40px 0;
	}

	.dance-container {
		margin-bottom: 20px;
	}

	.dance-gif {
		max-width: 200px;
	}

	.title {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.description {
		font-size: 0.9rem;
		margin-bottom: 15px;
	}

	.stats {
		margin-top: 20px;
	}

	.pumpooor-stats {
		margin-top: 20px;
	}
}

/* Degen Animations */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes glow {
	0% {
		filter: saturate(1.2) contrast(1.1) brightness(1);
	}

	100% {
		filter: saturate(1.4) contrast(1.3) brightness(1.1);
	}
}

@keyframes titleGlow {
	0% {
		text-shadow: 0 0 20px rgba(131, 239, 170, 0.5), 0 0 40px rgba(131, 239, 170, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
	}

	100% {
		text-shadow: 0 0 30px rgba(131, 239, 170, 0.7), 0 0 60px rgba(131, 239, 170, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.02);
	}
}

@keyframes statPulse {
	0% {
		filter: drop-shadow(0 0 5px rgba(131, 239, 170, 0.3));
	}

	100% {
		filter: drop-shadow(0 0 15px rgba(131, 239, 170, 0.6));
	}
}

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

	100% {
		transform: translateX(100%);
	}
}