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

html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 6px;
	background: transparent;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
	transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:active {
	background: rgba(255, 255, 255, 0.3);
}

/* Firefox Scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.03);
}

:root {
	--bg-dark: #15161b;
	--bg-darker: #0f1014;
	--text-white: #ffffff;
	--text-gray: #a8a9ad;
	--accent-green: #83efaa;
	--accent-green-hover: #6cd798;
	--border-color: rgba(255, 255, 255, 0.08);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-white);
	line-height: 1.6;
	overflow-x: hidden;
}

main {
	padding-top: 72px;
}

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

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(15, 16, 20, 0.7);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: var(--transition);

	animation: slideDown 0.6s ease-out;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	gap: 24px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: var(--transition);
}

@media (prefers-reduced-motion: no-preference) {
	.logo svg,
	.logo-text,
	.price-ticker,
	.dropdown-toggle,
	.connect-wallet-btn {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

.logo:hover {
	opacity: 0.8;
}

.logo svg {
	width: 40px;
	height: 42px;
	transition: var(--transition);
}

.logo:hover svg {
	transform: rotate(-5deg) scale(1.05);
}

.logo-text {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-white);
	letter-spacing: -0.02em;
}

.price-ticker {
	background: rgba(131, 239, 170, 0.05);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 12px;
	padding: 0 20px;
	height: 44px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-ticker::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.price-ticker-content {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.price-icon {
	width: 18px;
	height: 18px;
	color: var(--accent-green);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

.coin-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.coin-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-white);
	font-variant-numeric: tabular-nums;
	transition: transform 0.2s ease;
}

.price-change {
	font-size: 14px;
	font-weight: 500;
	padding: 4px 8px;
	border-radius: 6px;
}

.price-change.positive {
	color: var(--accent-green);
	background: rgba(131, 239, 170, 0.1);
}

.price-change.negative {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.1);
}

.ticker-divider {
	width: 1px;
	height: 20px;
	background: var(--border-color);
	margin: 0 16px;
}

.ticker-label {
	font-size: 13px;
	color: var(--text-gray);
	font-weight: 500;
}

.ticker-value {
	font-size: 14px;
	color: var(--text-white);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.dropdown-menu-container {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 20px;
	height: 44px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-gray);
}

.dropdown-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(131, 239, 170, 0.3);
	color: var(--text-white);
}

.dropdown-toggle.active {
	background: rgba(131, 239, 170, 0.1);
	border-color: var(--accent-green);
	color: var(--accent-green);
}

.dropdown-toggle .icon {
	width: 20px;
	height: 20px;
	color: var(--text-white);
	transition: var(--transition);
}

.dropdown-toggle.active .icon {
	transform: rotate(180deg);
	color: var(--accent-green);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 200px;
	background: rgba(21, 22, 27, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: var(--transition);

	z-index: 1001;
}

.dropdown-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	transition: var(--transition);
}

.dropdown-link .icon {
	width: 18px;
	height: 18px;
	opacity: 0.7;
	transition: var(--transition);
}

.dropdown-link:hover {
	color: var(--text-white);
	background: rgba(131, 239, 170, 0.1);
}

.dropdown-link:hover .icon {
	opacity: 1;
	color: var(--accent-green);
}

.dropdown-link:active {
	transform: scale(0.98);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.connect-wallet-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--accent-green), #6cd798);
	color: var(--bg-dark);
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.connect-wallet-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.5s;
}

.connect-wallet-btn:hover::before {
	left: 100%;
}

.connect-wallet-btn:hover {
	background: var(--accent-green-hover);
	transform: translateY(-2px);
}

.connect-wallet-btn:active {
	transform: translateY(0);
}

.connect-wallet-btn .icon {
	width: 20px;
	height: 20px;
	display: block;
}

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

.animate-spin {
	animation: spin 1s linear infinite;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	align-items: center;
	justify-content: center;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-white);
	transition: var(--transition);
	transform-origin: center;
}

.menu-toggle:hover span {
	background: var(--accent-green);
}

/* Large screens */
@media (max-width: 1400px) {
	.container {
		max-width: 100%;
		padding: 0 40px;
	}
}

/* Desktop to tablet transition */
@media (max-width: 1200px) {
	.header-content {
		gap: 20px;
	}

	.price-ticker {
		padding: 0 16px;
	}

	.ticker-label {
		font-size: 12px;
	}

	.ticker-value {
		font-size: 13px;
	}
}

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

	.header-content {
		padding: 14px 0;
	}

	.logo svg {
		width: 36px;
		height: 38px;
	}

	.logo-text {
		font-size: 22px;
	}

	.price-ticker {
		height: 40px;
	}

	.ticker-divider:last-of-type,
	.ticker-label:last-of-type,
	.ticker-value:last-of-type {
		display: none;
	}

	.dropdown-toggle {
		padding: 0 16px;
		height: 40px;
		font-size: 14px;
	}

	.connect-wallet-btn {
		padding: 10px 20px;
		height: 40px;
		font-size: 14px;
	}
}

