@font-face {
	font-family: "Simpson";
	src: url("Simpsonfont DEMO.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

:root {
	--simpson-yellow: #FFD90F;
	--simpson-blue: #1E90FF;
	--simpson-red: #FF4444;
	--simpson-green: #00CC66;
	--simpson-orange: #FF8C00;
	--simpson-teal: #1a3a3a;
	--simpson-teal-light: #2a4a4a;
	--simpson-teal-lighter: #3a5a5a;
	--simpson-dark: #1a2a2a;
	--simpson-darker: #0f1f1f;
	--white: #FFFFFF;
	--text-light: #F5F5F5;
	--text-gray: #CCCCCC;
	--neon-yellow: #FFD90F;
	--neon-blue: #00FFFF;
	--neon-pink: #FF00FF;
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--simpson-darker);
	background-image:
		radial-gradient(circle at 20% 50%, rgba(26, 58, 58, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 50% 20%, rgba(255, 217, 15, 0.1) 0%, transparent 50%),
		repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(26, 58, 58, 0.04) 10px,
			rgba(26, 58, 58, 0.04) 20px);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Glitch Effect */
.glitch {
	position: relative;
	animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.glitch::before {
	left: 2px;
	text-shadow: -2px 0 var(--simpson-red);
	clip: rect(44px, 450px, 56px, 0);
	animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
	left: -2px;
	text-shadow: -2px 0 var(--simpson-blue), 2px 2px var(--simpson-red);
	animation: glitch-anim2 1s infinite linear alternate-reverse;
}

.glitch-large {
	position: relative;
}

.glitch-large::before,
.glitch-large::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.glitch-large::before {
	left: 3px;
	text-shadow: -3px 0 var(--simpson-red);
	animation: glitch-large 3s infinite;
}

.glitch-large::after {
	left: -3px;
	text-shadow: 3px 0 var(--simpson-blue);
	animation: glitch-large 2s infinite;
}

.glitch-title {
	position: relative;
}

.glitch-title::before,
.glitch-title::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.glitch-title::before {
	left: 2px;
	text-shadow: -2px 0 var(--simpson-red);
	animation: glitch-title 4s infinite;
}

.glitch-title::after {
	left: -2px;
	text-shadow: 2px 0 var(--simpson-blue);
	animation: glitch-title 3s infinite reverse;
}

@keyframes glitch {

	0%,
	100% {
		transform: translate(0);
	}

	20% {
		transform: translate(-2px, 2px);
	}

	40% {
		transform: translate(-2px, -2px);
	}

	60% {
		transform: translate(2px, 2px);
	}

	80% {
		transform: translate(2px, -2px);
	}
}

@keyframes glitch-anim {
	0% {
		clip: rect(10px, 9999px, 20px, 0);
	}

	20% {
		clip: rect(30px, 9999px, 40px, 0);
	}

	40% {
		clip: rect(50px, 9999px, 60px, 0);
	}

	60% {
		clip: rect(20px, 9999px, 30px, 0);
	}

	80% {
		clip: rect(40px, 9999px, 50px, 0);
	}

	100% {
		clip: rect(60px, 9999px, 70px, 0);
	}
}

@keyframes glitch-anim2 {
	0% {
		clip: rect(20px, 9999px, 30px, 0);
	}

	20% {
		clip: rect(50px, 9999px, 60px, 0);
	}

	40% {
		clip: rect(10px, 9999px, 20px, 0);
	}

	60% {
		clip: rect(40px, 9999px, 50px, 0);
	}

	80% {
		clip: rect(30px, 9999px, 40px, 0);
	}

	100% {
		clip: rect(60px, 9999px, 70px, 0);
	}
}

@keyframes glitch-large {

	0%,
	100% {
		transform: translate(0);
		opacity: 0.8;
	}

	25% {
		transform: translate(-3px, 3px);
		opacity: 0.6;
	}

	50% {
		transform: translate(3px, -3px);
		opacity: 0.6;
	}

	75% {
		transform: translate(-3px, -3px);
		opacity: 0.6;
	}
}

@keyframes glitch-title {

	0%,
	100% {
		transform: translate(0);
		opacity: 0.7;
	}

	33% {
		transform: translate(-2px, 2px);
		opacity: 0.5;
	}

	66% {
		transform: translate(2px, -2px);
		opacity: 0.5;
	}
}

/* Neon Effects */
.neon-button {
	position: relative;
	overflow: hidden;
}

.neon-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 217, 15, 0.4), transparent);
	transition: left 0.5s;
}

.neon-button:hover::before {
	left: 100%;
}

