@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");
* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  position: relative;
}
.karambit {
  position: absolute;
  top: 280px;
  right: 300px;
  transition: transform 0.1s linear;
}
.awp {
  position: absolute;
  top: 280px;
  left: 300px;
  transition: transform 0.1s linear;
}
/* Header */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  position: relative;
}

.logo img {
  max-width: 75px;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.nav-link a {
  text-decoration: none;
  color: aliceblue;
  font-size: 22px;
  transition: 0.3s;
}

.nav-link a:hover,
.nav-link a.link-active {
  color: red;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 4px;
  background: aliceblue;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Body */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: aliceblue;
  gap: 30px;
  padding: 40px 0;
}
.main-content img {
  max-width: 250px;
}
.csrollimg {
  margin: 40px 0px;
}
.main-content a {
  color: white;
  text-decoration: none;
}
.main-content h1 {
  font-size: 45px;
}
.stacked-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  bottom: 100px;
  right: 50px;
}
.stacked-socials img {
  width: 40px;
}
.main-content p {
  font-size: 20px;
}
.leaderboard-button {
  font-size: 28px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: red;
  transition: 0.2s;
}
.claim-button {
  font-size: 28px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: red;
  transition: 0.2s;
}
.leaderboard-button:hover {
  background-color: white;
  color: red;
}
.red-text {
  color: red;
  text-shadow: 1px 1px 2px red;
}

.gambling-warning {
  padding: 10px 20px;
  width: 700px;
  color: white;
  background-color: darkred;
  border: 1px solid red;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gambling-warning p {
  font-size: 12px;
}
.gambling-warning h1 {
  font-size: 22px;
}

/* Footer */
.footer-content {
  color: aliceblue;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
@media (max-width: 768px) {
  main {
    text-align: center;
  }
  nav {
    padding: 10px 20px;
  }
  .karambit,
  .awp {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #222;
    flex-direction: column;
    width: 200px;
    max-height: 0;
    opacity: 0;
    gap: 0;
    border-left: 1px solid #444;
    border-bottom: 1px solid #444;
  }

  .nav-links.active {
    max-height: 500px; /* enough for all links */
    opacity: 1;
  }

  .gambling-warning {
    width: 280px;
    margin-bottom: 20px;
  }

  .nav-link {
    padding: 15px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .stacked-socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: absolute;
    bottom: 35px;
    right: 50px;
  }
  .stacked-socials img {
    width: 40px;
  }

  /* Hamburger X animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