/* Tablet portrait */
@media (max-width: 850px) {
	.header-content {
		flex-wrap: nowrap;
	}

	.ticker-divider,
	.ticker-label,
	.ticker-value {
		display: none;
	}

	.price-ticker {
		min-width: 140px;
	}

	.coin-price {
		font-size: 15px;
	}

	.price-change {
		font-size: 13px;
	}
}

/* Mobile landscape */
@media (max-width: 768px) {
	.header {
		border-bottom-width: 0.5px;
	}

	.header.scrolled {
		padding-top: env(safe-area-inset-top);
	}

	.container {
		padding: 0 20px;
	}

	.header-content {
		padding: 12px 0;
		gap: 16px;
		justify-content: space-between;
	}

	.logo {
		gap: 10px;
		flex-shrink: 0;
	}

	.logo svg {
		width: 32px;
		height: 34px;
	}

	.logo-text {
		font-size: 20px;
	}

	.price-ticker {
		flex: 1;
		padding: 0 12px;
		height: 36px;
		margin: 0 8px;
		max-width: 160px;
		background: rgba(131, 239, 170, 0.05);
	}

	.coin-name {
		font-size: 12px;
	}

	.coin-price {
		font-size: 14px;
	}

	.price-change {
		font-size: 12px;
		padding: 3px 6px;
	}

	.dropdown-menu-container {
		display: none;
	}

	.header-actions {
		display: flex;
		flex-shrink: 0;
	}

	.menu-toggle {
		display: flex;
	}

	.connect-wallet-btn {
		padding: 0;
		width: 36px;
		font-size: 13px;
		height: 36px;
		border-radius: 8px;
		justify-content: center;
	}

	.connect-wallet-btn span {
		display: none;
	}

	.connect-wallet-btn .icon {
		width: 18px;
		height: 18px;
		margin: 0;
	}
}

/* Mobile portrait */
@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.header-content {
		padding: 10px 0;
		gap: 8px;
	}

	.logo svg {
		width: 28px;
		height: 30px;
	}

	.logo-text {
		font-size: 18px;
	}

	.price-ticker {
		flex: 1;
		height: 32px;
		padding: 0 10px;
		min-width: auto;
		margin: 0 4px;
		background: rgba(131, 239, 170, 0.03);
	}

	.price-ticker-content {
		gap: 8px;
	}

	.price-icon {
		width: 16px;
		height: 16px;
		display: none;
	}

	.coin-name {
		display: none;
	}

	.coin-price {
		font-size: 13px;
		font-weight: 600;
	}

	.price-change {
		font-size: 11px;
		padding: 2px 4px;
	}

	.header-actions {
		gap: 8px;
	}

	.connect-wallet-btn {
		width: 32px;
		height: 32px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.connect-wallet-btn .icon {
		width: 16px;
		height: 16px;
		margin: 0;
	}

	.menu-toggle {
		padding: 6px;
		width: 32px;
		height: 32px;
	}

	.menu-toggle span {
		width: 20px;
	}

	.mobile-nav {
		padding: 16px;
	}

	.mobile-nav-link {
		font-size: 16px;
		padding: 16px;
	}
}

/* Very small mobile */
@media (max-width: 360px) {
	.container {
		padding: 0 12px;
	}

	.header-content {
		gap: 6px;
	}

	.logo-text {
		font-size: 16px;
	}

	.price-ticker {
		padding: 0 8px;
		margin: 0 2px;
	}

	.coin-price {
		font-size: 12px;
	}

	.price-change {
		font-size: 10px;
		padding: 1px 3px;
	}
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
	.header {
		padding: 8px 0;
	}

	.header-content {
		padding: 8px 0;
	}

	.logo svg {
		width: 28px;
		height: 30px;
	}

	.price-ticker {
		height: 32px;
	}

	.connect-wallet-btn,
	.menu-toggle {
		height: 32px;
	}

	.mobile-menu {
		padding-top: 60px;
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.header.scrolled {
	background: rgba(15, 16, 20, 0.98);

	border-bottom-color: rgba(131, 239, 170, 0.1);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 16, 20, 0.98);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	padding-top: 80px;
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	padding: 20px;
	max-width: 400px;
	margin: 0 auto;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	padding: 20px;
	margin-bottom: 8px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid transparent;
	transition: var(--transition);
}

.mobile-nav-link:hover {
	color: var(--text-white);
	background: rgba(131, 239, 170, 0.1);
	border-color: rgba(131, 239, 170, 0.2);
}

.mobile-nav-link .icon {
	width: 24px;
	height: 24px;
	opacity: 0.7;
}

.mobile-nav-link:hover .icon {
	opacity: 1;
	color: var(--accent-green);
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	position: relative;
	top: 6px;
}

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

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	position: relative;
	top: -6px;
}

/* Hero Section */
.hero {
	position: relative;
	padding: 80px 0 100px;
	overflow: visible;
}

/* Hero Background */
.hero-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-glow {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.3;
}

