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

body {
	font-family: "Inter", sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
	line-height: 1.6;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(0, 0, 0, 0.98);
	border-bottom-color: rgba(255, 215, 0, 0.4);
	box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

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

.nav-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
}

.logo-text {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffd700;
	line-height: 1;
}

.logo-ticker {
	font-size: 0.9rem;
	font-weight: 600;
	color: #ccc;
	line-height: 1;
}

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

.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffd700, #ffed4e);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #ffd700;
}

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

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: #ffd700;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

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

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
	overflow: hidden;
	width: 100%;
	padding-top: 70px;
}

.hero-content {
	text-align: center;
	z-index: 2;
	position: relative;
	margin-top: 60px;
}

.hero-title h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: boostShimmer 3s ease-in-out infinite;
	margin-bottom: 1rem;
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.ticker {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 2rem;
	animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	color: #ccc;
	margin-bottom: 3rem;
	font-weight: 400;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-card {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 20px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

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

.stat-card:hover {
	transform: translateY(-10px);
	border-color: #ffd700;
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.stat-value {
	font-size: 2.5rem;
	font-weight: 900;
	color: #ffd700;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	color: #ccc;
	font-weight: 600;
}

/* Hero Background Effects */
.hero-bg-effects {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.lightning-bolt {
	position: absolute;
	font-size: 4rem;
	color: #ffd700;
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
}

.lightning-bolt:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.lightning-bolt:nth-child(2) {
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.lightning-bolt:nth-child(3) {
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

/* Explanation Section */
.explanation {
	padding: 6rem 0;
	background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
	width: 100%;
}

.explanation-content {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.explanation h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 3rem;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.explanation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.explanation-card {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.8));
	border: 1px solid rgba(255, 215, 0, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	position: relative;
}

.explanation-card:hover {
	transform: translateY(-5px);
	border-color: #ffd700;
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.card-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.explanation-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffd700;
	margin-bottom: 1rem;
}

.explanation-card p {
	color: #ccc;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Join Team Section */
.join-team {
	padding: 6rem 0;
	background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
	width: 100%;
}

.join-content {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.join-team h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.join-team p {
	font-size: 1.3rem;
	color: #ccc;
	margin-bottom: 3rem;
}

.team-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.team-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 3rem;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.team-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
	transition: left 0.5s ease;
}

.team-link:hover::before {
	left: 100%;
}

.team-link:hover {
	transform: translateY(-5px);
	border-color: #ffd700;
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.team-link img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.contract-address {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 2rem;
	width: 100%;
	max-width: 500px;
}

.ca-label {
	font-size: 1.1rem;
	color: #ffd700;
	font-weight: 600;
	margin-bottom: 1rem;
}

.ca-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	padding: 1rem;
}

#contractAddress {
	flex: 1;
	background: transparent;
	border: none;
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 0.9rem;
	outline: none;
}

.copy-btn {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	border: none;
	border-radius: 8px;
	padding: 0.8rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.copy-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.copy-btn img {
	width: 20px;
	height: 20px;
	filter: brightness(0);
}

/* Toast Notification */
.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000;
	padding: 1rem 2rem;
	border-radius: 10px;
	font-weight: 600;
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 1000;
}

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

/* Animations */
@keyframes boostShimmer {

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

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

@keyframes pulse {

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

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

@keyframes float {

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

	33% {
		transform: translateY(-20px) rotate(5deg);
	}

	66% {
		transform: translateY(10px) rotate(-5deg);
	}
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}

	.explanation-content,
	.join-content {
		padding: 0 15px;
	}

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

	.explanation-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}
}

/* Tablets */
@media (max-width: 768px) {
	.nav-container {
		padding: 0 15px;
		height: 60px;
	}

	.nav-logo {
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
	}

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

	.logo-ticker {
		font-size: 0.8rem;
	}

	.nav-links {
		position: fixed;
		top: 60px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 60px);
		background: rgba(0, 0, 0, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		gap: 2rem;
		transition: left 0.3s ease;
		z-index: 999;
	}

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

	.nav-link {
		font-size: 1.2rem;
		padding: 1rem 0;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(255, 215, 0, 0.1);
	}

	.burger-menu {
		display: flex;
	}

	.hero {
		padding-top: 60px;
		min-height: 90vh;
	}

	.hero-content {
		margin-top: 50px;
	}

	.hero-title h1 {
		font-size: clamp(2.5rem, 6vw, 4rem);
	}

	.ticker {
		font-size: clamp(1.5rem, 4vw, 2.5rem);
	}

	.hero-subtitle {
		font-size: clamp(1rem, 2.5vw, 1.4rem);
		margin-bottom: 2rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 2rem;
	}

	.stat-card {
		padding: 1.5rem;
	}

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

	.explanation {
		padding: 4rem 0;
	}

	.explanation h2 {
		font-size: clamp(2rem, 4vw, 3rem);
		margin-bottom: 2rem;
	}

	.explanation-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.explanation-card {
		padding: 2rem;
	}

	.join-team {
		padding: 4rem 0;
	}

	.join-team h2 {
		font-size: clamp(2rem, 4vw, 3rem);
	}

	.team-links {
		width: 100%;
		gap: 1.5rem;
	}

	.team-link {
		width: 100%;
		justify-content: center;
		padding: 1.2rem 2rem;
		font-size: 1.1rem;
	}

	.contract-address {
		padding: 1.5rem;
	}

	.ca-container {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	#contractAddress {
		text-align: center;
		font-size: 0.8rem;
	}

	.copy-btn {
		align-self: center;
		padding: 0.7rem;
	}
}

/* Mobile phones */
@media (max-width: 480px) {
	.nav-container {
		padding: 0 10px;
		height: 55px;
	}

	.nav-logo {
		gap: 0.3rem;
	}

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

	.logo-ticker {
		font-size: 0.7rem;
	}

	.nav-links {
		top: 55px;
		height: calc(100vh - 55px);
	}

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

	.hero {
		padding-top: 80px;
		min-height: 85vh;
	}

	.hero-content {
		margin-top: 40px;
	}

	.hero-title h1 {
		font-size: clamp(2rem, 8vw, 3rem);
		margin-bottom: 0.5rem;
	}

	.ticker {
		font-size: clamp(1.2rem, 6vw, 2rem);
		margin-bottom: 1rem;
	}

	.hero-subtitle {
		font-size: clamp(0.9rem, 3vw, 1.2rem);
		margin-bottom: 1.5rem;
		padding: 0 1rem;
	}

	.stats-grid {
		gap: 0.8rem;
		margin-top: 1.5rem;
	}

	.stat-card {
		padding: 1.2rem;
	}

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

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

	.explanation {
		padding: 3rem 0;
	}

	.explanation h2 {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
		margin-bottom: 1.5rem;
	}

	.explanation-card {
		padding: 1.5rem;
	}

	.card-icon {
		font-size: 2.5rem;
		margin-bottom: 0.8rem;
	}

	.explanation-card h3 {
		font-size: 1.3rem;
		margin-bottom: 0.8rem;
	}

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

	.join-team {
		padding: 3rem 0;
	}

	.join-team h2 {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
		margin-bottom: 0.8rem;
	}

	.join-team p {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		padding: 0 1rem;
	}

	.team-links {
		gap: 1rem;
	}

	.team-link {
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}

	.team-link img {
		width: 20px;
		height: 20px;
	}

	.contract-address {
		padding: 1.2rem;
	}

	.ca-label {
		font-size: 1rem;
		margin-bottom: 0.8rem;
	}

	#contractAddress {
		font-size: 0.75rem;
		padding: 0.8rem;
	}

	.copy-btn {
		padding: 0.6rem;
	}

	.copy-btn img {
		width: 18px;
		height: 18px;
	}

	.toast {
		top: 10px;
		right: 10px;
		left: 10px;
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
		text-align: center;
	}
}

/* Extra small devices */
@media (max-width: 320px) {
	.nav-container {
		padding: 0 8px;
	}

	.nav-links {
		gap: 0.5rem;
	}

	.nav-link {
		font-size: 0.75rem;
	}

	.hero {
		padding-top: 85px;
	}

	.hero-content {
		margin-top: 35px;
	}

	.hero-subtitle {
		padding: 0 0.5rem;
	}

	.stat-card {
		padding: 1rem;
	}

	.explanation-card {
		padding: 1.2rem;
	}

	.team-link {
		padding: 0.8rem 1.2rem;
		font-size: 0.9rem;
	}

	.contract-address {
		padding: 1rem;
	}
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
	border-top: 1px solid rgba(255, 215, 0, 0.2);
	padding: 2rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

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

.footer p {
	color: #ccc;
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
}

.footer a {
	color: #ffd700;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
}

.footer a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ffd700, #ffed4e);
	transition: width 0.3s ease;
}

.footer a:hover {
	color: #ffed4e;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Footer responsive design */
@media (max-width: 768px) {
	.footer {
		padding: 1.5rem 0;
	}

	.footer-content {
		padding: 0 15px;
	}

	.footer p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 1.2rem 0;
	}

	.footer-content {
		padding: 0 10px;
	}

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

/* Live Stats Updates */
.loading-dots {
	animation: loadingPulse 1.5s ease-in-out infinite;
	display: inline-block;
}

@keyframes loadingPulse {

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

	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}


/* Smooth transitions for stat updates */
.stat-value {
	transition: opacity 0.3s ease, transform 0.3s ease;
}