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

body {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
	background-color: var(--text-color);
	background-image: url('images/bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #ffffff;
	min-height: 100vh;
}

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

/* Header */
._k {
	background-color: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: all 0.3s ease;
}

._b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

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

._d {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 8px 16px;
}

._z {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	word-break: keep-all;
	white-space: nowrap;
}

._q {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	min-width: 60px;
}

._x {
	font-size: 12px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 4px;
	min-width: 45px;
	text-align: center;
}

._x[change="positive"] {
color: #83efaa;
background: rgba(131, 239, 170, 0.1);
}

._x[change="negative"] {
color: #ff6b6b;
background: rgba(255, 107, 107, 0.1);
}

._g {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
}

._g img {
	width: 40px;
	height: 40px;
	border-radius: 20%;
}

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

._2 {
	display: flex;
	align-items: center;
	gap: 16px;
}

._j {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

._j:hover {
	color: var(--accent);
	background: var(--shadow-color-2);
	border-color: var(--shadow-color);
	transform: translateY(-2px);
}

._m {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--text-color);
	border: none;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

._m::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 ease;
}

._m:hover::before {
	left: 100%;
}

._m:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--shadow-color);
}

._m:active {
	transform: translateY(0);
}

/* Hero Section */
._u {
	padding: 80px 0 120px;
	display: flex;
	align-items: flex-start;
}

._0 {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}

._o {
	flex: 1;
	text-align: left;
}

._4 {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	align-self: center;
}

._r {
	width: 350px;
	height: auto;
	border-radius: 20%;
	transition: transform 0.3s ease;
	animation: float 4s linear infinite;
}

body{user-select:none;-webkit-user-select:none;}html{}

._r:hover {
	animation-play-state: paused;
	transform: scale(1.05) translateY(-5px);
}

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

._5 {
	display: inline-block;
	background: var(--shadow-color-3);
	border: 1px solid var(--shadow-color);
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

._5 span {
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
}

._s {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 24px;
	color: #ffffff;
}

._n {
	color: var(--accent);
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

._c {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}

._1 {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

._w {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--text-color);
	border: none;
	padding: 16px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

._w::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 ease;
}

._w:hover::before {
	left: 100%;
}

._w:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--shadow-color);
}

._9 {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 16px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

._9:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
	._b {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
		padding: 16px 0;
	}

	._h {
		flex-direction: row;
		gap: 16px;
		align-items: center;
		flex: 1;
	}

	._g {
		font-size: 20px;
	}

	._g img {
		width: 32px;
		height: 32px;
		border-radius: 20%;
	}

	._d {
		padding: 4px 8px;
		gap: 6px;
		min-width: auto;
	}

	._z {
		font-size: 10px;
	}

	._q {
		font-size: 12px;
		min-width: 50px;
	}

	._x {
		font-size: 10px;
		padding: 1px 4px;
		min-width: 35px;
	}

	._8 {
		gap: 12px;
		flex-shrink: 0;
	}

	._2 {
		gap: 8px;
	}

	._j {
		width: 32px;
		height: 32px;
	}

	._j svg {
		width: 16px;
		height: 16px;
	}

	._m {
		padding: 8px 16px;
		font-size: 12px;
		white-space: nowrap;
	}
}

/* Extra small mobile */
@media (max-width: 480px) {
	._b {
		flex-direction: column;
		gap: 12px;
		padding: 12px 0;
	}

	._h {
		width: 100%;
		justify-content: space-between;
	}

	._g {
		font-size: 18px;
	}

	._d {
		padding: 4px 6px;
	}

	._q {
		font-size: 11px;
		min-width: 45px;
	}

	._x {
		font-size: 9px;
		min-width: 30px;
	}

	._8 {
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}

	._2 {
		gap: 6px;
	}

	._j {
		width: 30px;
		height: 30px;
	}

	._j svg {
		width: 14px;
		height: 14px;
	}

	._m {
		padding: 8px 20px;
		font-size: 12px;
		flex: 1;
		text-align: center;
		max-width: 120px;
	}
}

/* Mobile responsive for hero section */
@media (max-width: 768px) {
	._u {
		padding: 60px 0 80px;
	}

	._0 {
		flex-direction: column;
		gap: 40px;
	}

	._o {
		text-align: center;
	}

	._4 {
		order: -1;
	}

	._r {
		max-width: 70%;
		height: auto;
	}

	._s {
		font-size: 36px;
	}

	._c {
		font-size: 16px;
		max-width: 100%;
	}

	._1 {
		justify-content: center;
		flex-direction: column;
		gap: 16px;
	}

	._w,
	._9 {
		width: 100%;
		text-align: center;
	}

	/* About Airdrop Mobile */
	._y {
		padding: 0 0 60px 0;
	}

	._a {
		font-size: 32px;
	}

	._7 {
		font-size: 16px;
		margin-bottom: 40px;
	}

	._l {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
	}

	._v {
		font-size: 28px;
	}

	._33 {
		padding: 24px;
		margin-bottom: 30px;
	}

	._t3 {
		font-size: 20px;
	}

	._k3 {
		flex-direction: column;
		gap: 20px;
	}

	._e3 li {
		font-size: 14px;
		padding-left: 35px;
	}

	._h3 {
		max-width: 200px;
		height: auto;
	}

	._d3 {
		font-size: 16px;
	}

	._z3 {
		width: 100%;
		padding: 14px 20px;
	}
}