.neon-text {
	position: relative;
	z-index: 1;
	text-shadow:
		0 0 5px var(--neon-yellow),
		0 0 10px var(--neon-yellow),
		0 0 15px var(--neon-yellow),
		0 0 20px var(--neon-yellow);
	animation: neon-flicker 2s infinite;
}

@keyframes neon-flicker {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.8;
	}
}

.neon-card {
	position: relative;
}

.neon-card::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--neon-yellow), var(--neon-blue), var(--neon-pink), var(--neon-yellow));
	background-size: 400% 400%;
	border-radius: inherit;
	z-index: -1;
	opacity: 0;
	animation: gradient-rotate 3s ease infinite;
	transition: opacity 0.3s ease;
}

.neon-card:hover::before {
	opacity: 0.6;
}

@keyframes gradient-rotate {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.neon-input {
	position: relative;
}

.neon-input::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, var(--neon-yellow), var(--neon-blue), var(--neon-yellow));
	background-size: 200% 200%;
	border-radius: inherit;
	z-index: -1;
	opacity: 0.5;
	animation: gradient-rotate 2s ease infinite;
}

/* Pulse Effects */
.pulse-button {
	position: relative;
	overflow: visible;
}

.pulse-button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: var(--simpson-yellow);
	opacity: 0;
	animation: pulse 2s infinite;
	z-index: -1;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

.pulse-icon {
	animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

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

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

/* Particles */
.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.particles::before,
.particles::after {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--simpson-yellow);
	border-radius: 50%;
	box-shadow:
		100px 200px var(--simpson-yellow),
		300px 100px var(--simpson-blue),
		500px 300px var(--simpson-red),
		700px 150px var(--simpson-yellow),
		900px 250px var(--simpson-blue),
		1100px 180px var(--simpson-green),
		200px 400px var(--simpson-yellow),
		400px 350px var(--simpson-blue),
		600px 450px var(--simpson-red),
		800px 380px var(--simpson-yellow),
		1000px 420px var(--simpson-blue),
		1200px 300px var(--simpson-green);
	animation: float 20s infinite;
	opacity: 0.6;
}

.particles::after {
	animation-delay: -10s;
	box-shadow:
		150px 250px var(--simpson-blue),
		350px 150px var(--simpson-red),
		550px 350px var(--simpson-yellow),
		750px 200px var(--simpson-blue),
		950px 300px var(--simpson-red),
		1150px 230px var(--simpson-yellow),
		250px 450px var(--simpson-blue),
		450px 400px var(--simpson-red),
		650px 500px var(--simpson-yellow),
		850px 430px var(--simpson-blue),
		1050px 470px var(--simpson-red),
		1250px 350px var(--simpson-yellow);
}

@keyframes float {

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

	25% {
		transform: translateY(-20px) translateX(10px);
	}

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

	75% {
		transform: translateY(-20px) translateX(5px);
	}
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 31, 31, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 3px solid var(--simpson-yellow);
	box-shadow: 0 4px 20px rgba(255, 217, 15, 0.3);
	z-index: 100;
	padding: 15px 0;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.logo-text {
	font-family: "Simpson", sans-serif;
	font-size: 2rem;
	color: var(--simpson-yellow);
	text-shadow:
		2px 2px 0px var(--simpson-blue),
		0 0 10px var(--simpson-yellow),
		0 0 20px var(--simpson-yellow);
	letter-spacing: 2px;
}

.nav {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--simpson-yellow);
	box-shadow: 0 0 10px var(--simpson-yellow);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--simpson-yellow);
	text-shadow: 0 0 10px var(--simpson-yellow);
}

.nav-link:hover::after {
	width: 100%;
}

.btn-buy {
	background: var(--simpson-yellow);
	color: var(--simpson-dark);
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid var(--simpson-yellow);
	box-shadow:
		0 0 10px var(--simpson-yellow),
		0 0 20px var(--simpson-yellow);
}

.btn-buy:hover {
	background: transparent;
	color: var(--simpson-yellow);
	transform: scale(1.05);
	box-shadow:
		0 0 15px var(--simpson-yellow),
		0 0 30px var(--simpson-yellow);
}

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 35px;
	height: 35px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 101;
	position: relative;
}

.burger-line {
	width: 100%;
	height: 4px;
	background: var(--simpson-yellow);
	border-radius: 3px;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px var(--simpson-yellow);
	transform-origin: center;
	position: relative;
}

.burger-menu.active .burger-line:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
	opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

