@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mouse Memoirs", sans-serif;
}

body {
  overflow-x: hidden;
  background: url("treebg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  height: 100vh;
}

.mouse-memoirs-regular {
  
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  outline: none;
}

li {
  list-style: none;
}

h1,
h2 {
  font-family: "Mouse Memoirs", sans-serif;
}

h4 {
  font-family: "Mouse Memoirs", sans-serif;
}

h6 {
  font-family: "Mouse Memoirs", sans-serif;
}

/* KEYFRAMES */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.banner-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 20px;
}

/* ROOT CSS for dark and light theme toggles */

:root:not(.light) {
  --bg-color1: #1c1c1c;
  --bg-color2: #292929;
  --color1: #fff;
  --color2: #000;
}

:root.light {
  --bg-color1: #adb1b6;
  --bg-color2: #f7f7f7;
  --color1: #000;
  --color2: #fff;
}

/* WRAPPER */

.portfolio-row {
  display: flex;
  flex-wrap: wrap;
}

/* Navigation Styling */

header {
  position: absolute;
  padding: 0 15px;
  left: 0;
  right: 0;
  z-index: 11;
  transition: 0.8s;
  background-color: transparent;
}

header .portfolio-row.header-wrap {
  justify-content: space-between;
  align-items: center;
}

.brand-name a img {
  padding: 30px 10px;
}

.portfolio-navbar ul {
  list-style: none;
}

.portfolio-navbar ul li {
  display: inline;
  margin-left: 35px;
  border: 2px solid #1f1f1f;
  padding: 20px 20px;
  background-color: transparent;
  transition: 0.3s linear;
}

.portfolio-navbar ul li:hover {
  border: 5px solid;
  box-shadow: 0 60px 60px rgba(0, 0, 0, 0.7);
}

.portfolio-navbar ul li a {
  color: #fff;
  font-family: "Mouse Memoirs", sans-serif;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s;
  text-align: center;
}

.portfolio-navbar ul li a i {
  font-size: 25px;
  padding: 0 10px;
  transition: 0.4s;
} 

/* STYLE FOR SLIDER */

#slide-carousel {
  position: relative;
}

.slider {
  background: url("Herolafufu.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.slider-move {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: 80px;
  width: 100%;
}


.copy-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: #333;
      cursor: pointer;
      font-size: 40px;
   }

    .copy-link .tooltip {
      visibility: hidden;
      background-color: #000;
      color: #fff;
      text-align: center;
      border-radius: 4px;
      padding: 5px 8px;
      position: absolute;
      bottom: -30%; /* above the link */
      left: 50%;
      transform: translateX(160%);
      white-space: nowrap;
      font-size: 15px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .copy-link:hover .tooltip {
      visibility: visible;
      opacity: 1;
    }

    .copy-link i {
      margin-left: 5px;
    }

.socials li a {
  display: block;
  color: var(--color1);
   background-color: #000000;
  padding: 0 45px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  transition: 0.3s linear;
  border-radius: 5px;
  position: absolute;
  bottom: -70px;
  left: 45%;
}


.social-items {
  display: inline-block;
  margin: 0 20px;
}

.social-items:not(:last-child) {
  margin-right: 0.5rem;
}



#boxes {
  height: 40vh;
}

.boxes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.slider-box{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.first-box{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 20%;
    background-color: #000000a5;
    text-wrap: wrap;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
    margin-right: 40px;
    text-align: center;
}
.firstbox-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
}

.firstbox-text h3{
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
}

.firstbox-text p {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
    font-style: italic;
}

.second-box{
    display: grid;
    align-items: center;
    justify-content: center;
    width: 20%;
    background-color: #ecd2beb4;
    text-wrap: wrap;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
     text-align: center;
}

.secondbox-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
}

.secondbox-text h3{
    font-size: 20px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
}

.secondbox-text p {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Mouse Memoirs", sans-serif;
    font-style: italic;
}

#cta{
    height: 40vh;
}

.cta-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    color: #fff;
}

.cta-box a{
    text-decoration: none;
    color: #ecd2be;
    font-family: "Mouse Memoirs", sans-serif;
    font-weight: 600;
    font-size: 30px;
    transition: 0.3s linear;
}