/* About Airdrop Section */
._y {
	padding: 0 0 80px 0;
}

._6 {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

._a {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
	line-height: 1.1;
}

._7 {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 50px;
}

._l {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 50px;
}

._i {
	text-align: center;
}

._v {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
}

._p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

._33 {
	text-align: left;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 40px;
	backdrop-filter: blur(10px);
}

._t3 {
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	text-align: center;
}

._e3 {
	list-style: none;
	padding: 0;
	flex: 1;
}

._e3 li {
	padding: 12px 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	position: relative;
	padding-left: 30px;
}

._e3 li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
	font-size: 18px;
}

._k3 {
	display: flex;
	gap: 40px;
	align-items: center;
}

._b3 {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 300px;
}

._h3 {
	max-width: 250px;
	height: auto;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

._h3:hover {
	transform: scale(1.05);
}

._g3 {
	text-align: center;
}

._d3 {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
}

._z3 {
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: var(--text-color);
	border: none;
	padding: 16px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

._z3::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 ease;
}

._z3:hover::before {
	left: 100%;
}

._z3:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--shadow-color);
}

/* Extra small mobile */
@media (max-width: 480px) {
	._r {
		width: 60vw;
		height: auto;
	}

	._y {
		padding: 0 0 40px 0;
	}

	._a {
		font-size: 28px;
	}

	._7 {
		font-size: 14px;
	}

	._l {
		gap: 20px;
	}

	._v {
		font-size: 24px;
	}

	._p {
		font-size: 12px;
	}

	._33 {
		padding: 20px;
	}

	._t3 {
		font-size: 18px;
	}

	._k3 {
		flex-direction: column;
		gap: 16px;
	}

	._e3 li {
		font-size: 13px;
		padding: 8px 0;
		padding-left: 35px;
	}

	._h3 {
		max-width: 180px;
		height: auto;
	}

	._d3 {
		font-size: 14px;
	}

	._z3 {
		font-size: 14px;
		padding: 12px 16px;
	}
}

/* Footer */
._q3 {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 80px;
}

._x3 {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	padding: 60px 0 40px;
}

._83 {
	flex: 1;
	max-width: 400px;
}

._23 {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

._23 img {
	width: 32px;
	height: 32px;
	border-radius: 8px;
}

._j3 {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 24px 0;
}

._m3 {
	display: flex;
	gap: 16px;
}

._u3 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

._u3:hover {
	color: var(--accent);
	background: var(--shadow-color-2);
	border-color: var(--shadow-color);
	transform: translateY(-2px);
}

._03 {
	display: flex;
	gap: 60px;
	flex: 2;
}

._o3 {
	flex: 1;
}

._53 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}

._s3 {
	list-style: none;
	padding: 0;
	margin: 0;
}

._s3 li {
	margin-bottom: 12px;
}

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

._s3 a:hover {
	color: var(--accent);
}

._n3 {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

._c3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

._13 {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	margin: 0;
}

._w3 {
	display: flex;
	gap: 40px;
}

._93 {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

._93 ._43 {
	color: var(--accent);
	font-size: 16px;
	font-weight: 600;
}

._93 ._p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Footer Mobile */
@media (max-width: 768px) {
	._x3 {
		flex-direction: column;
		gap: 40px;
		padding: 40px 0;
	}

	._83 {
		max-width: 100%;
		text-align: center;
	}

	._23 {
		justify-content: center;
		font-size: 18px;
	}

	._23 img {
		width: 28px;
		height: 28px;
	}

	._j3 {
		text-align: center;
	}

	._m3 {
		justify-content: center;
		gap: 12px;
	}

	._u3 {
		width: 36px;
		height: 36px;
	}

	._03 {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}

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

	._53 {
		font-size: 15px;
	}

	._s3 a {
		font-size: 13px;
	}

	._c3 {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	._w3 {
		gap: 30px;
	}

	._93 ._43 {
		font-size: 14px;
	}

	._93 ._p {
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	._x3 {
		gap: 30px;
		padding: 30px 0;
	}

	._23 {
		font-size: 16px;
	}

	._23 img {
		width: 24px;
		height: 24px;
	}

	._j3 {
		font-size: 13px;
	}

	._m3 {
		gap: 10px;
	}

	._u3 {
		width: 32px;
		height: 32px;
	}

	._u3 svg {
		width: 16px;
		height: 16px;
	}

	._03 {
		gap: 20px;
		align-items: center;
	}

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

	._53 {
		font-size: 14px;
	}

	._s3 a {
		font-size: 12px;
	}

	._c3 {
		gap: 16px;
	}

	._w3 {
		gap: 20px;
	}

	._93 ._43 {
		font-size: 13px;
	}

	._93 ._p {
		font-size: 9px;
	}

	._13 {
		font-size: 11px;
	}
}