* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Roboto", sans-serif;
  	font-optical-sizing: auto;
}

body {
	background: #101010;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

h1 {
	color: #ffffff;
	font-size: 32px;
	margin-bottom: 20px;
}

header {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 101;
	width: 100%;
	background: rgb(0 0 0 / 40%);
	padding: 15px 0px;
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0px auto;
	padding: 0px 20px;
}

.buy-button {
	background: rgb(255 165 0 / 15%);
	border: 2px solid #986303;
	color: #ffffff;
	padding: 8px 16px;
	font-size: 18px;
	border-radius: 5px;
}

.socials {
	display: flex;
	align-items: center;
	gap: 20px;
}

.socials img {
	width: 32px;
}

.hero {
	width: 100%;
	min-height: 100vh;
	background: url('bg.jpg') no-repeat center top;
	background-size: cover;
	position: relative;
	z-index: 50;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 50px;
	gap: 50px;
	padding-top: 75px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -200px;
	background: #101010;
	filter: blur(40px);
	width: 100%;
	height: 400px;
}

.hero-container {
	position: relative;
	margin: 0px auto;
	padding: 0px 20px;
	width: 100%;
	height: 100%;
	max-width: 100%;
}

.hero-container {
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	gap: 20px;
	align-items: flex-start;
	overflow: hidden;
}

.left-block {
	position: relative;
	color: #ffffff;
}

.left-block h3 {
	text-transform: uppercase;
	color: #45b78e;
	background: rgb(69 183 142 / 30%);
	display: inline-block;
	padding: 7px 14px;
	font-size: 18px;
}

.gradient-text {
  background-image: linear-gradient(180deg,rgba(242, 123, 42, 1) 0%, rgba(228, 185, 44, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text; 
  color: transparent;
  -webkit-text-fill-color: transparent; 
  font-size: 72px;
  font-weight: 600;
  display: block;
  margin: 10px 0px;
}

.left-block p {
	display: flex;
	justify-content: flex-start;
	font-size: 20px;
	gap: 10px;
}

.left-block p img {
	width: 20px;
	height: 20px;
}

.results {
	display: block;
	color: #ffffff;
	margin-top: 20px;
}

.results p {
	opacity: 0.7;
	text-transform: uppercase;
	display: block;
	margin-bottom: 5px;
}

.timer-countdown {
	padding: 10px 20px;
	background: #242424;
	display: inline-block;
	border: 2px solid rgb(255 255 255 / 10%);
	font-weight: 600;
	font-size: 40px;
	border-radius: 5px;
	text-transform: uppercase;
}

.claw {
	width: 900px;
	max-width: 60vw;
}

.contract-container {
	width: 100%;
	position: relative;
	z-index: 55;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-direction: column;
	color: #ffffff;
}

.contract-address {
	background: #D27A24;
	background: linear-gradient(180deg,rgba(210, 122, 36, 1) 0%, rgba(206, 96, 17, 1) 100%);
	padding: 10px 20px;
	border-radius: 5px;
	display: inline-block;
}

.stats {
	position: relative;
	width: 100%;
	height: 500px;
	background: #101010;
}

@media (max-width: 1024px) {
	.claw {
		
	}
}


@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
		justify-content: flex-start;
	}

	.claw {
		width: 100%;
		max-width: 100vw;
	}

	h1 {
		font-size: 32px;
	}
}

@media (max-width: 540px) {
	.gradient-text {
		font-size: 32px;
	}

	.timer-countdown {
		font-size: 24px;
	}

	.claw {
		width: 150%;
		max-width: 100vw;
	}

	.contract-address {
		font-size: 12px;
	}
}