.cta-button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecd2be;
    color: #fff;
    font-size: 30px;
    font-family: "Mouse Memoirs", sans-serif;
    padding: 10px 40px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s linear;
    margin-right: 20px;
}

.cta-button a{
    color: #000;
}

.cta-button i{
    margin-right: 2px;
}

.cta-button:hover{
    background-color: #ecd2be6e;
    color: #fff;
    box-shadow: 0 60px 60px rgba(0, 0, 0, 0.7);
}


.cta-info{
    font-size: 20px;
    margin-right: 20px;

}

.cta-x{
    font-size: 20px;
    color:#000 ;
}


@keyframes bn53bounce {
  5%,
  50% {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  15% {
    transform: scale(1);
  }

  20% {
    transform: scale(1) rotate(-20deg);
  }

  25% {
    transform: scale(1) rotate(15deg);
  }

  30% {
    transform: scale(1) rotate(-13deg);
  }

  35% {
    transform: scale(1) rotate(20deg);
  }

  40% {
    transform: scale(1) rotate(0);
  }
}

#hero {
  background-color: transparent;
  height: 35vh;
}

.icon {
  font-size: 500px;
}

.head{
    text-align: center;
    font-size: 50px;
    color: #ecd2be ;
    margin-bottom: 40px;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
  background-color: transparent;
  padding: 10px 0;
  border-left: none;
  border-right: none;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 40s linear infinite;
}

.marquee img {
  display: inline-block;
  margin-right: 20px;
  border-radius: 15px;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero-text {
  text-align: center;
  padding: 100px 0;
}

.hero-text h1 {
  font-size: 50px;
  color: #ecd2be;
}

#links{
    height: 420vh;
    padding: 0 40px;
}

.reddit-wrapper {
  transform: scale(0.8); /* Adjust between 0.5 to 1 as needed */

  max-width: 400px; /* Optional: constrain width */
  overflow: hidden;
  border: 2px solid #ecd2be;
}


.reddit-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.reddit-links a{
    margin-right: 3px;
    border: 2px solid #ecd2be
}



/* STYLING FOR FOOTER */

footer {
  background-color: transparent;
  height: 130vh;
  border-top: 5px solid #000000;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.first-text {
  padding: 60px 0;
}

.first-text h1 {
  font-size: 120px;
}

.first-text p {
  font-size: 40px;
}

.footer-img-house {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.auto-rotate {
  animation: autoRotateAnimation;
  animation-timeline: view();
  overflow: hidden;
}

@-webkit-keyframes autoRotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(45deg);
  }
}

.auto-show {
  animation: autoShowAnimation both;
  animation-timeline: view(80% 5%);
}

@-webkit-keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: translateX(2000px) scale(0.3);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}



#integration-header header {
  display: flex;
  align-items: center;
  justify-content: center;
}

#integration-slider {
  background: #ff8400;
  position: relative;
}

.integration-slider {
  background: #ff8400;
}

.no-img {
  background: #ff8400;
  height: 140vh;
}

.integration-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
}

.integration-text h1 {
  font-size: 90px;
  color: #4c4c4c;
}

.it-p {
  padding: 20px 0;
  text-align: center;
}

.it-p p {
  font-size: 25px;
  color: #4c4c4c;
}

.integration-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-menu ul li {
  display: inline-block;
  margin: 20px 30px;
}

.integration-menu ul li a {
  font-size: 30px;
  text-decoration: none;
  color: #1f1f1f;
  transition: 0.3s linear;
}

.integration-menu ul li a:hover {
  color: #4c4c4c;
}

.integration-menu a.active {
  background-color: red;
  padding: 0px 15px;
  border: none;
  color: #fff;
  border-radius: 5px;
}
.integration-menu a.active:hover {
  color: #fff;
}
.int-slider-move {
  padding: 10px 90px;
}

.int-logo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.int-logo-imgs {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #1c1c1c;
  padding: 30px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #58685b;
  transition: 0.3s linear;
}

.int-logo-imgs:hover {
  border: 1.5px solid #000;
  box-shadow: 0 60px 60px rgba(65, 64, 64, 0.7);
}

.int-logo-imgs p {
  color: #fff;
  font-size: 20px;
}

.int-logo-imgs img {
  border: 1px solid #1f1f1f;
  border-radius: 25px;
  padding: 10px 10px;
  margin-right: 15px;
}

.int-logo-imgs .revolut {
  background: #000;
}

