* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html,
body {
	background: #121212;
	margin: 0;
	padding: 0;
	font-family: "IBM Plex Sans", sans-serif;
	scroll-behavior: smooth;
}

button {
	cursor: pointer;
}

a {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.header {
	background: #17181E;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
}

.left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header nav a {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.right .connect {
	background: #F7A600;
	color: #121214;
	font-weight: 600;
	font-size: 12px;
	padding: 10px 20px;
	border-radius: 4px;
}

.search {
	background: rgba(255, 255, 255, 0.08);
	padding: 8px 10px;
	display: flex;
	border-radius: 16px;
	align-items: center;
	gap: 10px;
}

.search input {
	height: 100%;
	background: transparent;
	outline: none;
	max-width: 100px;
	font-weight: 500;
	border: 0;
	color: #71757A;
}

.landing {
	margin: 40px auto;
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.landing .text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.landing .text h1 {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
}

.landing .text a {
	font-size: 16px;
	font-weight: 500;
	color: #121214;
	background: #F7A600;
	border-radius: 8px;
	padding: 10px 30px;
	width: max-content;
}

.discover {
	margin: 40px auto;
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.discover h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.gain {
	display: flex;
	flex-direction: column;
	background: #000;
	position: relative;
	border: 1px solid #25282C;
	cursor: pointer;
	border-radius: 4px;
	padding-bottom: 50px;
}

.gain p {
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	padding: 10px;
}

.gain span {
	font-size: 14px;
	color: #fff;
	padding: 0px 10px;
}

.tag {
	position: absolute;
	background: #62F707;
	padding: 3px 5px;
	right: 0;
	top: -13px;
}

.hotcoins {
	margin: 40px auto;
	max-width: 1200px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.coins {
	padding: 30px;
	border-radius: 4px;
	border: 1px solid #404347;
}

.coins h2 {
	display: flex;
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	gap: 10px;
	align-items: center;
}

.coinstats {
	display: flex;
	justify-content: center;
	cursor: pointer;
	align-items: center;
	padding: 15px 0px;
}

.coinstats div {
	width: 100px;
}

.coinstats div:first-child {
	width: 180px;
}

.nameavatar {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	gap: 10px;
}

.tags {
	margin-top: 15px;
	display: flex;
	align-items: center;
}

.tags span {
	width: 100px;
	font-size: 12px;
	color: #ADB1B8;
	display: flex;
}

.tags span:first-child {
	width: 180px;
}

.volume {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
}

.price {
	font-size: 14px;
	color: #fff;
	font-weight: 600;
}

.hchange {
	font-size: 14px;
	color: #12FD8C;
	font-weight: 600;
}

.descrpition {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.descrpition h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
}

.descrpition p {
	color: #fff;
	font-size: 48px;
	color: #fff;
	font-weight: 800;
}

.descrpition span {
	max-width: 372px;
	color: #fff;
	font-size: 20px;
}

.descrpition a {
	margin-top: 20px;
}

.launches {
	margin: 60px auto;
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.launches h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
}

.launch {
	display: flex;
	justify-content: start;
	align-items: center;
	border: 1px solid #25282C;
	position: relative;
	padding: 20px;
	flex-direction: column;
}

.green {
	background: #62F707;
	color: #121214;
	font-size: 38px;
	font-weight: 500;
	margin-bottom: 20px;
}

.orange {
	background: #F7A600;
	color: #121214;
	font-size: 38px;
	font-weight: 500;
	margin-bottom: 20px;
}

.launch h3 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin-bottom: 5px;
}

.launch p {
	font-size: 16px;
	text-align: center;
	color: #fff;
	margin-bottom: 60px;
	font-weight: 500;
}

.launch a {
	position: absolute;
	bottom: 20px;
}

.explore {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.explore h2 {
	font-size: 32px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 40px;
}

.links {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 20px;
}

.links a {
	font-size: 18px;
	font-weight: 500;
	color: #ADB1B8;
}

.links .active {
	color: #fff;
	border-bottom: 2px solid #F7A600;
	padding-bottom: 3px;
}

.chains {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.chainlist {
	overflow-x: hidden;
	align-items: center;
	display: flex;
	gap: 20px;
}

.chain {
	width: 240px;
	height: 82px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border: 1px solid #25282C;
	border-radius: 4px;
}

.chains .control:first-child {
	position: absolute;
	left: -50px;
}

.chains .control:last-child {
	position: absolute;
	right: -50px;
	transform: rotate(180deg);
}

.chain p {
	font-size: 20px;
	color: #fff;
}

.chain span {
	font-size: 12px;
	color: #fff;
}

.keyless {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 80px;
}

.keyless h2 {
	font-size: 32px;
	color: #fff;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 500;
	margin-bottom: 40px;
}

.about {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171A;
	position: relative;
	width: 100%;
	padding: 40px 0px;
}

.inside {
	display: flex;
	justify-content: space-between;
	align-items: start;
	width: 100%;
	position: relative;
	max-width: 1200px;
}

.aleft {
	display: flex;
	flex-direction: column;
}

.bluet {
	font-size: 40px;
	color: #237AFB;
	opacity: 0.4;
	font-weight: bold;
}

.greent {
	font-size: 40px;
	color: #06F281;
	font-weight: bold;
}

.yellowt {
	font-size: 40px;
	color: #FFE600;
	font-weight: bold;
	opacity: 0.4;
}

.aleft a {
	font-size: 16px;
	font-weight: 500;
	color: #121214;
	background: #F7A600;
	border-radius: 8px;
	padding: 10px 30px;
	width: max-content;
	margin-top: 40px;
}

.aright {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	height: 100%;
	max-width: 500px;
	color: #fff;
	font-size: 16px;
}

.aright span {
	position: relative;
	z-index: 4;
	height: 100%;
	margin-top: 20px;
}

.aftermage {
	position: absolute;
	bottom: -40px;
	right: 0;
}


.learn {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 60px;
}

.learn h2 {
	font-size: 32px;
	color: #fff;
	font-weight: 500;
}

.learn h3 {
	font-weight: 200;
	font-size: 16px;
	color: #fff;
}

.threads {
	margin-top: 40px;
	display: flex;
	align-items: center;
	position: relative;
}

.threads .control:first-child {
	position: absolute;
	left: -50px;
}

.threads .control:last-child {
	position: absolute;
	right: -50px;
	transform: rotate(180deg);
}

.threadlist {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.thread {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	border: 1px solid #25282C;
	border-radius: 4px;
}

.thread p {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.thread span {
	color: #ADB1B8;
	font-size: 16px;
}

.thread a {
	display: flex;
	align-items: center;
	gap: 3px;
	color: #F7A600;
	font-size: 14px;
	font-weight: 500;
}


.joinus {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 0 auto;
	margin-top: 50px;
	max-width: 1200px;
	width: 100%;
}

.joinus h2 {
	font-size: 32px;
	color: #fff;
	font-weight: 500;
}

.join {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.join .hive {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	border: 1px solid #25282C;
	border-radius: 4px;
}

.hive h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}

.hive p {
	font-size: 14px;
	color: #ADB1B8;
}

.hive .buttons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hive .buttons a {
	padding: 5px 10px;
	background: #fff;
	border-radius: 100px;
	display: flex;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.link {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	display: flex;
	gap: 5px;
}

.multiple {
	display: flex;
	flex-direction: column;
	gap: 10px;
}


footer {
	background: #000;
	padding-top: 40px;
	margin-top: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.top {
	max-width: 1200px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.media_links {
	display: flex;
	gap: 30px;
	margin-top: 40px;
}

.cols {
	display: flex;
	align-items: start;
	gap: 80px;
}

.col {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.col p {
	color: #F7A600;
	font-size: 20px;
	font-weight: 500;
}

.col a {
	font-size: 14px;
	color: #fff;
}

.bottom {
	background: #16171A;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0px;
	gap: 15px;
	width: 100%;
}

.bottom p {
	font-size: 10px;
	color: #71757A
}

.bottom div {
	display: flex;
	align-items: center;
	gap: 5px;
}

.bottom div a {
	color: #fff;
	font-size: 10px;
}

.bottom div span {
	width: 1px;
	height: 14px;
	display: block;
	background: #404347;
}

modal {
	position: relative;
	width: 400px;
	height: 550px;
	display: flex;
	z-index: 1;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	flex-direction: column;
	background: #1A1A1A;
	backdrop-filter: blur(5px);
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

.mhead {
	z-index: 5;
	position: absolute;
	top: 0;
	width: 100%;
	background: transparent;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 15px;
}

.mlogo {
	height: 16px;
}


#modal {
	top: 30px;
	position: absolute;
	right: 0px;
	z-index: -1;
}

.mcontent {
	padding: 20px;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	width: 100%;
}


.mtitle {
	font-size: 52px;
	width: 100%;
	color: white;
}

.experience {
	letter-spacing: 2px;
	color: #555555;
	text-align: center;
	font-size: 16px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.mbuttons {
	padding: 20px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.mbuttons a {
	height: 50px;
	background: #F7A600;
	font-size: 18px;
	border-radius: 4px;
	font-weight: 400;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.insert img {
	height: 60px;
}

.mcontent .insert {
	background: #25282C;
	font-size: 24px;
	border-radius: 6px;
	width: 100%;
	height: 65px;
	display: flex;
	border: none;
	justify-content: center;
	align-items: center;

}

._ygD8z7QIm {
	border: 1px solid rgba(255, 0, 0, 0.5)
}

.mcontent .insert img {
	height: 50px;
}

#chooser {
	height: 100px;
	width: auto;
}

.whiteline {
	padding: 10px;
	border: 0;
	background: #25282C;
	color: #FFFFFF;
	font-size: 16px;
	border-radius: 6px;
}

textarea {
	width: 100%;
	background: #25282C;
	gap: 10px;
	border: 0;
	border-radius: 6px;
	color: #FFFFFF;
	font-size: 16px;
	padding: 10px;
	height: 150px;
	outline: none;
	font-family: Jogan Regular, sans-serif;
}

#inserter .mcontent {
	gap: 10px;
}

.insertitle {
	font-size: 42px;
	font-weight: bold;
	color: #555555;
	margin-top: 10px;
	text-align: center;
}

overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	z-index: 99;
}

.modalimage {
	width: 300px;
	margin: 0 auto;
}