.hero-glow-1 {
	background: var(--accent-green);
	top: -150px;
	right: -150px;
	animation: glow-pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
	background: var(--accent-green);
	bottom: -150px;
	left: -150px;
	animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2) translate(20px, -20px);
		opacity: 0.2;
	}
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 20% 50%,
			rgba(131, 239, 170, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(131, 239, 170, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(131, 239, 170, 0.08) 0%,
			transparent 50%
		);
}

/* Hero Content */
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(131, 239, 170, 0.1);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 100px;
	padding: 8px 20px;
	margin-bottom: 24px;
	animation: badge-appear 0.6s ease-out;
}

.hero-badge .icon {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
}

.hero-badge span {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-green);
	letter-spacing: 0.5px;
}

@keyframes badge-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Title */
.hero-title {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	animation: title-appear 0.8s ease-out 0.1s both;
}

.hero-title-line {
	display: block;
}

.hero-title-highlight {
	color: var(--accent-green);
	text-shadow: 0 0 40px rgba(131, 239, 170, 0.5);
}

@keyframes title-appear {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Description */
.hero-description {
	font-size: 20px;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: desc-appear 0.8s ease-out 0.2s both;
}

@keyframes desc-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Actions */
.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
	animation: actions-appear 0.8s ease-out 0.3s both;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 40px;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-btn .icon {
	width: 20px;
	height: 20px;
	transition: all 0.4s ease;
}

.hero-btn-primary {
	background: linear-gradient(135deg, #83efaa 0%, #5fd88a 100%);
	color: #0f1014;
	position: relative;
	z-index: 1;
	border: 2px solid transparent;
	background-clip: padding-box;
}

.hero-btn-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #5fd88a 0%, #4bc276 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	border-radius: 100px;
}

.hero-btn-primary::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn-primary:hover {
	transform: scale(1.05) translateY(-2px);
}

.hero-btn-primary:hover::before {
	opacity: 1;
}

.hero-btn-primary:hover .icon {
	transform: rotate(15deg) scale(1.1);
}

.hero-btn-primary:active {
	transform: scale(0.98);
}

.hero-btn-primary:active::after {
	width: 300px;
	height: 300px;
}

.hero-btn-secondary {
	background: transparent;
	color: var(--text-white);
	border: 2px solid rgba(131, 239, 170, 0.3);
	position: relative;
	overflow: hidden;
}

.hero-btn-secondary::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		45deg,
		var(--accent-green),
		transparent,
		var(--accent-green)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	filter: blur(5px);
}

.hero-btn-secondary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--bg-dark);
	z-index: -1;
}

.hero-btn-secondary:hover {
	color: var(--accent-green);
	border-color: var(--accent-green);
	transform: scale(1.05) translateY(-2px);
}

.hero-btn-secondary:hover::before {
	opacity: 0.3;
}

.hero-btn-secondary:hover .icon {
	transform: rotate(-15deg) scale(1.1);
}

@keyframes actions-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hero Stats */
.hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 0;
	animation: stats-appear 0.8s ease-out 0.4s both;
}

.hero-stat {
	text-align: center;
}

.hero-stat-value {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 4px;
}

.hero-stat-label {
	font-size: 14px;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-stat-separator {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
}

@keyframes stats-appear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating Elements */
.hero-floating-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: visible;
}

.floating-element {
	position: absolute;
	width: 120px;
	height: 120px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 24px;
	padding: 24px;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.floating-element .icon {
	width: 48px;
	height: 48px;
	color: var(--accent-green);
}

.floating-element-1 {
	top: 20%;
	left: 10%;
	animation: float-1 20s ease-in-out infinite;
}

.floating-element-2 {
	top: 60%;
	right: 15%;
	animation: float-2 25s ease-in-out infinite;
}

.floating-element-3 {
	bottom: 20%;
	left: 20%;
	animation: float-3 18s ease-in-out infinite;
}

.floating-element-4 {
	top: 15%;
	right: 5%;
	animation: float-4 22s ease-in-out infinite;
}

.floating-element-5 {
	bottom: 10%;
	right: 25%;
	animation: float-5 16s ease-in-out infinite;
}

.floating-element-6 {
	top: 70%;
	left: 5%;
	animation: float-6 20s ease-in-out infinite;
}

@keyframes float-1 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(45deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(-20deg);
	}
}

@keyframes float-2 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-40px, 20px) rotate(-30deg);
	}
	66% {
		transform: translate(20px, -40px) rotate(60deg);
	}
}

@keyframes float-3 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(40px, 30px) rotate(90deg);
	}
	66% {
		transform: translate(-30px, -20px) rotate(-45deg);
	}
}

@keyframes float-4 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(-25px, 35px) rotate(75deg);
	}
	50% {
		transform: translate(35px, -15px) rotate(-30deg);
	}
	75% {
		transform: translate(-15px, -25px) rotate(45deg);
	}
}

@keyframes float-5 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	40% {
		transform: translate(30px, -35px) rotate(-60deg);
	}
	80% {
		transform: translate(-25px, 25px) rotate(120deg);
	}
}