.btn-buy-mobile {
	display: none;
	background: var(--simpson-yellow);
	color: var(--simpson-dark);
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 3px solid var(--simpson-yellow);
	box-shadow:
		0 0 15px var(--simpson-yellow),
		0 0 30px var(--simpson-yellow);
	text-align: center;
	margin-top: 20px;
	width: 100%;
}

/* Toast Notification */
.toast {
	position: fixed;
	top: 90px;
	right: 20px;
	background: var(--simpson-green);
	color: var(--white);
	padding: 16px 24px;
	border-radius: 12px;
	box-shadow:
		0 8px 32px rgba(0, 204, 102, 0.4),
		0 0 20px var(--simpson-green);
	z-index: 1000;
	opacity: 0;
	transform: translateX(400px);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	pointer-events: none;
}

.toast.show {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.toast-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.toast-icon {
	font-size: 24px;
	font-weight: bold;
}

.toast-message {
	font-weight: 600;
	font-size: 1rem;
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	background-image: url("hero.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 70px;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(15, 31, 31, 0.7) 0%,
			rgba(26, 58, 58, 0.6) 50%,
			rgba(30, 144, 255, 0.25) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 40px 20px;
	animation: fadeInUp 1s ease-out;
	max-width: 900px;
}

.hero-title {
	font-family: "Simpson", sans-serif;
	font-size: clamp(4rem, 12vw, 9rem);
	color: var(--simpson-yellow);
	text-shadow:
		4px 4px 0px var(--simpson-blue),
		8px 8px 0px var(--simpson-red),
		12px 12px 30px rgba(0, 0, 0, 0.9),
		0 0 20px var(--simpson-yellow),
		0 0 40px var(--simpson-yellow),
		0 0 60px var(--simpson-yellow);
	margin-bottom: 20px;
	letter-spacing: 3px;
	line-height: 1.1;
	animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
	from {
		text-shadow:
			4px 4px 0px var(--simpson-blue),
			8px 8px 0px var(--simpson-red),
			12px 12px 30px rgba(0, 0, 0, 0.9),
			0 0 20px var(--simpson-yellow),
			0 0 40px var(--simpson-yellow);
	}

	to {
		text-shadow:
			4px 4px 0px var(--simpson-blue),
			8px 8px 0px var(--simpson-red),
			12px 12px 30px rgba(0, 0, 0, 0.9),
			0 0 30px var(--simpson-yellow),
			0 0 60px var(--simpson-yellow),
			0 0 80px var(--simpson-yellow);
	}
}

.hero-subtitle {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--text-light);
	margin-bottom: 20px;
	font-weight: 800;
	text-shadow:
		2px 2px 8px rgba(0, 0, 0, 0.8),
		0 0 10px rgba(255, 217, 15, 0.5);
}

.hero-description {
	font-size: clamp(1rem, 2.5vw, 1.3rem);
	color: var(--text-gray);
	margin-bottom: 40px;
	font-weight: 500;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 18px 40px;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: 3px solid transparent;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.btn-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: width 0.6s, height 0.6s;
}

.btn:hover .btn-glow {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: var(--simpson-yellow);
	color: var(--simpson-dark);
	border-color: var(--simpson-yellow);
	box-shadow:
		0 4px 20px rgba(255, 217, 15, 0.4),
		0 0 20px var(--simpson-yellow);
}

.btn-primary:hover {
	background: transparent;
	color: var(--simpson-yellow);
	border-color: var(--simpson-yellow);
	transform: translateY(-5px);
	box-shadow:
		0 10px 30px rgba(255, 217, 15, 0.5),
		0 0 30px var(--simpson-yellow);
}

.btn-secondary {
	background: transparent;
	color: var(--simpson-blue);
	border-color: var(--simpson-blue);
	box-shadow:
		0 4px 20px rgba(30, 144, 255, 0.3),
		0 0 15px var(--simpson-blue);
}

.btn-secondary:hover {
	background: var(--simpson-blue);
	color: var(--white);
	transform: translateY(-5px);
	box-shadow:
		0 10px 30px rgba(30, 144, 255, 0.5),
		0 0 25px var(--simpson-blue);
}

/* Contract Section */
.contract-section {
	padding: 120px 0;
	background: var(--simpson-teal);
	background-image:
		radial-gradient(circle at 50% 50%, rgba(255, 217, 15, 0.08) 0%, transparent 70%),
		repeating-linear-gradient(45deg,
			transparent,
			transparent 15px,
			rgba(255, 217, 15, 0.03) 15px,
			rgba(255, 217, 15, 0.03) 30px);
	position: relative;
}

.contract-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 68, 68, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.section-title {
	font-family: "Simpson", sans-serif;
	font-size: clamp(3rem, 8vw, 5rem);
	color: var(--simpson-yellow);
	text-align: center;
	margin-bottom: 60px;
	text-shadow:
		3px 3px 0px var(--simpson-blue),
		0 0 20px var(--simpson-yellow);
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
}

.contract-card {
	background: var(--simpson-teal-light);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 50px;
	max-width: 900px;
	margin: 0 auto;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 30px rgba(255, 217, 15, 0.2);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.contract-card:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.4);
	border-color: var(--simpson-yellow);
}

