
@font-face {
  font-family: 'SEGOE UI BLACK';
  src: url('./font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
    margin: 0;
    overflow-x: hidden;
     font-family: 'SEGOE UI BLACK', sans-serif;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  pointer-events: none; 
}




.nav-bar{
    display: flex;
    flex-direction: column;
    z-index: 2;
      position: relative; 
}
.nav-upper{
    display: flex;
    justify-content: flex-end;
    backdrop-filter: blur(5000px);               
    -webkit-backdrop-filter: blur(5000px); 
    height: 50px;
}
.nav-upper img{
    margin: 5px;
    height: 40px;
    width: auto;
}
.nav-bottom{
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
}
.nav-left{
    margin-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
}
.nav-left img {
    height: 50px;
    width: auto;
}
.nav-center img{
    height: 100px;
    width: auto;
}
.nav-right{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-right: 10px;
}
.b-tg{
    padding-left: 10px;
    padding-right: 10px;
    margin-top: auto;
    margin-bottom: auto;
    height: 40px;
    width: auto;
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: red;
    color: white;
    text-decoration: none;
}
.b-x{
    padding-left: 10px;
    padding-right: 10px;
    margin-top: auto;
    margin-bottom: auto;
    height: 40px;
    width: auto;
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: red;
    color: white;
    text-decoration: none;
}
.mobile-tg-btn {
  display: none;
}
@media (max-width: 768px) {
  .nav-left img {
    display: none;
  }

  .mobile-tg-btn {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: auto;
    margin-bottom: auto;
    height: 40px;
    width: auto;
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: red;
    color: white;
    text-decoration: none;
  }
  .b-tg{
    display: none;
  }
}
.about{
    margin-top: 50px;
    height: 800px;
    display: flex;
    justify-content: center;  
    align-items: center;
  animation: scaleRotate 1.5s infinite ease-in-out;
  transform-origin: center center;
    overflow: hidden;     
  z-index: 1;
}
 @keyframes scaleRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(5deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
} 
.about-container{
    height: 800px;
    width: 80%;
    backdrop-filter: blur(100px);               
    -webkit-backdrop-filter: blur(100px); 
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-direction: row;
    border-radius: 40px;
}
.about-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding-left: 10%;
    color: white;
}
.about-left h2{
    font-size: 3rem;
    margin: 0;
}
.about-left h1{
    font-size: 10rem;
    margin: 0;
}
.about-left p{
    width: 400px;
    font-size: 1.3rem;
}
.about-right{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-right img{
    max-height: 100%;     
    object-fit: contain; 
    width: 100%;
}
.about-contract{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
    align-items: center;
        backdrop-filter: blur(5000px);               
    -webkit-backdrop-filter: blur(5000px); 
    background-color: rgba(255, 255, 255, 0.173);
    padding: 10px;
    width: 400px;
    border-radius: 10px;
}
.about-buy{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: black;
    color: white;
    border-radius: 10px;
    cursor: pointer;
}
.about-copy-ca{
      position: relative;
    cursor: pointer;
}
.copy-popup {
  position: absolute;
  top: -20px; 
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.about-copy-ca.copied .copy-popup {
  opacity: 1;
}
.about-buttons{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.about-buttons img{
    width: 30px;
    height: auto;
}
@media (max-width: 850px) {
.about-container{
    flex-direction: column;
}
.about-left{
    width: 100%;
    padding: 0;
}
.about-left h2{
    font-size: 1.5rem;
    margin: 0;
}
.about-left h1{
    font-size: 7rem;
    margin: 0;
}
.about-left p{
    width: 100%;
}
.about-contract{
    width: 92%;
}
.about-right{
    height: 40%;
}
}
@media (max-width: 430px) {
.about-container{
    flex-direction: column;
}
.about-left{
    width: 90%;
}
.about-left h2{
    font-size: 1.8rem;
    margin: 0;
}
.about-left h1{
    font-size: 7rem;
    margin: 0;
}
.about-left p{
    font-size: 1.1rem;
    width: 100%;
    margin: 0;
}
.about-contract{
    margin-top: 10px;
    width: 92%;
    font-size: 0.6rem;
}
.about-right{
    width: 100%;
}
}
@media (max-width: 310px) {
    .about-contract{
        font-size: 0.5rem;
    }
}


  .how-to-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 10rem;
  }

  .how-to-step {
    position: relative;
    text-align: center;
  }

  .how-to-box {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-left-width: 3px;
    border-bottom-width: 3px;
    border-radius: 20px;
    backdrop-filter: blur(50000px);               
    -webkit-backdrop-filter: blur(100px); 
  }

  .how-to-title {
    color: white;
    font-size: 2rem;
    text-shadow: -3px 2px 0px #000000;
    margin-bottom: 1rem;
  }

  .how-to-text {
    color: white;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.5;
    text-transform: capitalize;
  }

  @media (min-width: 768px) {
    .how-to-wrapper {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0;
      height: auto;
    }
    .how-to-step {
      width: 48%;
      position: relative;
    }
    .how-to-step:nth-child(1) {
      margin-top: 0;
    }
    .how-to-step:nth-child(2) {
      margin-top: 190px;
    }
    .how-to-step:nth-child(4) {
      margin-top: 190px;
    }
    .how-to-box {
      padding: 2rem;
      max-width: 480px;
      border-left-width: 10px;
      border-bottom-width: 10px;
      border-radius: 40px;
    }
    .how-to-title {
      font-size: 2.5rem;
      text-shadow: -2px 1px 0px #000000;
    }
    .how-to-text {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1536px) {
    .how-to-wrapper {
      height: auto;
      width: 70%;
      margin-left: 15%;
    }
    .how-to-title {
      font-size: 2.875rem;
    }
    .how-to-text {
      font-size: 1.475rem;
    }
  }



.footer-section {
    height: 850px;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
  }

  .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  }

  .footer-text-group {
  margin-top: 150px;
  text-align: left;
  align-items: flex-start;
  max-width: 50%;
  padding-left: 20%;
  margin-right: auto;
  }

  .footer-title {
    font-size: 8rem;
    color: white;
    text-shadow: -6px 9px 0px #000;
    margin: 0;
  }

  .footer-subtitle {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: -1px 3px 0px #000;
    margin: 0.5rem 0;
  }


  .footer-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 3rem;
  }

  .footer-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid black;
    border-radius: 20px;
    box-shadow: -4px 6px 0px #000000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
  }
    .dex-img{
    width: 40px !important; 
    height: auto;
    object-fit: contain;
    }
  .footer-button-wrapper {
    margin-bottom: 5rem;
  }

  .footer-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 5px solid black;
    border-radius: 50px;
    box-shadow: -4px 6px 0px #000000;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-size: 2rem;
  }

  .footer-button-img {
    width: 45px;
    height: 45px;
    border: 2px solid black;
    border-radius: 50%;
  }

  .footer-button-text {
    font-size: 2rem;
    color: black;
    font-weight: bold;
  }

  .footer-image-wrapper {

    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: flex-end;
  justify-content: flex-end;
  }

  .footer-image {
    position: relative;
    width: 700px;
    max-width: 100%;
    height: auto;
    max-height: 750px;
    object-fit: contain;
    z-index: 10;
  }
  @media (max-width: 780px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-text-group {
    margin-top: 30px;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-title {
    font-size: 3rem;
  }

  .footer-subtitle {
    font-size: 1.5rem;
  }

  .footer-email {
    font-size: 1rem;
  }

  .footer-button-text {
    font-size: 1rem;
  }

  .footer-icons {
    justify-content: center;
  }

  .footer-image-wrapper {
    order: 1;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    margin-top: 2rem;
  }

  .footer-image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