@keyframes float-6 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	30% {
		transform: translate(45px, -20px) rotate(80deg);
	}
	60% {
		transform: translate(-20px, 40px) rotate(-40deg);
	}
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
	.hero-glow {
		display: none;
	}

	.hero-title {
		font-size: 48px;
	}

	.hero-description {
		font-size: 18px;
	}

	.hero-stats {
		gap: 32px;
	}

	.hero-stat-value {
		font-size: 32px;
	}

	.floating-element-5,
	.floating-element-6 {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 60px 0 60px;
		overflow-x: hidden;
	}

	.hero-title {
		font-size: 36px;
		margin-bottom: 16px;
	}

	.hero-description {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-btn {
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		gap: 24px;
	}

	.hero-stat-value {
		font-size: 28px;
	}

	.hero-stat-label {
		font-size: 12px;
	}

	.hero-glow {
		display: none;
	}

	.floating-element {
		display: none;
	}

	.floating-element-4,
	.floating-element-5,
	.floating-element-6 {
		display: none;
	}

	.floating-element-1,
	.floating-element-2,
	.floating-element-3 {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 40px 0 50px;
		overflow-x: hidden;
	}

	.hero-glow {
		display: none;
	}

	.hero-badge {
		font-size: 12px;
		padding: 6px 16px;
		margin-bottom: 24px;
	}

	.hero-badge .icon {
		width: 14px;
		height: 14px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-description {
		font-size: 15px;
		line-height: 1.5;
	}

	.hero-btn {
		font-size: 14px;
		padding: 16px 32px;
		letter-spacing: 0.3px;
	}

	.hero-btn .icon {
		width: 18px;
		height: 18px;
	}

	.hero-stats {
		gap: 20px;
		margin-bottom: 0;
	}

	.hero-stat-value {
		font-size: 24px;
	}

	.hero-stat-separator {
		height: 30px;
	}
}

@media (max-width: 360px) {
	.hero-glow {
		display: none;
	}

	.hero-title {
		font-size: 24px;
	}

	.hero-stat-value {
		font-size: 20px;
	}

	.hero-stats {
		gap: 16px;
	}
}

/* Decorative Line with Logos */
.decorative-line {
	position: absolute;
	bottom: -15px;
	left: -5%;
	right: -5%;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(131, 239, 170, 0.08) 0%,
		rgba(131, 239, 170, 0.15) 50%,
		rgba(131, 239, 170, 0.08) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 20px;
	transform: rotate(-1deg);
	overflow: hidden;
	z-index: 100;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(131, 239, 170, 0.05),
		inset 0 1px 5px rgba(255, 255, 255, 0.05);
}

.decorative-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.2),
		transparent
	);
	animation: lineShimmer 4s infinite;
}

@keyframes lineShimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.decorative-line-content {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	gap: 60px;
	white-space: nowrap;
	animation: scrollLogos 30s linear infinite;
}

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

.decorative-logo {
	font-size: 18px;
	font-weight: 700;
	color: var(--accent-green);
	text-shadow: 0 1px 10px rgba(131, 239, 170, 0.4),
		0 0 20px rgba(131, 239, 170, 0.2);
	letter-spacing: -0.02em;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	position: relative;
}

.decorative-logo::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -12px;
	width: 8px;
	height: 8px;
	background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
	border-radius: 50%;
	transform: translateY(-50%);
	animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
	0% {
		opacity: 0.5;
		transform: translateY(-50%) scale(0.8);
	}
	100% {
		opacity: 1;
		transform: translateY(-50%) scale(1.2);
	}
}

.decorative-logo:hover {
	opacity: 1;
	transform: scale(1.05);
}

/* Responsive Decorative Line */
@media (max-width: 1024px) {
	.decorative-line {
		bottom: -12px;
		height: 50px;
		transform: rotate(1.5deg);
		left: -2%;
		right: -2%;
	}

	.decorative-logo {
		font-size: 16px;
	}

	.decorative-line-content {
		gap: 50px;
	}
}

@media (max-width: 768px) {
	.decorative-line {
		bottom: -10px;
		height: 40px;
		transform: rotate(-3deg);
		border-radius: 15px;
		left: 0;
		right: 0;
	}

	.decorative-logo {
		font-size: 14px;
	}

	.decorative-line-content {
		gap: 40px;
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.decorative-line {
		bottom: -8px;
		height: 35px;
		transform: rotate(-2deg);
		border-radius: 12px;
		left: 0;
		right: 0;
		margin: 0 10px;
	}

	.decorative-logo {
		font-size: 12px;
	}

	.decorative-line-content {
		gap: 30px;
		padding: 0 10px;
	}

	.decorative-logo::before {
		width: 6px;
		height: 6px;
		left: -8px;
	}
}

/* Extra small screens */
@media (max-width: 360px) {
	.decorative-line {
		left: 0;
		right: 0;
		margin: 0 5px;
	}
}

/* About Section */
.about {
	position: relative;
	padding: 100px 0;
	background: var(--background);
	overflow: hidden;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.3),
		transparent
	);
}

