* {
	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;
    z-index: -1;
}

@media screen and (orientation: portrait) {
    body {
        background-image: url('images/bg-mobile.webp');
        background-position: left top;
        background-size: 127%;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

._k 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;
}

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

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

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

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

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

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

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

	._7 {
		font-size: 20px;
	}

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

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

	._a {
		font-size: 10px;
	}

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

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

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

	._r {
		gap: 8px;
	}

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

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

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

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

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

	._7 {
		font-size: 18px;
	}

	._u {
		padding: 4px 6px;
	}

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

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

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

	._r {
		gap: 6px;
	}

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

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

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

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

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

	._6 {
		text-align: center;
	}

	._d {
		order: -1;
	}

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

	._s {
		font-size: 36px;
	}

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

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

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

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

	._8 {
		font-size: 32px;
	}

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

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

	._3 {
		font-size: 28px;
	}

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

	._2e {
		font-size: 20px;
	}

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

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

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

	._ue {
		font-size: 16px;
	}

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

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

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

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

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

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

._m {
	text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

._7e {
	text-align: center;
}

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

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

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

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

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

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

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

	._8 {
		font-size: 28px;
	}

	._b {
		font-size: 14px;
	}

	._v {
		gap: 20px;
	}

	._3 {
		font-size: 24px;
	}

	._y {
		font-size: 12px;
	}

	._ee {
		padding: 20px;
	}

	._2e {
		font-size: 18px;
	}

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

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

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

	._ue {
		font-size: 14px;
	}

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

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

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

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

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

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

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

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

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

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

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

._6e {
	flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	._te {
		text-align: center;
	}

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

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

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

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

	._ke {
		font-size: 15px;
	}

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

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

	._we {
		gap: 30px;
	}

	._5e ._de {
		font-size: 14px;
	}

	._5e ._y {
		font-size: 10px;
	}
}

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

	._re {
		font-size: 16px;
	}

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

	._te {
		font-size: 13px;
	}

	._fe {
		gap: 10px;
	}

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

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

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

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

	._ke {
		font-size: 14px;
	}

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

	._je {
		gap: 16px;
	}

	._we {
		gap: 20px;
	}

	._5e ._de {
		font-size: 13px;
	}

	._5e ._y {
		font-size: 9px;
	}

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