/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	min-height: 100vh;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: background 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand .ticker {
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.nav-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #64ffda;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #64ffda;
	transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(0, 0, 0, 0.95);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		backdrop-filter: blur(10px);
		padding: 2rem 0;
		gap: 1.5rem;
	}

	.nav-menu.active {
		left: 0;
	}

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

	/* Hamburger Animation */
	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 70px;
}

.hero-container {
	max-width: 1000px;
	padding: 0 20px;
	padding-top: 100px;
}

.hero-logo {
	margin-bottom: 30px;
	animation: fadeInUp 1s ease-out 0.1s both;
}

.logo-image {
	width: 180px;
	height: 180px;
	transition: all 0.3s ease;
}

.logo-image:hover {
	transform: scale(1.05);
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-contract {
	margin-bottom: 0;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.contract-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.hero-contract .contract-input-container {
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
}

.hero-contract .input-group {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-contract #contract-address {
	flex: 1;
	padding: 15px 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 0.9rem;
	font-family: monospace;
	outline: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	transition: all 0.3s ease;
}

.hero-contract .copy-button {
	background: linear-gradient(45deg, #4a5568, #2d3748);
	border: none;
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-contract .copy-button:hover {
	background: linear-gradient(45deg, #2d3748, #1a202c);
}

.hero-contract .copy-icon {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.hero-contract .copy-feedback {
	text-align: center;
	margin-top: 10px;
	color: #4ade80;
	font-weight: 600;
	font-size: 0.9rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-contract .copy-feedback.show {
	opacity: 1;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 50px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Stats Section */
.stats {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.stat-title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.stat-value {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	transition: all 0.3s ease;
	margin-bottom: 8px;
}

.stat-value.positive {
	color: #4ade80;
}

.stat-value.negative {
	color: #ef4444;
}

.stat-change {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.stat-change.positive {
	color: #4ade80;
}

.stat-change.negative {
	color: #ef4444;
}

/* Socials Section */
.socials {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.socials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.social-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 40px 30px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	display: block;
}

.social-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-svg {
	width: 48px;
	height: 48px;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.social-card:hover .social-svg {
	transform: scale(1.1);
	filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.social-title {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.social-handle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
}

/* Footer */
.footer {
	background: rgba(0, 0, 0, 0.6);
	text-align: center;
	padding: 30px 0;
	color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
	font-size: 1.2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 15px;
}

.footer-credit {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-credit a:hover {
	color: #fff;
	text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		gap: 15px;
	}
	
	.nav-links a {
		padding: 6px 12px;
		font-size: 0.9rem;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-description {
		font-size: 1.2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.stats-grid,
	.socials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.stat-card,
	.social-card {
		padding: 20px;
	}
	
	.logo-image {
		width: 140px;
		height: 140px;
	}
	
	.hero-container {
		max-width: 800px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-description {
		font-size: 1rem;
	}
	
	.section-title {
		font-size: 1.8rem;
	}
	
	.container {
		padding: 0 15px;
	}
	
	/* Force contract address to stay on single line */
	.hero-contract .contract-input-container {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 8px;
	}
	
	.hero-contract .input-group {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 8px;
	}
	
	.hero-contract #contract-address {
		font-size: 0.75rem;
		padding: 12px 16px;
		min-width: 0;
		flex: 1;
		white-space: nowrap !important;
	}
	
	.hero-contract .copy-button {
		padding: 12px 16px;
		flex-shrink: 0 !important;
		white-space: nowrap !important;
	}
	
	.hero-contract .copy-icon {
		width: 16px;
		height: 16px;
	}
	
	.logo-image {
		width: 120px;
		height: 120px;
	}
	
	.hero-container {
		max-width: 600px;
	}
}

/* Cool Effects and Animations */
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

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

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Enhanced Elements */
.hero-logo {
	animation: fadeInUp 1s ease-out 0.1s both, float 6s ease-in-out infinite;
}

.logo-image {
	filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.3));
}

.logo-image:hover {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 0 30px rgba(100, 255, 218, 0.6));
}

.hero-title {
	background: linear-gradient(45deg, #fff, #64ffda, #fff);
	background-size: 200% 200%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeInUp 1s ease-out 0.3s both, shimmer 3s ease-in-out infinite;
}

.hero-description {
	text-shadow: 0 2px 4px rgba(100, 255, 218, 0.3);
}

.contract-title {
	color: #64ffda;
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: slideInLeft 1s ease-out 0.7s both;
}

.hero-contract .input-group {
	border: 1px solid rgba(100, 255, 218, 0.3);
	transition: all 0.3s ease;
	position: relative;
}

.hero-contract .input-group:hover {
	border-color: rgba(100, 255, 218, 0.6);
	box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
	transform: translateY(-2px);
}

.hero-contract .input-group::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
	transition: left 0.5s ease;
}

.hero-contract .input-group:hover::before {
	left: 100%;
}

.hero-contract #contract-address:focus {
	color: #64ffda;
	text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.hero-contract .copy-button {
	position: relative;
	overflow: hidden;
}

.hero-contract .copy-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.3), transparent);
	transition: left 0.5s ease;
}

.hero-contract .copy-button:hover::before {
	left: 100%;
}

.hero-contract .copy-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.hero-contract .copy-button:hover .copy-icon {
	transform: rotate(360deg) scale(1.2);
	filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(100, 255, 218, 0.8));
}

/* Enhanced Stats */
.stats {
	position: relative;
	overflow: hidden;
}

.stats::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
	z-index: -1;
}

.section-title {
	font-size: 3rem;
	position: relative;
	animation: slideInLeft 1s ease-out 0.8s both;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #64ffda, transparent);
	animation: shimmer 2s ease-in-out infinite;
}

.stat-card {
	border: 1px solid rgba(100, 255, 218, 0.2);
	position: relative;
	overflow: hidden;
}

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

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

.stat-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: rgba(100, 255, 218, 0.5);
	box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
}

.stat-card:nth-child(1) { animation: slideInLeft 1s ease-out 0.9s both; }
.stat-card:nth-child(2) { animation: slideInRight 1s ease-out 1.0s both; }
.stat-card:nth-child(3) { animation: slideInLeft 1s ease-out 1.1s both; }
.stat-card:nth-child(4) { animation: slideInRight 1s ease-out 1.2s both; }

.stat-title {
	color: #64ffda;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.stat-value {
	font-size: 2.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-value.positive {
	text-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
}

.stat-value.negative {
	text-shadow: 0 2px 4px rgba(248, 113, 113, 0.3);
}

/* Enhanced Socials */
.socials {
	position: relative;
	overflow: hidden;
}

.socials::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 80% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
				radial-gradient(circle at 20% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
	z-index: -1;
}

.social-card {
	border: 1px solid rgba(100, 255, 218, 0.2);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

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

.social-card:hover::before {
	left: 100%;
}

.social-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: rgba(100, 255, 218, 0.5);
	box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
}

.social-card:nth-child(1) { animation: slideInLeft 1s ease-out 1.3s both; }
.social-card:nth-child(2) { animation: slideInRight 1s ease-out 1.4s both; }

.social-icon {
	transition: all 0.3s ease;
}

.social-card:hover .social-icon {
	transform: scale(1.2) rotate(5deg);
	filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(100, 255, 218, 0.8));
}

.social-title {
	color: #64ffda;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Enhanced Footer */
.footer {
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(100, 255, 218, 0.2);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #64ffda, transparent);
	animation: shimmer 3s ease-in-out infinite;
}

.footer-tagline {
	color: #64ffda;
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: pulse 4s ease-in-out infinite;
}

.footer-credit a {
	color: #64ffda;
	position: relative;
}

.footer-credit a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #64ffda;
	transition: width 0.3s ease;
}

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

.footer-credit a:hover {
	color: #fff;
	text-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}