/* Section Header */
.about-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(131, 239, 170, 0.1);
	border: 1px solid rgba(131, 239, 170, 0.2);
	border-radius: 100px;
	padding: 8px 20px;
	margin-bottom: 24px;
	animation: fadeInUp 0.6s ease-out;
}

.section-badge .icon {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
}

.section-badge span {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-green);
	letter-spacing: 0.5px;
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--text-white);
	animation: fadeInUp 0.8s ease-out 0.1s both;
}

.title-highlight {
	color: var(--accent-green);
	text-shadow: 0 0 30px rgba(131, 239, 170, 0.4);
}

.section-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-gray);
	margin-bottom: 0;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Content */
.about-content {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

/* Feature Cards */
.about-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 0;
}

.feature-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 32px;
	position: relative;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-green),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(131, 239, 170, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(131, 239, 170, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(131, 239, 170, 0.1);
}

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

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

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon .icon {
	color: var(--accent-green);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.feature-icon .icon {
	width: 28px;
	height: 28px;
	color: rgba(131, 239, 170, 0.8);
	transition: all 0.4s ease;
}

.feature-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.feature-description {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-gray);
	margin: 0;
	position: relative;
	z-index: 1;
}

/* Stats Cards */
.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.about-stats::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.1),
		transparent
	);
	animation: statsShimmer 6s infinite;
}

@keyframes statsShimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.stat-card {
	text-align: center;
	position: relative;
	z-index: 1;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent-green);
	margin-bottom: 8px;
	text-shadow: 0 0 20px rgba(131, 239, 170, 0.3);
}

.stat-label {
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
	.about {
		padding: 80px 0;
	}

	.about-header {
		margin-bottom: 60px;
	}

	.section-title {
		font-size: 40px;
	}

	.about-features {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 24px;
	}

	.feature-card {
		padding: 28px;
	}

	.about-content {
		gap: 50px;
	}
}

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

	.about-header {
		margin-bottom: 50px;
	}

	.section-title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.section-description {
		font-size: 16px;
	}

	.about-features {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.feature-card {
		padding: 24px;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 16px;
	}

	.feature-icon .icon {
		width: 24px;
		height: 24px;
	}

	.feature-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.feature-description {
		font-size: 14px;
	}

	.about-stats {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		padding: 32px;
		gap: 20px;
	}

	.stat-number {
		font-size: 28px;
		margin-bottom: 6px;
	}

	.stat-label {
		font-size: 12px;
	}

	.about-content {
		gap: 40px;
	}
}

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

	.section-title {
		font-size: 28px;
	}

	.feature-card {
		padding: 20px;
	}

	.about-stats {
		grid-template-columns: repeat(2, 1fr);
		padding: 24px;
		gap: 16px;
	}

	.stat-number {
		font-size: 24px;
	}

	.stat-label {
		font-size: 11px;
	}
}

@media (max-width: 360px) {
	.section-title {
		font-size: 24px;
	}

	.about-features {
		gap: 16px;
	}

	.feature-card {
		padding: 18px;
	}
}

/* Tokenomics Section */
.tokenomics {
	position: relative;
	padding: 120px 0;
	background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
	overflow: hidden;
}

/* Allow sticky overflow only on desktop */
@media (min-width: 1025px) {
	.tokenomics {
		overflow: visible;
	}
}

.tokenomics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(131, 239, 170, 0.3),
		transparent
	);
}

.tokenomics-header {
	text-align: center;
	margin-bottom: 80px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.tokenomics-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-bottom: 80px;
}

/* Min-height only for desktop sticky effect */
@media (min-width: 1025px) {
	.tokenomics-content {
		min-height: 100vh;
	}

	.tokenomics-details {
		min-height: 80vh;
	}
}

/* Chart Section */
.tokenomics-chart {
	position: relative;
	align-self: start;
	height: fit-content;
}

/* Sticky only on desktop */
@media (min-width: 1025px) {
	.tokenomics-chart {
		position: -webkit-sticky;
		position: sticky;
		top: 100px;
		z-index: 10;
	}
}

.chart-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.pie-chart {
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		var(--accent-green) 0deg 180deg,
		#4ade80 180deg 270deg,
		#22d3ee 270deg 324deg,
		#fb7185 324deg 360deg
	);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: chartRotate 20s linear infinite;
	box-shadow: 0 0 50px rgba(131, 239, 170, 0.2),
		inset 0 0 100px rgba(0, 0, 0, 0.3);
}