.contract-header {
	text-align: center;
	margin-bottom: 40px;
}

.contract-header h3 {
	font-size: 2rem;
	color: var(--simpson-yellow);
	margin-bottom: 10px;
	font-weight: 700;
	text-shadow: 0 0 10px var(--simpson-yellow);
}

.contract-subtitle {
	color: var(--text-gray);
	font-size: 1.1rem;
}

.contract-wrapper {
	display: flex;
	gap: 15px;
	align-items: stretch;
	flex-wrap: nowrap;
	width: 100%;
}

.contract-address-display {
	flex: 1;
	min-width: 0;
	background: rgba(0, 0, 0, 0.4);
	border: 3px solid var(--simpson-yellow);
	border-radius: 12px;
	padding: 20px;
	font-family: "Courier New", monospace;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.3) inset,
		0 0 15px rgba(255, 217, 15, 0.2);
	overflow: hidden;
	height: 100%;
}

.contract-label {
	color: var(--simpson-yellow);
	font-weight: 700;
	font-size: 1.1rem;
	text-shadow: 0 0 5px var(--simpson-yellow);
	flex-shrink: 0;
}

.contract-address-text {
	color: var(--text-light);
	font-size: 0.95rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
	min-width: 0;
}

.copy-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--simpson-yellow);
	color: var(--simpson-dark);
	border: 3px solid var(--simpson-yellow);
	border-radius: 12px;
	padding: 20px 32px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow:
		0 4px 15px rgba(255, 217, 15, 0.3),
		0 0 20px var(--simpson-yellow);
	flex-shrink: 0;
	white-space: nowrap;
	height: 100%;
	box-sizing: border-box;
}

.copy-button:hover {
	background: transparent;
	color: var(--simpson-yellow);
	transform: scale(1.05);
	box-shadow:
		0 8px 25px rgba(255, 217, 15, 0.5),
		0 0 30px var(--simpson-yellow);
}

.copy-button:active {
	transform: scale(0.98);
}

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

.copy-text {
	font-weight: 700;
}

/* About Section */
.about-section {
	padding: 120px 0;
	background: var(--simpson-teal-light);
	background-image:
		radial-gradient(circle at 30% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 60%),
		repeating-linear-gradient(135deg,
			transparent,
			transparent 20px,
			rgba(255, 217, 15, 0.03) 20px,
			rgba(255, 217, 15, 0.03) 40px);
	position: relative;
}

.about-content {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.about-card {
	background: var(--simpson-teal);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 60px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 30px rgba(255, 217, 15, 0.2);
	position: relative;
	transition: all 0.3s ease;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.3),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.3);
}

.about-card::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border: 2px solid rgba(255, 217, 15, 0.1);
	border-radius: 20px;
	pointer-events: none;
}

.about-text {
	font-size: 1.3rem;
	line-height: 2;
	color: var(--text-light);
	text-align: justify;
	font-weight: 400;
	margin-bottom: 0;
}

/* Creator Program Card */
.creator-program-card {
	background: var(--simpson-teal);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 40px;
	margin-top: 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 30px rgba(255, 217, 15, 0.2);
	position: relative;
	transition: all 0.3s ease;
}

.creator-program-card:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.3),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.3);
}

.creator-program-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 15px;
}

.creator-program-title {
	font-size: 2rem;
	color: var(--simpson-yellow);
	font-weight: 700;
	text-shadow: 0 0 10px var(--simpson-yellow);
	margin: 0;
}

.coming-soon-badge {
	background: var(--simpson-yellow);
	color: var(--simpson-dark);
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow:
		0 0 15px var(--simpson-yellow),
		0 4px 10px rgba(255, 217, 15, 0.3);
	animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

	0%,
	100% {
		box-shadow:
			0 0 15px var(--simpson-yellow),
			0 4px 10px rgba(255, 217, 15, 0.3);
	}

	50% {
		box-shadow:
			0 0 25px var(--simpson-yellow),
			0 4px 15px rgba(255, 217, 15, 0.5);
	}
}

.creator-program-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-light);
	font-weight: 400;
	margin: 0;
}