.int-logo-imgs .kucoin {
  background: #000;
}

.int-logo-imgs .kraken {
  background: #a00af1;
}

.int-logo-imgs .bitmart {
  background: #000;
}

.int-logo-imgs .poloniex {
  background: #1c1c1c;
}

.int-logo-imgs .bybit {
  background: #b77502;
  border: 1px solid #000;
}

.int-logo-imgs .bitget {
  background: #00a9bf;
  border: 1px solid #000;
}

.int-logo-imgs .bitrue {
  background: #000;
  border: 1px solid #000;
}

.int-logo-imgs .okx {
  background: #fff;
  border: 1px solid #000;
}

.arrow-back {
  position: absolute;
  left: 30px;
}

.arrow-back a {
  text-decoration: none;
}

.arrow-back a i {
  font-size: 30px;
  color: #1f1f1f;
}

/* Header fixed styles*/

header.header-sticky {
  position: fixed;
  background-color: #ff8400;
  z-index: 190;
  transition: 0.8s;
  border-bottom: 2px solid #1f1f1f;
}

header.header-sticky .portfolio-navbar ul li a {
  color: #fff;
}

header.header-sticky .portfolio-navbar ul {
  padding: 20px 0;
}

/* RESPONSIVE LAYOUT */

@media screen and (max-width: 699px) {
  /* header responsive */

  body{
    background-attachment: fixed;
    background-image: url("treephone.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .slider {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background: url("herophone.png");
    background-position: center;
    background-repeat: no-repeat;
  }

  .socials li a {
  position: absolute;
  bottom: -40px;
  left: 10%;
  font-size: 25px;
  background-color: #1f1f1f;
  padding: 0 25px;
  margin-top: 60px;
}
 

.slider-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-button{
    margin-top: 60px;
}


.first-box{
    width: 100%;
    margin-bottom: 20px;
}

.second-box{
    width: 100%;
}

.cta-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.cta-info{
    font-size: 18px;
    margin-bottom: 10px;
}

.head h1{
    font-size: 40px;
    margin-bottom: 20px;
}


  #hero {
    height: 40vh;
  }

  .reddit-links{
    width: 100%;
  }
  
  #links{
    height: 1000vh;
    padding: 0 40px;
}

  .auto-show{
    font-size: 20px;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  .logo-container {
    padding: 0px 20px;
    width: 100%;
    display: flex;
    flex-direction: grid;
    flex-wrap: wrap;
    column-gap: 0.8em;
    row-gap: 0.8em;
    height: 110vh;
  }

  .logo-imgs {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-imgs img {
    width: 150px;
  }
  .hero-text-bottom {
    margin-top: 20px;
  }

  #utility {
    width: 100%;
    height: 210vh;
    padding: 60px 20px;
    border-top: 5px solid #000000;
  }

  .utility-text h1 {
    font-size: 80px;
    color: #1f1f1f;
  }

  .utility-text h2 {
    font-size: 30px;
    color: #1f1f1f;
  }

  .utility-container {
    padding: 0px 20px;
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
  }

  .utility-info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .info-boxes {
    width: 100%;
  }

  #how-to-buy {
    padding: 60px 20px;
    height: 190vh;
    border-top: 5px solid #000000;
  }

  .buy-text h1 {
    font-size: 60px;
  }

  .image-box {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .htb-boxes {
    width: 100%;
    height: 100%;
  }

  .htb-house {
    width: 100%;
  }

  .htb-boxes h1 {
    font-size: 30px;
  }

  .htb-boxes p {
    font-size: 20px;
  }

  .auto-rotate {
    animation: autoRotateAnimation;
    animation-timeline: view();
    overflow: hidden;
    width: 336px;
  }

  #join-wombat {
    height: 160vh;
    padding: 60px 20px;
    border-top: 5px solid #000000;
  }

  .join-img-house {
    display: flex;
    flex-direction: column;
  }

  .join-text h1 {
    font-size: 50px;
  }

  .join-img-text h4 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .join-wombat-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 150vh;
  }
  .join-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1f1f1f;
    width: 80%;
    right: 30px;
    bottom: 50px;
    padding: 10px 20px;
    background-color: #4c4c4c;
    transition: 0.3s linear;
    margin-top: 20px;
    transform: skew(20turn, -5deg);
  }

  .join-img-text {
    margin: 40px 0px;
  }

  #tokenomic {
    padding: 60px 20px;
    height: 150vh;
    border-top: 5px solid #000000;
  }
  .token-text h1 {
    font-size: 80px;
  }

  .token-text h4 {
    font-size: 30px;
    color: #fff;
    word-wrap: wrap;
  }
  .token-text {
    width: 100%;
    padding: 0px 10px;
  }

  .token-img img {
    width: 100%;
  }

  .token-img {
    margin-top: 50px;
  }

  .token-img-house {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .token-pad-text {
    width: 100%;
    padding: 30px 0px;
  }

  .token-pad-text h1 {
    font-size: 25px;
  }

  .token-pad-text p {
    font-size: 18px;
  }

  .text-img img {
    display: none;
  }

  .token-text-img {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }

  .new-house .shake {
    padding: 20px 0px;
  }

  .auto-rotate {
    display: block;
    animation: autoRotateAnimation;
    animation-timeline: view();
  }

  .bn53 {
    padding: 10px 50px;
  }

  #gif-bg {
    padding: 30px 0px;
    width: 100%;
    background-image: url("WOMBAT\ Angry\ mobile\ \(1\).gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1f1f1f;
    height: 37vh;
  }

  .gif-bg {
    width: 50%;
  }

  .gif-text {
    width: 100%;
    padding: 10px 40px;
  }

  .gif-text h1 {
    font-size: 30px;
  }

  footer {
    padding: 20px 40px;
    height: 105vh;
  }

  .first-text h1 {
    font-size: 50px;
  }

  .first-text p {
    font-size: 20px;
  }

  .footer-container {
    width: 100%;
  }

  .footer-img-house {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .footer-button img {
    display: none;
  }

  .footer-img img {
    width: 300px;
    overflow: hidden;
  }

  @-webkit-keyframes autoRotateAnimation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(45deg);
    }
  }

  .auto-show {
    display: block;
    animation: autoShowAnimation both;
    scroll-timeline: view(60% 10%);
  }

  @-webkit-keyframes autoShowAnimation {
    from {
      opacity: 0;
      transform: translateY(200px) scale(0.3);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .integration-menu {
    display: flex;
    flex-wrap: wrap;
  }

  .integration-text h1 {
    font-size: 50px;
  }

  .integration-text p {
    font-size: 20px;
    font-weight: 200;
  }

  .integration-menu ul {
    width: 60%;
  }

  .it-p {
    padding: 10px 50px;
  }

  .integration-menu ul li {
    display: inline-block;
    margin: 10px 13px;
  }

  .no-img {
    background: #ff8400;
    width: 100%;
    height: 280vh;
  }

  .int-slider-move {
    padding: 10px 0px;
  }

  .int-logo-container {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
  }

  .int-logo-imgs {
    width: 100%;
    height: 180px;
  }

  .int-logo-imgs p {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

/* For small devices (phones, 600px and below) */
@media only screen and (max-width: 600px) {
  .hero-text h1 {
    font-size: 80px;
  }
  .portfolio-navbar ul li {
    margin-left: 15px;
    padding: 10px 10px;
  }
  .info-boxes {
    width: 100%;
  }
  /* Add other responsive adjustments here */
}

/* For medium devices (tablets, 600px to 768px) */
@media only screen and (min-width: 601px) and (max-width: 768px) {
  .hero-text h1 {
    font-size: 100px;
  }
  .portfolio-navbar ul li {
    margin-left: 25px;
    padding: 15px 15px;
  }
  .info-boxes {
    width: 80%;
  }
  /* Add other responsive adjustments here */
}

/* For large devices (laptops/desktops, 768px to 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-text h1 {
    font-size: 120px;
  }
  .portfolio-navbar ul li {
    margin-left: 30px;
    padding: 20px 20px;
  }
  .info-boxes {
    width: 60%;
  }
  /* Add other responsive adjustments here */
}

/* For extra-large devices (large laptops and desktops, 1024px and above) */
@media only screen and (min-width: 1025px) {
  .hero-text h1 {
    font-size: 150px;
  }
  .portfolio-navbar ul li {
    margin-left: 35px;
    padding: 25px 25px;
  }
  .info-boxes {
    width: 50%;
  }
  /* Add other responsive adjustments here */
}