@keyframes chartRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.chart-center {
	width: 140px;
	height: 140px;
	background: var(--bg-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(131, 239, 170, 0.3);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.total-supply {
	text-align: center;
	animation: chartRotate 20s linear infinite reverse;
}

.supply-number {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 4px;
}

.supply-label {
	display: block;
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
}

.chart-legend {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 300px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
}

.legend-item:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(131, 239, 170, 0.3);
	transform: translateX(8px);
}

.legend-color {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	flex-shrink: 0;
}

.legend-airdrop {
	background: var(--accent-green);
	box-shadow: 0 0 10px rgba(131, 239, 170, 0.5);
}

.legend-liquidity {
	background: #4ade80;
	box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.legend-development {
	background: #22d3ee;
	box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.legend-marketing {
	background: #fb7185;
	box-shadow: 0 0 10px rgba(251, 113, 133, 0.5);
}

.legend-label {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-white);
}

/* Details Section */
.tokenomics-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.detail-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	cursor: pointer;
	transition: var(--transition);
	opacity: 0.6;
	transform: scale(0.98);
}

.detail-card.active {
	opacity: 1;
	transform: scale(1);
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	box-shadow: 0 8px 32px rgba(131, 239, 170, 0.1);
}

.detail-card:hover {
	opacity: 1;
	transform: scale(1);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.detail-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.detail-icon {
	width: 48px;
	height: 48px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.detail-card.active .detail-icon {
	background: var(--accent-green);
}

.detail-icon .icon {
	width: 24px;
	height: 24px;
	color: var(--accent-green);
	transition: var(--transition);
}

.detail-card.active .detail-icon .icon {
	color: var(--bg-dark);
}

.detail-info {
	flex: 1;
}

.detail-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 8px;
}

.detail-percentage {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent-green);
}

.detail-content {
	padding-left: 64px;
}

.detail-description {
	font-size: 16px;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 20px;
}

.detail-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.detail-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.stat-label {
	font-size: 13px;
	color: var(--text-gray);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	font-size: 16px;
	color: var(--text-white);
	font-weight: 600;
}

/* Features Section */
.tokenomics-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-highlight {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	transition: var(--transition);
}

.feature-highlight:hover {
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	transform: translateY(-4px);
}

.highlight-icon {
	width: 56px;
	height: 56px;
	background: rgba(131, 239, 170, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.highlight-icon .icon {
	width: 28px;
	height: 28px;
	color: var(--accent-green);
}

.highlight-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 8px;
}

.highlight-description {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

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

.tokenomics-header {
	animation: tokenomicsAppear 0.8s ease-out;
}

.tokenomics-chart {
	animation: tokenomicsAppear 0.8s ease-out 0.2s both;
}

.tokenomics-details {
	animation: tokenomicsAppear 0.8s ease-out 0.4s both;
}

.tokenomics-features {
	animation: tokenomicsAppear 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.tokenomics {
		padding: 80px 0;
	}

	.tokenomics-content {
		gap: 60px;
		min-height: auto;
	}

	.tokenomics-chart {
		position: relative;
		top: auto;
		z-index: auto;
	}

	.tokenomics-details {
		min-height: auto;
	}

	.pie-chart {
		width: 250px;
		height: 250px;
	}

	.chart-center {
		width: 120px;
		height: 120px;
	}

	.supply-number {
		font-size: 30px;
	}

	.detail-content {
		padding-left: 0;
		margin-top: 16px;
	}

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

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

	.tokenomics-content {
		grid-template-columns: 1fr;
		gap: 50px;
		min-height: auto;
	}

	.tokenomics-chart {
		position: relative;
		top: auto;
		z-index: auto;
	}

	.tokenomics-details {
		min-height: auto;
	}

	.tokenomics-features {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.feature-highlight {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.pie-chart {
		width: 200px;
		height: 200px;
	}

	.chart-center {
		width: 100px;
		height: 100px;
	}

	.supply-number {
		font-size: 24px;
	}

	.supply-label {
		font-size: 12px;
	}

	.chart-legend {
		max-width: none;
	}

	.detail-card {
		padding: 20px;
	}

	.detail-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.detail-percentage {
		font-size: 20px;
	}
}

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

	.tokenomics-header {
		margin-bottom: 40px;
	}

	.tokenomics-content {
		gap: 40px;
		margin-bottom: 40px;
		min-height: auto;
	}

	.tokenomics-chart {
		position: relative;
		top: auto;
		z-index: auto;
	}

	.tokenomics-details {
		min-height: auto;
	}

	.pie-chart {
		width: 180px;
		height: 180px;
	}

	.chart-center {
		width: 80px;
		height: 80px;
	}

	.supply-number {
		font-size: 20px;
	}

	.chart-legend {
		gap: 12px;
	}

	.legend-item {
		padding: 10px 12px;
	}

	.detail-title {
		font-size: 18px;
	}

	.highlight-icon {
		width: 48px;
		height: 48px;
	}

	.highlight-icon .icon {
		width: 24px;
		height: 24px;
	}

	.highlight-title {
		font-size: 16px;
	}
}

/* Roadmap Section */
.roadmap {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

.roadmap-header {
	text-align: center;
	margin-bottom: 80px;
}

/* Roadmap Timeline */
.roadmap-timeline {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.timeline-item {
	display: flex;
	margin-bottom: 60px;
	position: relative;
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) {
	animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
	animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
	animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
	animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
	animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
	animation-delay: 0.6s;
}

.timeline-marker {
	flex-shrink: 0;
	width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 40px;
}

.marker-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.timeline-item.completed .marker-icon {
	background: linear-gradient(135deg, var(--accent-green), #4ade80);
	color: var(--bg-dark);
}

.timeline-item.current .marker-icon {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: white;
}

.timeline-item.upcoming .marker-icon {
	background: linear-gradient(135deg, #6b7280, #9ca3af);
	color: white;
}

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

@keyframes pulse-roadmap {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
	}
}

.timeline-line {
	width: 2px;
	height: 80px;
	background: linear-gradient(
		to bottom,
		rgba(107, 114, 128, 0.3),
		rgba(107, 114, 128, 0.1)
	);
	margin-top: 10px;
}

.timeline-line.last {
	display: none;
}

.timeline-content {
	flex: 1;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 32px;
	position: relative;
	transition: all 0.3s ease;
}

.timeline-content::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 20px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid rgba(255, 255, 255, 0.03);
}

.timeline-content:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.timeline-period {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-green);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.timeline-title {
	font-size: 24px;
	font-weight: 700;
	color: white;
	margin-bottom: 12px;
	line-height: 1.2;
}

.timeline-status {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.timeline-status.completed {
	background: rgba(131, 239, 170, 0.2);
	color: var(--accent-green);
	border: 1px solid rgba(131, 239, 170, 0.3);
}

.timeline-status.current {
	background: rgba(245, 158, 11, 0.2);
	color: #f59e0b;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.timeline-status.upcoming {
	background: rgba(107, 114, 128, 0.2);
	color: #9ca3af;
	border: 1px solid rgba(107, 114, 128, 0.3);
}

.timeline-description {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
}

.timeline-achievements {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.achievement {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

.achievement:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.achievement .icon {
	width: 16px;
	height: 16px;
	color: var(--accent-green);
	flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.roadmap {
		padding: 80px 0;
	}

	.roadmap-header {
		margin-bottom: 60px;
	}

	.roadmap-timeline {
		max-width: 100%;
		padding: 0 20px;
	}

	.timeline-item {
		margin-bottom: 40px;
	}

	.timeline-marker {
		width: 40px;
		margin-right: 20px;
	}

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

	.marker-icon .icon {
		width: 18px;
		height: 18px;
	}

	.timeline-line {
		height: 60px;
	}

	.timeline-content {
		padding: 24px;
	}

	.timeline-content::before {
		left: -15px;
		border-right-width: 15px;
	}

	.timeline-title {
		font-size: 20px;
	}

	.timeline-achievements {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.achievement {
		padding: 10px 12px;
		font-size: 13px;
	}
}

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

	.timeline-marker {
		width: 32px;
		margin-right: 16px;
	}

	.marker-icon {
		width: 32px;
		height: 32px;
	}

	.marker-icon .icon {
		width: 16px;
		height: 16px;
	}

	.timeline-content {
		padding: 20px;
	}

	.timeline-content::before {
		left: -12px;
		border-right-width: 12px;
		border-top-width: 8px;
		border-bottom-width: 8px;
	}

	.timeline-title {
		font-size: 18px;
	}

	.timeline-description {
		font-size: 14px;
	}
}

/* FAQ Section */
.faq {
	padding: 120px 0;
	background: var(--bg-dark);
	position: relative;
}

.faq::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		ellipse at center top,
		rgba(131, 239, 170, 0.08) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.faq-header {
	text-align: center;
	margin-bottom: 80px;
}

.faq-content {
	max-width: 1200px;
	margin: 0 auto;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.faq-category {
	opacity: 0;
	animation: fadeInUp 0.8s ease forwards;
}

.faq-category:nth-child(1) {
	animation-delay: 0.1s;
}
.faq-category:nth-child(2) {
	animation-delay: 0.2s;
}
.faq-category:nth-child(3) {
	animation-delay: 0.3s;
}
.faq-category:nth-child(4) {
	animation-delay: 0.4s;
}

.category-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 32px;
	padding: 16px 0;
	border-bottom: 2px solid rgba(131, 239, 170, 0.2);
	position: relative;
}

.category-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--accent-green);
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	transform: translateY(-2px);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
}

.faq-question span {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	line-height: 1.4;
}

.faq-icon {
	width: 24px;
	height: 24px;
	color: var(--accent-green);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--accent-green);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	opacity: 0;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	opacity: 1;
	padding: 0 24px 24px 24px;
}

.faq-answer p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 16px 0 0 0;
}

/* Hover effects */
.faq-question:hover {
	background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover span {
	color: var(--accent-green);
}

.faq-question:hover .faq-icon {
	transform: scale(1.1);
}

.faq-item.active .faq-question:hover .faq-icon {
	transform: rotate(180deg) scale(1.1);
}

/* Active state */
.faq-item.active {
	background: rgba(131, 239, 170, 0.05);
	border-color: rgba(131, 239, 170, 0.2);
	box-shadow: 0 8px 32px rgba(131, 239, 170, 0.1);
}

.faq-item.active .faq-question {
	background: rgba(131, 239, 170, 0.1);
	border-bottom: 1px solid rgba(131, 239, 170, 0.2);
}

.faq-item.active .faq-question span {
	color: var(--accent-green);
}

/* Animation for answer reveal */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-item.active .faq-answer {
	animation: fadeInDown 0.4s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.faq {
		padding: 80px 0;
	}

	.faq-header {
		margin-bottom: 60px;
	}

	.faq-grid {
		gap: 40px;
	}

	.category-title {
		font-size: 20px;
		margin-bottom: 24px;
	}
}

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

	.faq-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.category-title {
		font-size: 18px;
		margin-bottom: 20px;
		padding: 12px 0;
	}

	.faq-question {
		padding: 20px;
	}

	.faq-question span {
		font-size: 16px;
	}

	.faq-icon {
		width: 20px;
		height: 20px;
		margin-left: 12px;
	}

	.faq-item.active .faq-answer {
		padding: 0 20px 20px 20px;
		max-height: 400px;
	}

	.faq-answer p {
		font-size: 14px;
		margin: 12px 0 0 0;
	}
}

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

	.faq-header {
		margin-bottom: 40px;
	}

	.faq-grid {
		gap: 30px;
	}

	.faq-question {
		padding: 16px;
	}

	.faq-question span {
		font-size: 15px;
	}

	.faq-icon {
		width: 18px;
		height: 18px;
		margin-left: 8px;
	}

	.faq-item.active .faq-answer {
		padding: 0 16px 16px 16px;
	}

	.faq-answer p {
		font-size: 13px;
		line-height: 1.5;
		margin: 10px 0 0 0;
	}
}

/* Footer Section */
.footer {
	background: linear-gradient(135deg, #0f1419 0%, #15161b 50%, #1a1b21 100%);
	color: var(--text-white);
	position: relative;
	overflow: hidden;
}

.footer-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.footer-glow {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 600px;
	background: radial-gradient(
		ellipse,
		rgba(131, 239, 170, 0.15) 0%,
		rgba(131, 239, 170, 0.05) 40%,
		transparent 70%
	);
	filter: blur(100px);
}

.footer-content {
	padding: 80px 0 0 0;
	position: relative;
	z-index: 1;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	margin-bottom: 60px;
}

.footer-brand {
	max-width: 400px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.footer-logo svg {
	color: var(--accent-green);
	transition: all 0.3s ease;
}

.footer-logo:hover svg {
	transform: scale(1.05);
	filter: drop-shadow(0 0 20px rgba(131, 239, 170, 0.6));
}

.footer-logo-text {
	font-family: var(--font-lexend-giga);
	font-size: 28px;
	font-weight: 600;
	color: var(--text-white);
	line-height: 1;
}

.footer-tagline {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
}

.footer-stats {
	display: flex;
	gap: 32px;
}

.footer-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-stat .stat-number {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-green);
}

.footer-stat .stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-heading {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 20px;
	position: relative;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--accent-green);
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	position: relative;
}

.footer-link:hover {
	color: var(--accent-green);
	transform: translateX(4px);
}

.footer-link::before {
	content: '';
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: var(--accent-green);
	transition: width 0.3s ease;
}

.footer-link:hover::before {
	width: 4px;
}

.footer-social {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 40px;
	margin-bottom: 40px;
}

.footer-social .footer-heading {
	margin-bottom: 24px;
	text-align: center;
}

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

.social-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: rgba(131, 239, 170, 0.1);
	border-color: rgba(131, 239, 170, 0.3);
	color: var(--accent-green);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(131, 239, 170, 0.2);
}

.social-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 32px 0;
}

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

.footer-copyright {
	flex: 1;
}

.footer-copyright p {
	margin: 0 0 8px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
	font-size: 12px !important;
	color: rgba(255, 255, 255, 0.5) !important;
	font-style: italic;
}

.footer-legal {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.legal-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.legal-link:hover {
	color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-content {
		padding: 60px 0 0 0;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.footer-brand {
		max-width: none;
		margin: 0 auto;
	}

	.footer-stats {
		justify-content: center;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.social-links {
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.footer-content {
		padding: 50px 0 0 0;
	}

	.footer-main {
		gap: 40px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: left;
	}

	.footer-stats {
		gap: 24px;
	}

	.footer-stat .stat-number {
		font-size: 18px;
	}

	.footer-tagline {
		font-size: 15px;
	}

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

	.footer-legal {
		justify-content: center;
		gap: 16px;
	}

	.social-links {
		gap: 12px;
	}

	.social-link {
		padding: 10px 16px;
		font-size: 13px;
	}
}

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

	.footer-logo-text {
		font-size: 24px;
	}

	.footer-stats {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	.footer-stat {
		align-items: center;
		text-align: center;
	}

	.footer-heading {
		font-size: 16px;
		text-align: center;
	}

	.footer-legal {
		flex-direction: column;
		gap: 12px;
	}

	.social-links {
		grid-template-columns: repeat(2, 1fr);
		display: grid;
		gap: 12px;
	}

	.social-link {
		justify-content: center;
		padding: 12px 16px;
	}
}
