@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYBLACKITALIC.OTF") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYHEAVYITALIC.OTF") format("opentype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYLIGHTITALIC.OTF") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYTHINITALIC.OTF") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF") format("opentype");
  font-weight: 200;
  font-style: italic;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	background-color: #031920;
  background-image: url(./imgs/back.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF Pro Display", sans-serif;

  color: white;
}
a {
  text-decoration: none;
}

main {
  width: 95%;
  max-width: 1440px;
	margin: 48px 0;
}

@keyframes slideDownFromTop {
  from {
    transform: translateY(-40px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideUpFromBottom {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  animation: slideDownFromTop 0.7s ease-out;
}

.header_left_side {
  display: flex;
  align-items: center;
  gap: 12px;

  img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
}

.header_left_side_logo {
  display: flex;
  flex-direction: column;

  h1 {
    font-weight: 700;
    font-size: 20px;
  }
  p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
  }
}
.gradient_text {
  background: linear-gradient(222.2deg, #c7f284 26.29%, #00bef0 127.12%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.header_left_side_button {
  margin-left: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10000px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 8px 12px;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  p {
    font-weight: 500;
    font-size: 16px;
  }
  img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }
}


.header_right_side {
  display: flex;
  align-items: center;
  gap: 32px;

  a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 18px;
    transition: color 0.2s ease, opacity 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 18px;
    border-radius: 10px;
  }
  a:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 0.9;
  }
  button {
    background: rgba(255, 255, 255, 1);
    color: black;
    padding: 13px 18px;
    border-radius: 10px;
    cursor: pointer;
		border: none;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
		font-size: 18px;
		font-weight: 500;
  }
  button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
  }
  button:active {
    transform: translateY(0);
    opacity: 0.9;
  }
}

.hero_section {
  margin-top: 86px;
  gap: 24px;
  display: flex;
  animation: slideUpFromBottom 0.8s ease-out 0.2s both;
}

.hero_section_left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 24px;
  flex: 1;
	height: max-content;
}

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

  img {
    height: 86px;
    width: 86px;
    object-fit: contain;
  }
}

.hero_section_left_header_text {
  display: flex;
  flex-direction: column;
  gap: 10px;

  h2 {
    font-weight: 600;
    font-size: 24px;
  }
}

.green_button {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  background: rgba(36, 214, 111, 0.08);
  font-size: 14px;
  font-weight: 400;
  color: rgba(36, 214, 111, 1);
  width: max-content;
  border-radius: 8px;
  transition: background 0.2s ease, opacity 0.2s ease;

  img {
    height: 18px;
    width: 18px;
    object-fit: contain;
  }
}
.green_button:hover {
  background: rgba(36, 214, 111, 0.12);
  opacity: 0.9;
}

.hero_section_left_button {
  position: relative;

  button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 13px;
    font-size: 18px;
    border: none;
    width: calc(100% - 21px);
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;

    filter: drop-shadow(0 0 5px #c7f284) drop-shadow(0 0 5px #00bef0);
  }
  button:hover {
    transform: translate(-50%, -50%) translateY(-1px);
    filter: drop-shadow(0 0 8px #c7f284) drop-shadow(0 0 8px #00bef0);
  }
  button:active {
    transform: translate(-50%, -50%);
    opacity: 0.95;
  }
}

.hero_section_left_timer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero_section_left_timer_item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.line_separator {
  display: flex;
  width: 100%;
  height: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 1000px;

  .line_separator_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 63%;
    border-radius: 1000px;
    height: 10px;
    background: linear-gradient(222.2deg, #c7f284 26.29%, #00bef0 127.12%);
  }
  .line_separator_circle {
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid;
    border-radius: 100%;
    background: radial-gradient(circle closest-side, #fff 98%, transparent 100%)
        padding-box,
      linear-gradient(222.2deg, #c7f284 26.29%, #00bef0 127.12%) border-box;
    border: 2px solid transparent;
  }
}

.hero_section_left_timer_item_progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  p {
    font-size: 16px;
    font-weight: 500;
  }
}

.hero_section_left_rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero_section_left_rules_item {
  padding: 12px;
  display: flex;
  gap: 8px;
  align-items: start;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);

  p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }

  img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }
}

.carbon_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero_section_right {
  flex: 2;
}

