* {
	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("bg.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #ffffff;
	min-height: 100vh;
}

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

/* Header */
._n {
	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;
}

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

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

._i {
	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;
	backdrop-filter: blur(10px);
}

._v {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}

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

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

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

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

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

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

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

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

._f {
	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);
}

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

._y {
	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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._1 {
	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;
}

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

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

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

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

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

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

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

	._t {
		font-size: 20px;
	}

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

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

	._v {
		font-size: 10px;
	}

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

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

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

	._h {
		gap: 8px;
	}

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

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

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

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

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

	._t {
		font-size: 18px;
	}

	._i {
		padding: 4px 6px;
	}

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

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

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

	._h {
		gap: 6px;
	}

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

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

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

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

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

	._r {
		text-align: center;
	}

	._l {
		order: -1;
	}

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

	._2 {
		font-size: 36px;
	}

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

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

	._1,
	._m {
		width: 100%;
		text-align: center;
	}

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

	._z {
		font-size: 32px;
	}

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

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

	._d {
		font-size: 28px;
	}

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

	._os {
		font-size: 20px;
	}

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

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

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

	._is {
		font-size: 16px;
	}

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

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

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

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

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

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

._6 {
	text-align: center;
}

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

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

._ss {
	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);
}

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

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

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

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

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

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

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

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

._ts {
	text-align: center;
}

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

._vs {
	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;
}

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

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

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

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

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

	._z {
		font-size: 28px;
	}

	._a {
		font-size: 14px;
	}

	._w {
		gap: 20px;
	}

	._d {
		font-size: 24px;
	}

	._g {
		font-size: 12px;
	}

	._ss {
		padding: 20px;
	}

	._os {
		font-size: 18px;
	}

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

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

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

	._is {
		font-size: 14px;
	}

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

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

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

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

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

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

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

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

._0s {
	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);
}

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

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

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

._rs {
	flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	._fs {
		text-align: center;
	}

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

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

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

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

	._5s {
		font-size: 15px;
	}

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

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

	._1s {
		gap: 30px;
	}

	._ms ._ls {
		font-size: 14px;
	}

	._ms ._g {
		font-size: 10px;
	}
}

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

	._hs {
		font-size: 16px;
	}

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

	._fs {
		font-size: 13px;
	}

	._ys {
		gap: 10px;
	}

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

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

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

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

	._5s {
		font-size: 14px;
	}

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

	._bs {
		gap: 16px;
	}

	._1s {
		gap: 20px;
	}

	._ms ._ls {
		font-size: 13px;
	}

	._ms ._g {
		font-size: 9px;
	}

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