/* PFP Generator Section */
.pfp-section {
	padding: 120px 0;
	background: var(--simpson-teal);
	background-image:
		radial-gradient(circle at 50% 50%, rgba(255, 217, 15, 0.08) 0%, transparent 70%),
		repeating-linear-gradient(45deg,
			transparent,
			transparent 15px,
			rgba(255, 217, 15, 0.03) 15px,
			rgba(255, 217, 15, 0.03) 30px);
	position: relative;
}

.pfp-generator-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}

.pfp-controls {
	background: var(--simpson-teal-light);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 30px rgba(255, 217, 15, 0.2);
	transition: all 0.3s ease;
}

.pfp-preview {
	background: var(--simpson-teal-light);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 40px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 30px rgba(255, 217, 15, 0.2);
	transition: all 0.3s ease;
	position: sticky;
	top: 100px;
	align-self: start;
	height: fit-content;
}

.pfp-controls:hover {
	transform: translateY(-5px);
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.3),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.3);
}

.pfp-preview:hover {
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.3),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.3);
}

.pfp-controls-title,
.pfp-preview-title {
	font-size: 1.8rem;
	color: var(--simpson-yellow);
	font-weight: 700;
	margin-bottom: 30px;
	text-shadow: 0 0 10px var(--simpson-yellow);
	text-align: center;
}

.pfp-control-group {
	margin-bottom: 30px;
}

.pfp-label {
	display: block;
	color: var(--simpson-yellow);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 0 5px rgba(255, 217, 15, 0.5);
}

/* Background Controls */
.background-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.background-preview-btn {
	padding: 0;
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.3);
	border: 3px solid var(--simpson-blue);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.background-preview-btn:hover {
	border-color: var(--simpson-yellow);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 15px rgba(255, 217, 15, 0.3);
}

.background-preview-box {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 8px;
}

.background-upload-btn {
	font-size: 1.5rem;
	color: var(--text-light);
}

.upload-icon {
	font-size: 1.5rem;
}

.background-preview-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	border: 3px solid var(--simpson-blue);
	border-radius: 12px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.background-preview-wrapper:hover {
	border-color: var(--simpson-yellow);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 15px rgba(255, 217, 15, 0.3);
}

.background-preview-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.background-remove-btn {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	padding: 0;
	background: rgba(255, 68, 68, 0.9);
	border: 2px solid var(--simpson-red);
	border-radius: 50%;
	color: white;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 10;
}

.background-remove-btn:hover {
	background: var(--simpson-red);
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(255, 68, 68, 0.5);
}

.color-picker-hidden {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.character-selector {
	display: flex;
	gap: 15px;
}

.character-btn {
	flex: 1;
	padding: 0;
	background: rgba(0, 0, 0, 0.3);
	border: 3px solid var(--simpson-blue);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.character-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.character-btn:hover {
	border-color: var(--simpson-yellow);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 5px 15px rgba(255, 217, 15, 0.3);
}

.character-btn.active {
	border-color: var(--simpson-yellow);
	border-width: 4px;
	box-shadow:
		0 0 15px var(--simpson-yellow),
		0 4px 10px rgba(255, 217, 15, 0.3);
}

.character-btn.active::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 217, 15, 0.1);
	pointer-events: none;
}

.accessory-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.accessory-btn {
	padding: 0;
	background: rgba(0, 0, 0, 0.3);
	border: 3px solid var(--simpson-blue);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.accessory-btn:hover {
	border-color: var(--simpson-yellow);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 15px rgba(255, 217, 15, 0.3);
}

.accessory-btn.active {
	border-color: var(--simpson-yellow);
	border-width: 4px;
	box-shadow:
		0 0 15px var(--simpson-yellow),
		0 4px 12px rgba(255, 217, 15, 0.4);
	transform: scale(1.1);
}

.accessory-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.accessory-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 217, 15, 0);
	transition: background 0.3s ease;
	pointer-events: none;
}

.accessory-btn.active::after {
	background: rgba(255, 217, 15, 0.1);
}

/* Stop Sign Icon for None */
.stop-sign-icon {
	width: 50px;
	height: 50px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stop-sign-icon::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
}

.stop-sign-icon::after {
	content: "✕";
	position: relative;
	color: #999;
	font-size: 32px;
	font-weight: 900;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1;
	z-index: 1;
}

.none-btn {
	background: rgba(0, 0, 0, 0.3);
}

.pfp-download-btn {
	width: 100%;
	margin-top: 30px;
	padding: 18px 32px;
	font-size: 1.2rem;
}