.hero_section_right {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 24px;
  padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero_section_right_header {
  display: flex;
	gap: 10px;
	align-items: center;
	h2 {
		font-size: 20px;
		font-weight: 600;
	}
}

.logo_img_right {
  width: 48px;
  height: 48px;
	object-fit: contain;
	margin-right: 6px;
}

.hero_section_right_gif_box {
	background: linear-gradient(88.8deg, #1B9C52 0%, #44D882 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
	gap: 33px;
	padding: 0 20px 0 0;
	overflow: hidden;
	min-height: 128px;
	position: relative;
	img {
		height: 128px;
		align-self: flex-end;
		margin: 0;
	}
	h4 {
		font-size: 24px;
		font-weight: 600;
		flex: 1;
		text-align: center;
		align-self: center;
	}
}

#backMain {
	width: 100%;
}

.hero_section_right_info {
	padding: 24px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.hero_section_right_info_item {
	width: 100%;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	p {
		font-size: 18px;
		font-weight: 400;
	}
	.title_info {
		color: rgba(255, 255, 255, 0.3);
		
	}

	div {
		flex: 1;
		background: rgba(255, 255, 255, 0.2);
		height: 1px;
	}
}

.hero_section_right_imgs {
	display: flex;
	align-items: center;
	gap: 12px;
	a {
		display: inline-block;
		transition: filter 0.2s ease, transform 0.2s ease;
	}
	a:hover {
		filter: brightness(1.15);
		transform: translateY(-1px);
	}
	img {
		width: 48px;
		height: 48px;
		object-fit: contain;
		transition: filter 0.2s ease;
	}
}

.notification_box {
	font-size: 16px;
	font-weight: 400;
	color: rgba(36, 214, 111, 1);

	background: rgba(36, 214, 111, 0.08);
	padding: 12px;
	border-radius: 12px;
}

.burger_menu_button {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  width: 24px;
  height: 18px;
}

.burger_menu_button span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
}

.burger_menu_button span:nth-child(1) {
  top: 0;
}

.burger_menu_button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger_menu_button span:nth-child(3) {
  bottom: 0;
}

.burger_menu_button.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.burger_menu_button.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.burger_menu_button.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 869px) {

	.hero_section {
		flex-direction: column;
		max-width: 500px;
		margin: 86px auto;
	}


  header {
    position: relative;
  }

  .burger_menu_button {
    display: flex;
  }

  .header_right_side {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
    gap: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;
    margin-top: 12px;
  }

  .header_right_side.active {
    max-height: 400px;
    padding: 24px 32px;
    opacity: 1;
  }

  .header_right_side a {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, opacity 0.2s ease;
  }
  .header_right_side a:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 0.9;
  }

  .header_right_side a:last-of-type {
    border-bottom: none;
  }

  .header_right_side button {
    width: 100%;
    margin-top: 16px;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  }
  .header_right_side button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
  }
  .header_right_side button:active {
    transform: translateY(0);
    opacity: 0.9;
  }
}

@media (max-width: 580px) {
  main {
    margin: 24px 0;
  }

  .header_left_side {
    gap: 8px;

    img {
      width: 36px;
      height: 36px;
    }
  }

  .header_left_side_logo {
    h1 {
      font-size: 16px;
    }
    p {
      font-size: 14px;
    }
  }

  .header_left_side_button {
    margin-left: 12px;
    padding: 8px 10px;
    p {
      font-size: 14px;
    }
    img {
      width: 16px;
      height: 16px;
    }
  }

  .hero_section {
    margin-top: 48px;
    gap: 16px;
  }

  .hero_section_left {
    padding: 20px;
    gap: 12px;
    border-radius: 16px;
  }

  .hero_section_left_header {
    gap: 12px;

    img {
      height: 64px;
      width: 64px;
    }
  }

  .hero_section_left_header_text {
    h2 {
      font-size: 20px;
    }
  }

  .hero_section_left h4 {
    font-size: 16px;
  }

  .hero_section_left_button {
    button {
      padding: 11px;
      font-size: 16px;
    }
  }

  .hero_section_left_timer_item {
    padding: 10px;
    font-size: 16px;
  }

  .hero_section_left_timer_item_progress {
    p {
      font-size: 14px;
    }
  }

  .hero_section_left_rules {
    gap: 6px;
  }

  .hero_section_left_rules_item {
    padding: 10px;
    gap: 6px;

    p {
      font-size: 14px;
    }

    img {
      width: 16px;
      height: 16px;
    }
  }

  .hero_section_right {
    padding: 20px;
    gap: 12px;
    border-radius: 16px;
  }

  .hero_section_right_header {
    gap: 8px;

    h2 {
      font-size: 18px;
    }
  }

  .logo_img_right {
    width: 36px;
    height: 36px;
    margin-right: 4px;
  }

  .green_button {
    padding: 3px 6px;
    font-size: 12px;

    img {
      height: 16px;
      width: 16px;
    }
  }

  .hero_section_right_gif_box {
    border-radius: 12px;
    gap: 16px;
    padding: 0 16px 0 0;
    min-height: 96px;

    img {
      height: 96px;
    }

    h4 {
      font-size: 18px;
    }
  }

  .hero_section_right_info {
    padding: 16px;
    gap: 16px;
    border-radius: 12px;
  }

  .hero_section_right_info_item {
    gap: 16px;

    p {
      font-size: 16px;
    }
  }

  .hero_section_right_imgs {
    gap: 10px;

    img {
      width: 40px;
      height: 40px;
    }
  }

  .notification_box {
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
  }

  .header_right_side {
    padding: 0 20px;
    margin-top: 8px;
    border-radius: 12px;
  }

  .header_right_side.active {
    padding: 20px;
  }

  .header_right_side a {
    font-size: 16px;
    padding: 14px 0;
  }

  .header_right_side button {
    padding: 11px 16px;
    font-size: 16px;
  }
}