@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Audiowide", sans-serif, cursive;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #0d0d0d !important;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

.m-0 {
  margin: 0;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

section::before,
.main-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 290px;
  z-index: 10;
  background: linear-gradient(to top, #0d0d0d, transparent);
}

section img,
section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
}

.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 90px;
  /* background: red; */
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  align-items: center;
  box-shadow: none;
}

.light-header {
  background-color: hsl(0, 0%, 4%);
  box-shadow: 0px 7px 19px 0px #000000;
}

.buttons {
  display: flex;
  gap: 1.5rem;
}

.button {
  background: linear-gradient(90deg, #ff5722, #c84117);
  border: none;
  border-radius: 32px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  box-shadow: 0 0 15px rgba(106, 40, 40, 0.5), 0 0 25px rgba(106, 45, 45, 0.6);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}

.button:hover {
  background: linear-gradient(90deg, #e34b1d, #a1300e);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  color: #ffffff;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(201, 204, 186, 0.3) 20%,
    rgba(201, 204, 186, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 32px;
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(138, 144, 116, 0.5),
    0 0 15px rgba(201, 204, 186, 0.5);
}

.outlined-button {
  background: linear-gradient(
    90deg,
    rgba(138, 144, 116, 0.2),
    rgba(201, 204, 186, 0.2)
  );
  border: 2px solid #0d0d0d;
  border-radius: 32px;
  color: #c9ccba;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.outlined-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 32px;
}

.outlined-button:hover {
  border-color: #c9ccba;
}

.outlined-button:hover::before {
  opacity: 1;
}

.outlined-button:active {
  transform: scale(0.95);
}

.media {
  display: flex;
  gap: 12px;
}

.media-button {
  padding: 12px 13px;
  border-radius: 50%;
  box-shadow: none;
}

.telegram {
  background: #27a6e6;
}

.dex {
  background: #fff;
}

.x {
  background: #242424;
}

#navbar {
  height: 90px;
  transition: all 0.6s;
}

#text {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0%);
  z-index: 1;
  padding: 0.7rem;
  position: absolute;
  top: 35%;
}

#text h2 {
  position: relative;
  color: #fff;
  font-size: 10rem;
  /* letter-spacing: 75px; */
}

.sec {
  padding: 80px 0;
  font-size: 2rem;
}

.divider {
  height: 1px;
  width: 40%;
  background-color: rgb(102, 102, 102);
  margin: auto;
}

footer {
  height: 150px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  /* flex-wrap: wrap; */
}

.step {
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 600px;
  padding: 20px;
  margin: 10px;
  min-height: 260px;
}

.step img {
  width: 80px;
  margin-bottom: 20px;
}

.step h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.step p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.copy-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  width: 600px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
}

.copy-container input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  padding: 5px;
  color: #333;
}

.copy-container button {
  background-color: #fff;
  border: 2px solid black;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.copy-container button:hover {
  background-color: #f0f0f0;
}

.copy-container button img {
  width: 20px;
  height: 20px;
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 700px;
}

.first-text {
  margin-bottom: 32px;
  flex-basis: 100%;
}

.section-container {
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

.img-container {
  width: 100%;
}

.section-image {
  flex-basis: 100%;
  flex-shrink: 1;
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.section-image.left {
  object-position: left;
}

.section-image.right {
  object-position: right;
}

.tweets-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.twitter-tweet {
  max-width: 500px !important;
}

.footer {
  background: #0d0d0d;
  color: #fff;
  font-size: 3rem;
  padding: 2rem 0;
}

.mobile-buttons {
  display: none;
}

@media screen and (max-width: 1400px) {
  .sec {
    font-size: 1.5rem;
  }

  .text-container {
    justify-content: center;
  }

  .first-text {
    flex-basis: auto;
  }
}

@media screen and (max-width: 1201px) {
  .twitter-tweet {
    max-width: 350px !important;
  }
}

@media screen and (max-width: 992px) {
  .header {
    padding: 0 40px;
  }

  .section-container {
    flex-direction: column;
  }

  .img-container {
    display: flex;
    justify-content: center;
  }

  .section-image {
    object-position: center !important;
    width: auto;
    max-width: 350px;
  }

  .tweets-container {
    flex-direction: column;
    align-items: center;
  }

  .twitter-tweet {
    max-width: 550px !important;
  }

  .footer {
    font-size: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .section {
    flex-direction: column;
  }

  .header {
    justify-content: center;
    position: initial;
    background-color: #000;
  }

  .step {
    width: 100%;
    margin: 1rem 0;
  }

  .buttons {
    display: none;
  }

  .mobile-buttons {
    display: block;
  }
}
