@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
  box-sizing: border-box;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes breathe {
  0% {
    background-color: #ffa900;
  }
  50% {
    background-color: #eed05d;
  }
  100% {
    background-color: #ffa900;
  }
}
@keyframes pickaxe {
  0% {
    transform: rotate(35deg);
  }
  50% {
    transform: rotate(85deg);
  }
  100% {
    transform: rotate(35deg);
  }
}
html,
body {
  margin: 0;
  height: 100%;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  background-color: #092228;
  color: #000000;
  font-family: "Poppins", sans-serif;
}
body.no_scroll {
  height: 100%;
  overflow: hidden;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin: 1rem 0;
}

h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

h3 {
  font-size: 1rem;
  margin: 0;
  position: relative;
  display: inline-block;
  color: #ffa900;
}
h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffa900;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}

i.rich {
  color: #eed05d;
  font-style: normal;
}

.button {
  display: inline-block;
  font-size: 1.5rem;
  padding: 12px 48px;
  background-color: #0bb102;
  border: none;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.button > span {
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.35));
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.98) translateY(2px);
  opacity: 0.75;
}
.button.primary {
  background-color: #ffa900;
  color: #000000;
  animation-name: breathe;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.bullet_point {
  padding-left: 1.25rem;
  position: relative;
}
.bullet_point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.125rem;
  width: 1rem;
  height: 1rem;
  background-image: url("/img/main-landing/Paw.svg");
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 16px;
  z-index: 100;
  transition: all 300ms ease-in-out;
}
header.fixed {
  background-color: #0d3039;
}
header > img {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
header > strong {
  font-size: 1.5rem;
  background: -webkit-linear-gradient(#ffc700, #ff9900);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header > nav {
  flex: 1;
  margin-left: 16px;
}
header > nav > ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
header > nav a {
  color: #000000;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 300ms ease-in-out;
}
header > nav a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
header > nav a:active {
  opacity: 0.75;
}
header > nav a.cta {
  position: relative;
  background: #0bb102;
  color: #ffffff;
  font-weight: bold;
  padding-left: 24px;
  padding-right: 24px;
  animation-name: pulse;
  animation-duration: 500ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
header > nav a.cta span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
header > nav a.cta span::after {
  content: "→";
  position: absolute;
  opacity: 0;
  top: -2px;
  right: -24px;
  transition: 0.5s;
  font-size: 1.5rem;
}
header > nav a.cta:hover, header > nav a.cta:active {
  background-color: #0ABD00;
}
header > nav a.cta:hover span, header > nav a.cta:active span {
  padding-right: 32px;
}
header > nav a.cta:hover span::after, header > nav a.cta:active span::after {
  opacity: 1;
  right: 0;
}
header > nav a:not(.cta) {
  display: none;
}

section {
  position: relative;
  z-index: 2;
  background-color: #fbfeff;
}
section:nth-child(3) {
  margin-top: 100vh;
}

.section-landing {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #092228;
  text-align: center;
  padding-top: 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-landing > h1 {
  margin: 0 16px;
  z-index: 1;
}
.section-landing > p {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 32px;
  font-size: 1rem;
  z-index: 1;
}
.section-landing > a {
  z-index: 1;
}
.section-landing > .landing-hero {
  flex: 1;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.section-landing > .landing-hero > img {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.section-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 16px 32px 16px;
  overflow-x: clip;
}
.section-story > .story-hero {
  position: relative;
}
.section-story > .story-hero > img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
}
.section-story > .story-hero > img:first-child {
  position: absolute;
  z-index: 2;
  transform-origin: 100% 100%;
  transform: rotate(10deg) scale(0.85);
  opacity: 0.5;
  filter: brightness(1.5);
}
.section-story > .story-hero > img:last-child {
  position: relative;
  z-index: 3;
}
.section-story p {
  text-align: center;
}
.section-rich > div {
  padding: 16px;
  background-color: #092228;
  text-align: center;
  color: #ffffff;
}
.section-rich > div h3 {
  color: #eed05d;
}
.section-rich > div h3::after {
  background-color: #eed05d;
}
.section-rich > div p.bullet_point {
  text-align: left;
}
.section-rich #img_rich {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  height: 144px;
}
.section-tutorial > div {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}
.section-tutorial > div h3 {
  color: #0bb102;
}
.section-tutorial > div h3::after {
  background-color: #0bb102;
}
.section-tutorial > div p.bullet_point {
  text-align: left;
}
.section-tutorial #img_pickaxe {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  height: 72px;
  transform-origin: 50% 100%;
  transform: rotate(35deg);
  animation-name: pickaxe;
  animation-duration: 2000ms;
  animation-timing-function: cubic-bezier(0, 0.8, 0.41, 1.01);
  animation-iteration-count: infinite;
}
.section-adventure {
  padding: 16px;
  text-align: center;
}
.section-adventure > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
.section-adventure > div > div {
  position: relative;
}
.section-adventure > div > div > img {
  display: block;
  width: 100%;
  border-radius: 12px;
  filter: brightness(0.75);
  transition: filter ease-in 200ms;
}
.section-adventure > div > div > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.75) 100%);
}
.section-adventure > div > div > div > h4 {
  margin: 0;
  padding-top: 8px;
  font-size: 2rem;
}
.section-adventure > div > div > div > strong {
  margin: 0;
  font-size: 1.25rem;
  filter: drop-shadow(0 1px 2px black);
}
.section-adventure > div > div > div > span {
  flex: 1;
}
.section-adventure > div > div > div > p {
  margin-top: 0;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 1px black);
}
.section-adventure > div > div > div a {
  color: #ffffff;
}
.section-adventure > div > div:hover > img {
  filter: brightness(1);
}
.section-experience {
  padding: 16px;
  text-align: center;
}
.section-experience > div > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(255, 169, 0, 0.25);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 16px;
  text-align: left;
}
.section-experience > div > div > img {
  display: block;
  margin-right: 16px;
  width: 64px;
}
.section-experience > div > div strong {
  display: block;
  margin-bottom: 8px;
}
.section-experience > div > div p {
  margin: 0;
}
.section-top {
  padding: 16px;
  text-align: center;
}
.section-top > div.top_user_hero > img {
  height: 72px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.section-top > div.top_user_hero > h3 {
  color: #0bb102;
}
.section-top > div.top_user_hero > h3::after {
  background-color: #0bb102;
}
.section-top .top_user {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding: 4px 8px;
  margin-bottom: 8px;
  background-color: rgba(11, 177, 2, 0.25);
  border-radius: 12px;
  width: 100%;
}
.section-top .top_user--rank {
  opacity: 0.5;
  margin-right: 4px;
  font-size: 18px;
  width: 30px;
  text-align: center;
}
.section-top .top_user--pic {
  display: block;
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  object-fit: contain;
}
.section-top .top_user--name {
  flex: 1;
  text-align: left;
  margin-left: 4px;
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
}
.section-top .top_user--name > strong {
  display: block;
  line-height: 1rem;
  text-overflow: ellipsis;
  width: 100%;
}
.section-top .top_user--name > span {
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  padding: 2px 4px;
  border-radius: 8px;
}
.section-top .top_user--profit {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.section-top .top_user--profit > img {
  display: block;
  height: 20px;
  margin-right: 4px;
}
.section-top .top_user--profit > span {
  flex: 1;
}
.section-top .top_user:nth-child(1) {
  background: none;
  flex-direction: column;
  width: 100%;
  display: inline-flex;
  overflow: hidden;
}
    .section-top .top_user:nth-child(1) > .top_user--rank {
        position: absolute;
        top: 64px;
        background-color: #FCCE44;
        opacity: 1;
        z-index: 1;
        margin: 0;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }
.section-top .top_user:nth-child(1) > .top_user--pic {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 12px;
}
.section-top .top_user:nth-child(1) > .top_user--name {
  text-align: center;
}
.section-top .top_user:nth-child(2) {
  background: none;
  flex-direction: column;
  width: calc(50% - 16px);
  display: inline-flex;
  overflow: hidden;
}
.section-top .top_user:nth-child(2) > .top_user--rank {
  position: absolute;
  top: 56px;
  background-color: #c4c4c4;
  opacity: 1;
  z-index: 1;
  margin: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.section-top .top_user:nth-child(2) > .top_user--pic {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 10px;
}
.section-top .top_user:nth-child(2) > .top_user--name {
  text-align: center;
  margin-left: 8px;
  margin-right: 8px;
}
.section-top .top_user:nth-child(3) {
  background: none;
  flex-direction: column;
  width: calc(50% - 16px);
  display: inline-flex;
  overflow: hidden;
}
.section-top .top_user:nth-child(3) > .top_user--rank {
  position: absolute;
  top: 56px;
  background-color: #db9a5c;
  opacity: 1;
  z-index: 1;
  margin: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.section-top .top_user:nth-child(3) > .top_user--pic {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 10px;
}
.section-top .top_user:nth-child(3) > .top_user--name {
  text-align: center;
  margin-left: 8px;
  margin-right: 8px;
}
.section-roadmap {
  padding: 0 16px;
  text-align: center;
}
.section-roadmap > div.roadmap-container {
  position: relative;
  margin: 0 16px;
  max-width: 1200px;
  padding-top: 16px;
}
.section-roadmap > div.roadmap-container .roadmap-timeline {
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section-roadmap > div.roadmap-container .roadmap-timeline::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.section-roadmap > div.roadmap-container .roadmap-timeline > span {
  position: absolute;
  top: 0.9rem;
  left: -4px;
  width: 8px;
  height: 8px;
  background-color: #0bb102;
  border-radius: 50%;
}
.section-roadmap > div.roadmap-container .roadmap-timeline-date {
  margin-bottom: 4px;
  padding-left: 16px;
  width: 100%;
  color: #0bb102;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}
.section-roadmap > div.roadmap-container .roadmap-timeline-info {
  padding: 16px 16px 16px 32px;
  margin: 0 16px;
  background-color: rgba(11, 177, 2, 0.25);
  border-radius: 0 8px 8px 8px;
  text-align: left;
}
.section-roadmap > img {
  display: block;
  margin-right: 0;
  margin-left: auto;
  width: 50%;
  max-width: 500px;
}
.section-join {
  padding: 32px 16px 16px 16px;
  background-color: #092228;
  color: #ffffff;
  text-align: center;
}

footer {
  position: relative;
  z-index: 2;
  background-color: #092228;
  border-top: 1px solid #0bb102;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
}
footer > a {
  text-decoration: none;
  margin-right: 8px;
  padding: 4px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
footer > a > svg.icon {
  display: block;
  width: 24px;
  height: 24px;
}
footer > a > svg.icon > .base {
  fill: none;
  stroke: none;
}
footer > a > svg.icon > .stroke {
  fill: none;
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.75);
}
footer > a:hover, footer > a:active {
  color: white;
}
footer > a:hover > svg.icon > .stroke, footer > a:active > svg.icon > .stroke {
  stroke: white;
}
footer > span {
  display: block;
  flex: 1;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1080px) {
  header > img {
    width: 40px;
    height: 40px;
  }
  header > strong {
    font-size: 2.5rem;
  }
  header > nav a:not(.cta) {
    display: inline-block;
  }
  .section-landing {
    padding-top: 110px;
  }
  .section-landing > p {
    margin-left: 20%;
    margin-right: 20%;
  }
  .section-landing > .landing-hero {
    height: 60vh;
  }
  .section-rich > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 60px;
  }
  .section-rich > div > #img_rich {
    flex: 1;
    height: 360px;
    order: 2;
  }
  .section-rich > div > div {
    flex: 3;
    text-align: left;
  }
  .section-rich p {
    text-align: left;
  }
  .section-tutorial {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-tutorial > div {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .section-tutorial > div > #img_pickaxe {
    flex: 1;
    height: 180px;
    margin-left: -60px;
    margin-bottom: 70px;
  }
  .section-tutorial > div > div {
    flex: 3;
    text-align: left;
    padding-left: 200px;
  }
  .section-tutorial p {
    text-align: left;
  }
  .section-adventure > div {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .section-experience > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }
  .section-experience > div > div {
    flex: 1;
    flex-direction: column;
  }
  .section-experience > div > div > img {
    margin-right: 0;
    margin-bottom: 16px;
    width: 128px;
  }
  .section-experience > div > div > div {
    text-align: center;
  }
  .section-top {
    display: flex;
    flex-direction: row;
    align-items: start;
  }
  .section-top > div.top_user_hero {
    flex: 2;
    order: 2;
    position: sticky;
    top: 100px;
  }
  .section-top > div.top_user_hero > img {
    height: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  .section-top > #top_user_container {
    flex: 3;
    order: 1;
  }
  .section-roadmap > img {
    margin-top: -200px;
  }
  .section-roadmap > div.roadmap-container {
    margin-left: auto;
    margin-right: auto;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline::before {
    left: 50%;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline > span {
    top: 30px;
    left: calc(50% - 3px);
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline-date {
    flex: 0 0 50%;
    margin-top: 17px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: right;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline-info {
    margin-top: 24px;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline:nth-child(2n) > .roadmap-timeline-date {
    text-align: left;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline:nth-child(2n) > .roadmap-timeline-info {
    border-radius: 8px 0 8px 8px;
  }
}
@media screen and (min-width: 1440px) {
  .section-adventure > div {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
@supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  header.fixed {
    background-color: rgba(13, 48, 57, 0.9);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  .roadmap-timeline-info {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}
@media (prefers-color-scheme: dark) {
  body {
    color: #ffffff;
  }
  h3 {
    color: #eed05d;
  }
  h3::after {
    background-color: #eed05d;
  }
  .button {
    background-color: #0ABD00;
  }
  section {
    background-color: #0d3039;
  }
  .section-story > .story-hero > img:first-child {
    filter: brightness(0.5);
  }
  .section-tutorial > div > h3 {
    color: #0ABD00;
  }
  .section-experience > div > div {
    background-color: rgba(251, 254, 255, 0.1);
  }
  .section-top h3 {
    color: #0ABD00;
  }
  .section-top h3::after {
    color: #0ABD00;
  }
  .section-top .top_user {
    background-color: rgba(9, 34, 40, 0.9);
  }
  .section-top .top_user:nth-child(1) h1, .section-top .top_user:nth-child(2) h1, .section-top .top_user:nth-child(3) h1 {
    color: #000000;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline::before {
    background-color: rgba(255, 255, 255, 0.15);
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline > span {
    background-color: #0ABD00;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline-date {
    color: #0ABD00;
  }
  .section-roadmap > div.roadmap-container .roadmap-timeline-info {
    background-color: rgba(13, 203, 2, 0.15);
  }
}/*# sourceMappingURL=main-landing.css.map */