/* 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;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	min-height: 100vh;
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Animated background particles */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 80%, rgba(0, 255, 102, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(0, 255, 102, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(0, 255, 102, 0.05) 0%, transparent 50%);
	animation: backgroundShift 20s ease-in-out infinite;
	z-index: -1;
}

@keyframes backgroundShift {

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

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

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

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

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

/* Hero section */
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 40px 0;
	gap: 60px;
}

/* Logo section */
.logo-section {
	text-align: center;
}

.brand {
	text-align: center;
}

.brand-name {
	font-size: 3.5rem;
	font-weight: 900;
	color: #00CC52;
	margin: 0;
	text-shadow:
		0 0 20px rgba(0, 204, 82, 0.5),
		0 0 40px rgba(0, 204, 82, 0.3),
		0 0 60px rgba(0, 204, 82, 0.1);
	letter-spacing: -2px;
	animation: glowPulse 3s ease-in-out infinite;
	position: relative;
}

.brand-tagline {
	font-size: 1rem;
	color: #ccc;
	font-weight: 400;
	margin: 10px 0 0 0;
	opacity: 0.9;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

@keyframes glowPulse {

	0%,
	100% {
		text-shadow:
			0 0 20px rgba(0, 204, 82, 0.5),
			0 0 40px rgba(0, 204, 82, 0.3),
			0 0 60px rgba(0, 204, 82, 0.1);
	}

	50% {
		text-shadow:
			0 0 30px rgba(0, 204, 82, 0.7),
			0 0 60px rgba(0, 204, 82, 0.5),
			0 0 90px rgba(0, 204, 82, 0.3);
	}
}



/* Market Data section */
.market-data-section {
	text-align: center;
	max-width: 600px;
	width: 100%;
	margin-bottom: 40px;
}

.market-data-section h2 {
	font-size: 1.8rem;
	color: #fff;
	margin-bottom: 25px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
}

.market-data-section h2::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00CC52, transparent);
	border-radius: 1px;
}

.market-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 14px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-stats:hover {
	border-color: #00CC52;
	box-shadow:
		0 15px 45px rgba(0, 204, 82, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-3px) scale(1.01);
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.stat-label {
	font-size: 0.85rem;
	color: #ccc;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	font-size: 1.4rem;
	font-weight: 700;
	color: #00CC52;
	text-shadow: 0 0 10px rgba(0, 204, 82, 0.3);
}

/* Contract section */
.contract-section {
	text-align: center;
	max-width: 600px;
	width: 100%;
}

.contract-section h2 {
	font-size: 1.8rem;
	color: #fff;
	margin-bottom: 25px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
}

.contract-section h2::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00CC52, transparent);
	border-radius: 1px;
}

.contract-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: 14px;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contract-container:hover {
	border-color: #00CC52;
	box-shadow:
		0 15px 45px rgba(0, 204, 82, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(-3px) scale(1.01);
}

.contract-address {
	font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
	font-size: 0.95rem;
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	flex: 1;
	word-break: break-all;
	transition: all 0.3s ease;
}

.copy-btn {
	background: linear-gradient(135deg, #00CC52, #00E55C);
	border: none;
	border-radius: 10px;
	padding: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	min-width: 44px;
	height: 44px;
	box-shadow: 0 4px 15px rgba(0, 204, 82, 0.3);
}

.copy-btn:hover {
	background: linear-gradient(135deg, #00E55C, #00FF66);
	transform: translateY(-2px) scale(1.05);
	box-shadow:
		0 6px 20px rgba(0, 204, 82, 0.4),
		0 0 15px rgba(0, 204, 82, 0.2);
}

.copy-btn:active {
	transform: translateY(0) scale(1.02);
}

.copy-btn svg {
	width: 24px;
	height: 24px;
}

.copy-feedback {
	position: absolute;
	background: linear-gradient(135deg, #00CC52, #00E55C);
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	opacity: 0;
	transform: translateY(10px) scale(0.9);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	margin-top: 15px;
	box-shadow: 0 8px 25px rgba(0, 204, 82, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-feedback.show {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Social section */
.social-section {
	text-align: center;
}

.social-section h3 {
	font-size: 1.4rem;
	color: #fff;
	margin-bottom: 25px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	position: relative;
}

.social-section h3::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00CC52, transparent);
	border-radius: 1px;
}

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

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	width: 50px;
	height: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 25px rgba(0, 204, 82, 0.3);
	border-color: #00CC52;
	background: rgba(0, 204, 82, 0.1);
}

.social-btn svg {
	width: 22px;
	height: 22px;
	color: #fff;
}

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

	.hero {
		gap: 40px;
		padding: 20px 0;
	}

	.brand-name {
		font-size: 2.8rem;
		letter-spacing: -1px;
	}

	.brand-tagline {
		font-size: 0.9rem;
	}

	.market-data-section h2 {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}

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

	.stat-value {
		font-size: 1.2rem;
	}

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

	.contract-container {
		flex-direction: column;
		gap: 12px;
		padding: 15px;
	}

	.contract-address {
		font-size: 0.85rem;
		padding: 10px 12px;
		text-align: center;
	}

	.copy-btn {
		width: 100%;
		max-width: 180px;
	}

	.social-buttons {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		justify-content: center;
	}

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

@media (max-width: 480px) {
	.brand-name {
		font-size: 2.2rem;
	}

	.market-data-section h2 {
		font-size: 1.2rem;
	}

	.market-stats {
		padding: 15px;
		gap: 12px;
	}

	.stat-value {
		font-size: 1.1rem;
	}

	.contract-section h2 {
		font-size: 1.2rem;
	}

	.social-section h3 {
		font-size: 1.2rem;
	}

	.social-btn {
		width: 45px;
		height: 45px;
		padding: 12px;
	}

	.social-btn svg {
		width: 20px;
		height: 20px;
	}

	.footer {
		margin-top: 40px;
		padding: 20px 0;
	}

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

/* Animation for logo */
@keyframes float {

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

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

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.copy-btn:focus,
.social-btn:focus {
	outline: 2px solid #00FF66;
	outline-offset: 2px;
}

/* Loading state */
.copy-btn.loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.copy-btn.loading svg {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Footer */
.footer {
	margin-top: 60px;
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-text {
	color: #ccc;
	font-size: 0.9rem;
	font-weight: 400;
	margin: 0;
	opacity: 0.8;
}

.footer-link {
	color: #00CC52;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-shadow: 0 0 10px rgba(0, 204, 82, 0.3);
}

.footer-link:hover {
	color: #00E55C;
	text-shadow: 0 0 15px rgba(0, 204, 82, 0.5);
	transform: translateY(-1px);
}