.canvas-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 16px;
	padding: 20px;
	border: 2px solid rgba(255, 217, 15, 0.2);
}

#pfpCanvas {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	background: var(--simpson-darker);
}

/* Socials Section */
.socials-section {
	padding: 120px 0;
	background: var(--simpson-teal);
	background-image:
		radial-gradient(circle at 70% 30%, rgba(255, 68, 68, 0.1) 0%, transparent 60%),
		repeating-linear-gradient(45deg,
			transparent,
			transparent 18px,
			rgba(255, 217, 15, 0.03) 18px,
			rgba(255, 217, 15, 0.03) 36px);
	position: relative;
}

.socials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}

.social-card {
	background: var(--simpson-teal-light);
	border: 4px solid var(--simpson-yellow);
	border-radius: 24px;
	padding: 50px 40px;
	text-decoration: none;
	color: inherit;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 217, 15, 0.2) inset,
		0 0 25px rgba(255, 217, 15, 0.1);
}

.social-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 217, 15, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.social-card::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border: 2px solid rgba(255, 217, 15, 0.2);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.social-card:hover::after {
	opacity: 1;
}

.social-card:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--simpson-yellow);
	box-shadow:
		0 25px 70px rgba(255, 217, 15, 0.4),
		0 0 0 1px rgba(255, 217, 15, 0.3) inset,
		0 0 50px rgba(255, 217, 15, 0.4);
}

.social-icon-wrapper {
	width: 100px;
	height: 100px;
	background: rgba(255, 217, 15, 0.2);
	border: 3px solid var(--simpson-yellow);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	box-shadow:
		0 4px 15px rgba(255, 217, 15, 0.2),
		0 0 20px rgba(255, 217, 15, 0.1);
}

.social-card:hover .social-icon-wrapper {
	background: var(--simpson-yellow);
	transform: rotate(5deg) scale(1.1);
	box-shadow:
		0 8px 25px rgba(255, 217, 15, 0.4),
		0 0 30px var(--simpson-yellow);
}

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

.social-card:hover .social-icon {
	filter: brightness(0);
}

.social-title {
	font-size: 1.8rem;
	color: var(--simpson-yellow);
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	z-index: 1;
	text-shadow: 0 0 10px rgba(255, 217, 15, 0.5);
}

.social-description {
	color: var(--text-gray);
	font-size: 1.1rem;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.social-link-text {
	color: var(--simpson-blue);
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-card:hover .social-link-text {
	color: var(--simpson-yellow);
	transform: translateX(5px);
	text-shadow: 0 0 10px var(--simpson-yellow);
}

/* Footer */
.footer {
	background: var(--simpson-darker);
	border-top: 4px solid var(--simpson-yellow);
	padding: 80px 0 40px;
	background-image:
		radial-gradient(circle at 50% 0%, rgba(255, 217, 15, 0.05) 0%, transparent 50%),
		repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(26, 58, 58, 0.05) 10px,
			rgba(26, 58, 58, 0.05) 20px);
	box-shadow: 0 -10px 30px rgba(255, 217, 15, 0.1);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 50px;
	margin-bottom: 50px;
}

.footer-brand {
	flex: 1;
	min-width: 250px;
}

.footer-title {
	font-family: "Simpson", sans-serif;
	font-size: 3rem;
	color: var(--simpson-yellow);
	margin-bottom: 15px;
	text-shadow:
		2px 2px 0px var(--simpson-blue),
		0 0 15px var(--simpson-yellow);
	letter-spacing: 2px;
}

.footer-tagline {
	color: var(--text-gray);
	font-size: 1.2rem;
	font-weight: 500;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	align-items: center;
}

.footer-link {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-link::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--simpson-yellow);
	box-shadow: 0 0 10px var(--simpson-yellow);
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: var(--simpson-yellow);
	transform: translateY(-3px);
	text-shadow: 0 0 10px var(--simpson-yellow);
}

