* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
  font-family: 'Martian Mono';
  src: url('https://cdn.prod.website-files.com/65a9a08bc7bac8a3ada6c47c/65a9a75d86c26336e30eeb47_MartianMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martian Mono';
  src: url('https://cdn.prod.website-files.com/65a9a08bc7bac8a3ada6c47c/65a9a75d6b31d3f66c2c0517_MartianMono-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Martian Mono';
  src: url('https://cdn.prod.website-files.com/65a9a08bc7bac8a3ada6c47c/65a9a75d196fa7fee65636e8_MartianMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Road Rage';
  src: url('https://cdn.prod.website-files.com/65a9a08bc7bac8a3ada6c47c/65a9a78d8cb326d1e2cf3e79_RoadRage.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Martian Mono', sans-serif;
	font-weight: 400;
}

a {
	text-decoration: none;
	cursor: pointer;
}

a, a:hover {
	transition: all 0.3s ease-in-out;
}

.header {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 10px;
	z-index: 100;
	background: url('header-bg.jpg') no-repeat center;
	padding: 5px 0px;
}

.header-container {
	position: relative;
	margin: 0px auto;
	padding: 0px 20px;
	max-width: 1400px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.logo {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.logo-text {
	color: #ffffff;
	font-size: 12px;
	display: block;
}

.logo-symbol {
	position: relative;
	color: #2fec2f;
	font-size: 40px;
	font-family: 'Road Rage', sans-serif;
	text-shadow: 3px 2px 0px #eb14ff;
	line-height: 1;
}

.info-button {
	font-family: 'Road Rage', sans-serif;
	font-size: 40px;
	color: #d8fa06;
	cursor: pointer;
	text-decoration: none;
	background: transparent;
	border: none;
	position: relative;
	display: block;
	line-height: 70px;
	text-shadow: 3px 2px 0px #ff0352;
}

.buy-button {
	padding: 0px 15px;
	height: 40px;
	background: #ffffff;
	border-radius: 5px;
	border-bottom-right-radius: 20px;
	color: #000000;
	line-height: 40px;
	transition: all 0.3s ease;
}

.buy-button:hover {
	background: #2fec2f;
	transition: all 0.3s ease;
}

.audio-btn {
	position: absolute;
	bottom: 50px;
	right: 100px;
	color: #2fec2f;
	border-radius: 10px;
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 98;
}

.audio-btn::before {
	content: url('mute.svg');
	display: block;
	position: absolute;
	width: 63px;
	height: 61px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.3s ease;
}

.audio-btn.off {
	transition: all 0.3s ease;
}

.audio-btn.off::before {
	opacity: 1;
	transition: all 0.3s ease;
}

 .copy-btn {
	background-color: #aeaeae;
	text-transform: uppercase;
	color: #000000;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	font-size: 16px;
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	padding: 12px 18px;
	font-family: 'Martian Mono', sans-serif;
	transition: all 0.3s ease;
	font-weight: 600;
}

.copy-btn:hover {
	background-color: #2fec2f;
	transition: all 0.3s ease;
}

.copy-btn.copied {
	background-color: #28a745;
}

.tooltip {
	position: absolute;
	background-color: #333;
	color: white;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.tooltip.show {
	opacity: 1;
}

.main {
	width: 100%;
	min-height: 100vh;
	background: url('main-bg.jpg') no-repeat center;
	background-size: cover;
	border-left: 20px solid #0a0a0a;
	border-right: 20px solid #0a0a0a;
}

.main-text {
	position: absolute;
	overflow: hidden;
	left: 5vw;
	top: 200px;
	color: #2fec2f;
	background: #272727;
	padding: 7px 14px;
	font-size: 18px;
	z-index: 10;
}

.main-text span {
	text-transform: uppercase;
	font-family: 'Road Rage', sans-serif;
	color: #e545f4;
	text-shadow: 1px 1px 0px #d8fa06;
	font-size: 22px;
}

.message {

}

.message h2 {
	background: #ffffff;
	color: #000000;
	padding: 16px;
	font-size: 18px;
}

.message h3 {
	background: #ffffff;
	font-size: 18px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-left: 16px;
}

.message-text {
	background: #000000;
	color: #2fec2f;
	padding: 16px;
	display: block;
	font-size: 14px;
	text-shadow: 0px 0px 14px #2fec2f;
}

.about-us {
	position: absolute;
	width: 20vw;
	right: 5vw;
	top: 150px;
	z-index: 5;
}

.left-message {
	position: absolute;
	width: 20vw;
	left: 50px;
	bottom: 50px;
}

.main-bottom {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, 0px);
}

.socials {
	position: relative;
	margin: 0px auto;
	text-align: center;
}

.socials a {
	display: inline-block;
	position: relative;
	width: 46px;
	height: 46px;
}

.socials a img {
	position: relative;
	width: 100%;
	z-index: 1;
	display: inline-block;
}

.contract {
	position: relative;
	margin-top: 20px;
}

.content {
	width: 100%;
	z-index: 99;
	height: 0; 
    overflow: hidden; 
    background: url('eye-bg.jpg') no-repeat center;
    background-size: cover;
    transition: height 0.35s cubic-bezier(0.3, 0, 0.3, 1); 
    transform-origin: center; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.content.open {
	width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.3, 0, 0.3, 1); 
}

.close-btn {
	position: absolute;
	top: 110px;
	right: 20px;
	background: transparent;
	border: none;
	text-decoration: none;
	cursor: pointer;
	width: 52px;
	height: 52px;
	opacity: 0;
}

.close-btn img {
	width: 100%;
}

.content.open .close-btn {
	opacity: 1;
	transition-delay: 0.3s;
}

.token-info {
	position: absolute;
	top: 200px;
	left: 200px;
}

.faq-container {
	position: absolute;
	right: 15vw;
	top: 150px;
	width: 30vw;
	overflow: hidden;
	background-color: #343434;
	background-color: #5e5e5e;
	z-index: 5;
}

.faq-container h1 {
	font-family: 'Road Rage', sans-serif;
	color: #e545f3;
	padding-left: 14px;
}

.noise-root {
    opacity: .08;
    pointer-events: none;
    background-image: url('noise.gif');
    background-position: 0 0;
    background-size: 480px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    inset: 0%;
}

.faq-item {

}

.faq-question {
	padding: 7px 14px;
	cursor: pointer;
	font-size: 18px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #d8fa06;
}

.faq-question:hover {

}

.faq-question::after {
	content: "+"; 
	font-size: 24px;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	content: "−"; 
}

.faq-answer {
	max-height: 0; 
	overflow: hidden;
	padding: 0 10px;
	color: #000000;
	font-size: 16px;
	transition: max-height 0.3s ease, padding 0.3s ease; 
	border-bottom: 1px solid #d8fa06;
}

.faq-answer.active {
	max-height: 200px; 
	padding: 15px;
}

pre {
	font-family: 'Martian Mono', sans-serif;
	color: #2fec2f;
	font-size: 14px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 600;
	text-shadow: 0px 0px 14px #2fec2f;
}

.glitch-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); 
	display: block;
	pointer-events: none; 
}

.glitch-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 35vw; 
	height: auto; 
	transform: translate(-50%, -50%); 
	object-fit: contain;
}

.glitch-img.original {
	z-index: 1;
	pointer-events: auto; 
}

.glitch-img.red {
	z-index: 2;
	filter: brightness(1.2) hue-rotate(0deg); 
	animation: glitch-red 0.5s infinite alternate;
	opacity: 0.7;
}

.glitch-img.cyan {
	z-index: 3;
	filter: brightness(1.2) hue-rotate(180deg); 
	animation: glitch-cyan 0.7s infinite alternate;
	opacity: 0.7;
}


@keyframes glitch-red {
	0% { transform: translate(-50%, -50%) translate(0, 0); opacity: 0.7; }
	20% { transform: translate(-50%, -50%) translate(-5px, 2px); opacity: 0.5; }
	40% { transform: translate(-50%, -50%) translate(5px, -2px); opacity: 0.6; }
	60% { transform: translate(-50%, -50%) translate(-3px, 1px); opacity: 0.4; }
	100% { transform: translate(-50%, -50%) translate(3px, -1px); opacity: 0.7; }
}

@keyframes glitch-cyan {
	0% { transform: translate(-50%, -50%) translate(0, 0); opacity: 0.7; }
	25% { transform: translate(-50%, -50%) translate(5px, -3px); opacity: 0.5; }
	50% { transform: translate(-50%, -50%) translate(-5px, 3px); opacity: 0.6; }
	75% { transform: translate(-50%, -50%) translate(3px, -2px); opacity: 0.4; }
	100% { transform: translate(-50%, -50%) translate(-3px, 2px); opacity: 0.7; }
}

@media (max-width: 1024px) {
	.main-text {
		font-size: 16px;
	}

	.main-text span {
		font-size: 20px;
	}

	.glitch-img {
		width: 70vw;
	}

	.about-us {
		width: 40vw;
	}

	.left-message {
		width: 40vw;
		bottom: 250px;
	}

	.token-info {
		left: 20px;
	}

	.faq-container {
		width: 50vw;
		right: 20px;
		top: 170px;
	}

	.close-btn {
		right: 20px;
		width: 32px;
		height: 32px;
	}

	.audio-btn {
		right: 50px;
	}

	pre {
		bottom: 100px;
		font-size: 10px;
	}
}

@media (max-width: 768px) {
	.main-text {
		top: 440px;
	}

	.about-us {
		width: 50vw;
		right: 50px;
		top: 100px;
	}

	.message h2 {
		font-size: 16px;
		padding: 10px;
	}

	.message h3 {
		font-size: 16px;
	}

	.message-text {
		font-size: 12px;
		padding: 10px;
	}

	.left-message {
		bottom: 220px;
	}

	.token-info {
		left: 20px;
	}

	.faq-question {
		font-size: 16px;
	}

	.faq-answer {
		font-size: 14px;
	}

	pre {
		font-size: 8px;
	}
}

@media (max-width: 480px) {
	.logo-symbol {
		font-size: 18px;
	}

	.logo-text {
		font-size: 10px;
	}

	.info-button {
		font-size: 20px;
		line-height: 50px;
	}

	.buy-button {
		padding: 0px 5px;
		font-size: 14px;
	}

	.main {
		border: none;
	}

	.main-text {
		top: calc(50% + 150px);
		left: 50%;
		transform: translateX(-50%);
		font-size: 14px;
	}

	.glitch-img {
		width: 90vw;
	}

	.about-us {
		width: 60vw;
		right: 20px;
		top: 100px;
	}

	.left-message {
		display: none;
		width: 64vw;
		left: 20px;
		bottom: 200px;
	}

	.main-bottom {
		
	}

	.message-text {
		font-size: 10px;
	}

	.contract {

	}

	.audio-btn {
		transform: scale(0.7);
		bottom: 130px;
		right: 20px;
		padding: 10px;
	}

	.token-info {
		bottom: 20px;
		top: auto;
	}

	.faq-container {
		width: 90vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.faq-question {
		font-size: 14px;
		padding: 4px 8px;
	}

	.faq-answer {
		font-size: 12px;
	}

	pre {
		font-size: 4px;
		bottom: 180px;
	}
}