.footer-link:hover::after {
	width: 100%;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	color: var(--text-gray);
	font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 968px) {
	.btn-buy {
		display: none;
	}

	.burger-menu {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		padding-top: 70px;
		background: rgba(15, 31, 31, 0.98);
		backdrop-filter: blur(20px);
		border-left: 4px solid var(--simpson-yellow);
		box-shadow:
			-10px 0 50px rgba(0, 0, 0, 0.5),
			0 0 30px rgba(255, 217, 15, 0.3);
		flex-direction: column;
		align-items: flex-start;
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 40px;
		gap: 30px;
		transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		z-index: 100;
		overflow-y: auto;
	}

	.nav.active {
		right: 0;
	}

	.nav.active::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(5px);
		z-index: -1;
		animation: fadeIn 0.3s ease;
	}

	.nav-link {
		font-size: 1.3rem;
		font-weight: 700;
		padding: 15px 0;
		width: 100%;
		border-bottom: 2px solid rgba(255, 217, 15, 0.2);
		text-shadow: 0 0 15px rgba(255, 217, 15, 0.5);
	}

	.nav-link:hover {
		transform: translateX(10px);
		text-shadow: 0 0 20px var(--simpson-yellow);
	}

	.nav-link::after {
		display: none;
	}

	.btn-buy-mobile {
		display: block;
	}

	.header-content {
		justify-content: space-between;
		align-items: center;
	}

	.logo-text {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.header {
		padding: 12px 0;
	}

	.logo-text {
		font-size: 1.3rem;
		letter-spacing: 1px;
	}

	.nav {
		width: 85%;
		padding: 30px 20px;
	}

	.nav-link {
		font-size: 1.2rem;
		padding: 12px 0;
	}

	.hero {
		min-height: 600px;
		margin-top: 60px;
		padding: 20px 0;
	}

	.hero-content {
		padding: 30px 15px;
	}

	.hero-title {
		font-size: clamp(2.5rem, 10vw, 4rem);
		margin-bottom: 15px;
		letter-spacing: 2px;
	}

	.hero-subtitle {
		font-size: clamp(1.2rem, 5vw, 1.8rem);
		margin-bottom: 15px;
	}

	.hero-description {
		font-size: clamp(0.9rem, 3vw, 1.1rem);
		margin-bottom: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		width: 100%;
	}

	.btn {
		width: 100%;
		max-width: 100%;
		padding: 16px 30px;
		font-size: 1.1rem;
	}

	.contract-section,
	.about-section,
	.socials-section {
		padding: 80px 0;
	}

	.section-title {
		font-size: clamp(2rem, 8vw, 3.5rem);
		margin-bottom: 40px;
		letter-spacing: 1px;
	}

	.contract-card {
		padding: 30px 20px;
		border-width: 3px;
	}

	.contract-header h3 {
		font-size: 1.5rem;
	}

	.contract-subtitle {
		font-size: 1rem;
	}

	.contract-wrapper {
		flex-direction: row;
		gap: 12px;
		flex-wrap: nowrap;
	}

	.contract-address-display {
		flex: 1;
		min-width: 0;
		padding: 15px;
		font-size: 0.9rem;
		border-width: 2px;
		height: 100%;
	}

	.copy-button {
		flex-shrink: 0;
		padding: 15px 24px;
		font-size: 1rem;
		height: 100%;
		box-sizing: border-box;
	}

	.contract-label {
		font-size: 1rem;
	}

	.about-card {
		padding: 35px 25px;
		border-width: 3px;
	}

	.about-text {
		font-size: 1rem;
		line-height: 1.8;
		text-align: left;
	}

	.creator-program-card {
		padding: 30px 25px;
		margin-top: 30px;
		border-width: 3px;
	}

	.pfp-generator-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pfp-controls {
		padding: 30px 25px;
		border-width: 3px;
	}

	.pfp-preview {
		padding: 30px 25px;
		border-width: 3px;
		position: relative;
		top: auto;
	}

	.pfp-controls-title,
	.pfp-preview-title {
		font-size: 1.5rem;
	}

	#pfpCanvas {
		width: 100%;
		max-width: 400px;
	}

	.creator-program-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.creator-program-title {
		font-size: 1.5rem;
	}

	.creator-program-text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.socials-grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin-top: 40px;
	}

	.social-card {
		padding: 40px 30px;
		border-width: 3px;
	}

	.social-icon-wrapper {
		width: 80px;
		height: 80px;
		margin-bottom: 25px;
	}

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

	.social-title {
		font-size: 1.5rem;
	}

	.social-description {
		font-size: 1rem;
	}

	.footer {
		padding: 60px 0 30px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
		align-items: center;
	}

	.footer-brand {
		text-align: center;
		width: 100%;
	}

	.footer-title {
		font-size: 2rem;
		text-align: center;
	}

	.footer-tagline {
		font-size: 1rem;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
		width: 100%;
	}

	.footer-link {
		font-size: 0.95rem;
	}

	.toast {
		right: 10px;
		left: 10px;
		top: 80px;
		transform: translateY(-100px);
		padding: 14px 20px;
	}

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

	.toast-message {
		font-size: 0.9rem;
	}

	.particles::before,
	.particles::after {
		display: none;
	}
}

@media (max-width: 480px) {
	.header {
		padding: 10px 0;
	}

	.logo-text {
		font-size: 1.1rem;
		letter-spacing: 0.5px;
	}

	.burger-menu {
		width: 30px;
		height: 30px;
	}

	.burger-line {
		height: 3px;
	}

	.nav {
		width: 90%;
		top: 0;
		height: 100vh;
		padding-top: 60px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 25px;
	}

	.nav.active::before {
		top: 0;
		height: 100vh;
	}

	.nav-link {
		font-size: 1.1rem;
		padding: 10px 0;
	}

	.btn-buy-mobile {
		padding: 12px 24px;
		font-size: 1rem;
		margin-top: 15px;
	}

	.hero {
		min-height: 500px;
		margin-top: 50px;
	}

	.hero-title {
		font-size: clamp(2rem, 12vw, 3rem);
		letter-spacing: 1px;
	}

	.hero-subtitle {
		font-size: clamp(1rem, 5vw, 1.4rem);
	}

	.hero-description {
		font-size: clamp(0.85rem, 3vw, 1rem);
	}

	.contract-section,
	.about-section,
	.socials-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: clamp(1.8rem, 10vw, 2.5rem);
		margin-bottom: 30px;
	}

	.contract-card {
		padding: 25px 15px;
		border-width: 2px;
	}

	.contract-header h3 {
		font-size: 1.3rem;
	}

	.contract-subtitle {
		font-size: 0.9rem;
	}

	.contract-wrapper {
		gap: 10px;
	}

	.contract-address-display {
		padding: 12px;
		font-size: 0.85rem;
		flex-direction: row;
		align-items: center;
		gap: 8px;
		height: 100%;
	}

	.contract-label {
		font-size: 0.9rem;
	}

	.copy-button {
		padding: 12px 20px;
		font-size: 0.9rem;
		height: 100%;
		box-sizing: border-box;
	}

	.about-card {
		padding: 25px 15px;
		border-width: 2px;
	}

	.about-text {
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.creator-program-card {
		padding: 25px 15px;
		margin-top: 25px;
		border-width: 2px;
	}

	.creator-program-title {
		font-size: 1.3rem;
	}

	.coming-soon-badge {
		padding: 6px 16px;
		font-size: 0.8rem;
	}

	.creator-program-text {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.pfp-section {
		padding: 60px 0;
	}

	.pfp-generator-wrapper {
		gap: 25px;
		margin-top: 40px;
	}

	.pfp-controls {
		padding: 25px 15px;
		border-width: 2px;
	}

	.pfp-preview {
		padding: 25px 15px;
		border-width: 2px;
		position: relative;
		top: auto;
	}

	.pfp-controls-title,
	.pfp-preview-title {
		font-size: 1.3rem;
		margin-bottom: 20px;
	}

	.pfp-control-group {
		margin-bottom: 20px;
	}

	.pfp-label {
		font-size: 1rem;
		margin-bottom: 10px;
	}

	.character-btn {
		min-height: 120px;
	}

	.character-preview {
		width: 100%;
		height: 100%;
	}

	.accessory-btn {
		width: 70px;
		height: 70px;
	}

	.accessory-thumbnail {
		width: 100%;
		height: 100%;
	}

	.pfp-download-btn {
		padding: 14px 24px;
		font-size: 1rem;
	}

	#pfpCanvas {
		max-width: 100%;
	}

	.social-card {
		padding: 30px 20px;
		border-width: 2px;
	}

	.social-icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}

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

	.social-title {
		font-size: 1.3rem;
	}

	.social-description {
		font-size: 0.9rem;
	}

	.footer {
		padding: 50px 0 25px;
	}

	.footer-content {
		align-items: center;
	}

	.footer-brand {
		text-align: center;
		width: 100%;
	}

	.footer-title {
		font-size: 1.8rem;
		text-align: center;
	}

	.footer-tagline {
		font-size: 0.9rem;
		text-align: center;
	}

	.footer-links {
		gap: 15px;
		justify-content: center;
		width: 100%;
	}

	.footer-link {
		font-size: 0.85rem;
	}

	.footer-bottom {
		padding-top: 30px;
		font-size: 0.85rem;
	}

	.toast {
		padding: 12px 18px;
		top: 70px;
	}

	.toast-message {
		font-size: 0.85rem;
	}

	.toast-icon {
		font-size: 20px;
	}
}

@media (max-width: 360px) {
	.hero-title {
		font-size: 1.8rem;
	}

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

	.contract-card,
	.about-card,
	.social-card {
		padding: 20px 12px;
	}

	.btn {
		padding: 14px 25px;
		font-size: 1rem;
	}
}