@font-face {
    font-family: main;
    src: url(./fonts/Heavitas.ttf);
}
html,body{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: white;
}
*{
    font-family: main;
    text-transform: uppercase;
    text-decoration: none;
}
.small{
  display:none;
}
.mobileundertitle{
  display: none;
}
.fixednavelements.menu-open {
  justify-content: flex-end !important;
}
.menue{
  width: 100%;
  height: 100vh;
  background-color:#070612 ;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: fixed;
  z-index: 98;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  overflow: auto;
}
.menue.open {
  transform: translateX(0);
}
.menuerow{
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 10px solid #a21717 ;
}
.menuerow .menuerowtitle{
  width: 49%;
  max-width: 49%;
}
.menuerow .menueabsoluteimg{
  max-width: 270px;
  left: 420px;
  bottom: 0;
  position: absolute;
}

.menuerow a{
  font-size: clamp(4rem, 10vw, 10rem);
  color: white;
  margin-left: 40px;

}

.menuerow a:hover{
 color:#a21717;

}

.navmenuewrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.burgermenue{
  width: 60px;
  height: 60px;
  background-color: #a21717;
  border-radius: 9999px;
  border: 5px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.burgermenue span{
  display: flex;
  background: black;
  width: 50%;
  height: 5px;
  transition: transform 0.5s ease;
}

.burgermenue.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burgermenue.open span:nth-child(2) {
  opacity: 0;
}
.burgermenue.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.home{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.navbar{
    width: 90%;
    display: flex;
    position: relative;
    flex-direction: row;
    height: 90px;
    align-items: center;

}
.dropdown {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
  z-index:100;

}

/* Toggle button */
.dropdown-toggle {
  padding: 10px 20px;
  background-color: #a21717;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  z-index:99;
  position: relative;
  border: 4px solid black;
}
.dropdown.open .dropdown-toggle {
  background-color: black;  
  color: #a21717;          
}

/* Dropdown menu base */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color:#a21717;
  border-radius: 8px;
  margin-top: 5px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 99;
  text-decoration: none;
  padding: 0;
  border: 4px solid black;
}
.dropdown-menu li a img{
  max-width: 20px;
}

/* List items */
.dropdown-menu li {
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
  border-bottom: 1px solid black;
}
.dropdown-menu li a {
  color: black;
  display: flex;
  gap: 5px;
  
}

.dropdown-menu li:hover {
  opacity: 0.7;        
}

/* Open state */
.dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.logo{
    width: 80px;
    z-index: 98;

}
.navbartitle{
    margin: 0 0 0 90px;
    font-size: 40px;
}
.fixednavelements{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 90px;
    z-index: 99;
}
.strip-wrapper {
  overflow: hidden;
  width: 100%;
  border-top: 7px solid black;
  border-bottom: 7px solid black;

}
.strip-content span{
  color: black;
    margin: 0 15px;
    padding: 10px 0px;
    white-space: nowrap;
    font-size: 1.7rem;
}
.strip {
  display: flex;
  width: max-content;
  animation: scroll-left 69s linear infinite;
}

.strip-content {
  display: flex;
}

.item {
  color: black;
  margin: 0 ;
  padding: 3px 10px;
  white-space: nowrap;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.bigtitle{
  width: 90%;
  padding: 20px 0;

}
.bigtitle img{
  width: 100%;
  
}
.homelower{
  display: flex;
  width: 90%;
  align-items: flex-start;
  justify-content: space-between;
}
.homelower .left{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

}
.homelower .right{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

}
.socials{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:25px ;
  z-index: 20;
}
.socials img{
  max-width: 40px;
}
.righttext p{
  text-align: right;
  font-size: 50px;
  margin: 0;
  line-height: 1;

}
.lefttext p{
  font-size: 50px;
  margin: 0;
  line-height: 1;
}
.leftbutton{
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  text-decoration: none;
  color: black;
  z-index: 20;

}
.leftbutton img{
  max-width: 36px;
}
.homeabsimg{
  position: absolute;
  width: 100%;
  z-index: 1;
}

.divider{
  width: 100%;
  background-color: #070612;
  padding: 100px 0 30px 0;
}
.strip-wrapper2 {
  overflow: hidden;
  width: 100%;


}
.strip-content2 span{
  color: white;
    margin: 0 15px;
    padding: 10px 0px;
    white-space: nowrap;
    font-size: 1.7rem;
}
.strip2 {
  display: flex;
  width: max-content;
  animation: scroll-left 90s linear infinite;
}

.strip-content2 {
  display: flex;
;
    justify-content: space-around;
    align-items: center;
}

.item2 {
  color: white;
  margin: 0 15px;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 8.2rem;
}

.imgholder{
  width: 100px;
}
.strip-content2 img{
  width: 10%;
}
.about{
  min-height: 100vh;
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 50px;

}

.film-mask {
  z-index: 96;
  position: sticky;
  top: 25%; 
  height: 350px;
  overflow: hidden; 
  pointer-events: none;
}

.film-wrapper {
  transform-origin: left center;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 50px;
}

.film-strip {
  gap: 0px;
  will-change: transform;
  height: 320px;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 96;
  border: 25px solid black;
  box-shadow: 0 0 8px #222 inset;
  border-radius: 36px;
}
.film-strip img:not(.filmstripborder) {
  max-height: 100%;
  height: auto; 
  width: 550px;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  border-left: 10px solid black;
  border-right: 10px solid black;
  position: relative; 
  z-index: 10;       
}
.filmstripborder{
  position: absolute;
  left: -16px;
  z-index: 98;
  max-height: 100%;
}
.about .bigtitle{
  text-align: center;
    font-size: clamp(4rem, 10vw, 10rem);

}

.paragraphs{
  width: 90%;
  text-align: center;
  margin: 100px 0;
}
.paragraphs p{
    font-size: clamp(1rem, 10vw, 3rem);
}
.paintimg{
  max-width: 50%;
  width: 300px;
  overflow-x: hidden;
}
.paintimg img{
  max-width: 100%;
}

.film-mask2{
  z-index: 97;
  position: sticky;
  top: 25%; 
  height: 350px;
  overflow: hidden; 
  pointer-events: none;
}

.film-wrapper2{
  transform-origin: left center;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 50px;
}

.film-strip2 {
  gap: 0px;
  will-change: transform;
  height: 320px;
  display: flex;
  align-items: center;
  margin: 0;
  z-index: 98;
  border: 25px solid black;
  box-shadow: 0 0 8px #222 inset;
  border-radius: 36px;
}
.film-strip2 img:not(.filmstripborder2) {
  max-height: 100%;
  height: auto; 
  width: 550px;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  border-left: 10px solid black;
  border-right: 10px solid black;
  position: relative; 
  z-index: 10;       
}
.filmstripborder2{
  position: absolute;
  right: -16px;
  z-index: 96;
  max-height: 100%;
}

.tokenomics{

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  overflow-y: hidden;
  overflow-x: hidden;
}
.tokenomics .bigtitle{
  text-align: center;
  font-size: clamp(4rem, 10vw, 10rem);
  margin: 10px 0;

}
.row1{
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.rowbuttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rowbuttons a{
  padding: 13px 9px;
  font-size: 19px;
  color: black;
  border: 3px solid black;
  border-radius: 17px;
  background-color: #a21717;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

}
.rowbuttons a img{
  max-width: 30px;

}
.sideimg{
  max-width: 100px;
}
.blackline{
  width: 100%;
  background-color: #070612;
  height: 7px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

}
.row2{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.blackline span{
  background-color: white;
  padding: 10px 27px;
  color: black;
  font-size: 25px;
  position: absolute;
  transform: translateY(calc(-50% + 20px));
}
.row2 h1{
    text-align: center;
    font-size: clamp(4rem, 10vw, 10rem);
    margin: 20px 0;
}


.dualblackline{
  width: 100%;
  background-color: #070612;
  height: 7px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-evenly;

}

.dualblackline span{
  background-color: white;
  padding: 10px 27px;
  color: black;
  font-size: 25px;
  position: absolute;
}
.coinfloat{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  margin: 10px 0;

}

@keyframes float {
    0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg) translateZ(0);
}
16% {
    transform: translateY(-8px) translateX(4px) rotate(1deg) translateZ(0);
}
33% {
    transform: translateY(-4px) translateX(-6px) rotate(-1.5deg) translateZ(0);
}
50% {
    transform: translateY(-12px) translateX(2px) rotate(.5deg) translateZ(0);
}
66% {
    transform: translateY(-6px) translateX(-4px) rotate(-.8deg) translateZ(0);
}
83% {
    transform: translateY(-10px) translateX(5px) rotate(1.2deg) translateZ(0);
}
}

.float{
    animation: float 6s ease-in-out infinite;
}


.coinfloat img{
  max-width: 300px;
}
.tokenomicslowertext{
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
.tokenomicslowertext h1{
    text-align: center;
    font-size: clamp(3rem, 10vw, 12rem);
    margin: 0;
    line-height: 1;

}
.tokenomicslowertext h1 span{
    text-align: center;
    font-size: clamp(1rem, 10vw, 3rem) !important;

}

.tokenomicslowertext span{
    text-align: center;
    font-size: clamp(1rem, 10vw, 3rem) !important;

}
.film-mask-static {
  z-index: 96;
  position: relative;
  height: 470px;
  overflow: hidden;
  pointer-events: none;
  transform: rotate(4deg);
  margin-block: 100px;
}
.film-mask-static2 {
  z-index: 97;
  position: relative;
  height: 470px;
  overflow: hidden;
  pointer-events: none;
  transform: rotate(-4deg);
  margin-block: 100px;
}
.film-strip {
    gap: 0px;
    height: 89%;
    display: flex;
    align-items: center;
    margin: 0;
    z-index: 98;
    border: 25px solid black;
    box-shadow: 0 0 8px #222 inset;
    border-radius: 36px;
}

.button{
    padding: 13px 9px;
  font-size: 19px;
  color: black;
  border: 5px solid black;
  border-radius: 17px;
  background-color: #a21717;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filmdivider{
  background: linear-gradient(to bottom,white 0%, white 50%, white 50%, white 100%);

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: hidden;
  overflow-x: hidden;

}

.App{
    background-color: black;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 20px 0;
}
.App .tokenomicslowertext h1{
  color: white !important;
}
.App .tokenomicslowertext span{
  color: white !important;

}
.appflexbox{
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 10px 0;
}
.appflexbox .left,.appflexbox .right{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.appflexbox .left p{
  font-size: 28px;
  text-align: left;
  color: white;
  max-width: 80%;
}
.appflexbox .left a{
    padding: 13px 9px;
  font-size: 19px;
  color: black;
  border: 5px solid black;
  border-radius: 17px;
  background-color: #a21717;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.appflexbox .left img{
  max-width: 180px;
}
.appflexbox .right img{
  max-width: 80%;
}
.video-section {
  position: relative;
  height: 110vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.tunnel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 64, 0.8) 47% rgba(0, 0, 0, 0.95) 60%, rgba(0, 0, 0, 1) 71%);
    pointer-events: none;
}

.section-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.catstrip{
  width: 100%;
  background-color: black;
}
.catstrip .strip-wrappera .stripd.strip-content .item img{
  max-width: 50px;
}
.redline{
  height: 3px;
  background-color: white;
  width: 20px;
  align-self: flex-end;
}
.catstrip .strip-wrapper .strip .strip-content .item{
      padding:0 !important;
      display: flex !important;
      margin: 0 !important;
}
.catstrip .strip-wrapper .strip{
    width: max-content;
    animation: scroll-left 30s linear infinite;
}
.catstrip .strip-wrapper{
    border-bottom: 0px;
}

.footer{
  background-color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footertitle{
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footertitle h1{
  width: 90%;
  color: black;
  text-align: center;
  font-size: clamp(4rem, 10vw, 10rem);
  margin: 20px 0;
}
.titlered {
  width: 90%;
  display: flex;
}

.titlered img {
  width: 100%;
  transform: translate(0px, 2px);
}
.lowerfooter{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
}
.leftfooter{
  margin-left: 25px;

}
.lowerfootersocials{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.lowerfootersocials a{
  background-color: #a21717;
  border: 4px solid black;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40px;
  transition: transform 0.3s ease;
}
.lowerfootersocials a:hover{
  transform: translateY(4px);
}
.lowerfooter h1{
  color: black;
  text-align: left;
  font-size: clamp(1rem, 10vw, 3rem);
  margin: 20px 0;

}

.footer .strip-wrapper .strip .strip-content .item{color: black !important;}
.footer .strip-wrapper .strip .strip-content span{color: black !important; }
.lowerfootersocials a img{
  max-width: 30px;
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.space {
  display: inline-block;
  width: 0.4em;
}
.letter.visible {
  opacity: 1;
  transform: translateY(0);
}










.crativeflexbox{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.creativelement{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  transition: transform 0.5s ease;
}
.creativelement:hover{
  transform: translateY(-14px);
}
.creativeimg{
  max-width: 100%;
}
.creativelement p{
  color: black;
  font-size: 19px;
}

.downloadableitems{
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.downloadableitem{
  max-width: 300px;
  position: relative;
}
.downloadableitem img{
  max-width: 100%;
}
.downloadableitem video{
  max-width: 100%;
}
.mini{
  max-width: 150px;
}

.Collabflex{
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.collableft{
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.collableft img{
  max-width: 200px;
}

.collabright{
  flex: 1;
}
.collabright img{ 
  width: 100%;
  border-radius: 9px;
}
.collabtext{
  max-width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
}
.collabtext span{
  font-size: 25px;
}
.collabtext p{
  font-size: 20px;
  font-weight: 100;
}
.collableft a{
  background-color: #a21717;
  color: black;
  border: 3px solid white;
  padding: 10px 12px;
  border-radius:8px ;
  font-size: 25px;
}

.blogslist{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top:100px ;
}
.blogelement{
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  gap: 40px;
}
.blogelementimg{
  width: 400px;
  max-width: 80%;
}
.blogelementimg img{
  max-width: 100%;
  border-radius: 8px;
}
.redline{
  width: 100%;
  height: 5px;
  background-color: #a21717;
}
.blogpreview span{
  color: white;
  transition: color 0.3s ease;

}
.blogpreview h1{
  color: white;
  font-size: 3rem;
  transition: color 0.3s ease;
}
.blogelement:hover .blogpreview span,
.blogelement:hover .blogpreview h1 {
  color: #a21717 !important;
}

.blogintrolist{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top:100px ;
  background-image: url(./assets/blogbg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(7, 6, 18, 0.9);
}
.blogintrolist span{
  color: black;
  transition: color 0.3s ease;

}
.blogintrolist h1{
  color: black;
  font-size: 3rem;
  transition: color 0.3s ease;
}
.blogtext{
  width: 100%;
  color: black;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.blogtext p{
  max-width: 90%;
}
.outrotitle{
  width: 100%;
  border-bottom: 5px solid #a21717;
}
.blogoutro{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #070612;
}
.outrotitle{
    width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #070612;
  color: white;
}
.outrotitle h1{
  font-size: 4rem;
  text-align: center;
}

@media (max-width: 1200px) {
.lowerfooter h1 {
    font-size: clamp(1rem, 5vw, 2rem);
}
.lefttext p {
    font-size: 40px;
    margin: 0;
    line-height: 1;
}
.righttext p {
    text-align: right;
    font-size: 40px;
    margin: 0;
    line-height: 1;
}
.blogpreview h1{
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease;
}
}

@media (max-width: 1000px) {
  .about .film-mask{
    top: 0;
  }
  .collabtext{
  max-width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-direction: column;
}
  .homeabsimg{
  bottom: -40px; 
  }
  .strip-content2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .item2 {
    color: white;
    margin: 0px;
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 5.2rem;
  }
.divider {
    width: 100%;
    background-color: #070612;
    padding: 50px 0 30px 0;
  }
  .navbartitle {
    margin: 0 0 0 90px;
    font-size: 30px;
}.paragraphs {
    width: 85%;
    text-align: center;
    margin: 100px 0;
}
.paragraphs p {
    font-size: clamp(1rem, 10vw, 2.5rem);
}
.row1 {
    width: 80%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}
.rowbuttons a {
    padding: 13px 9px;
    font-size: 18px;
    color: black;
    border: 3px solid black;
    border-radius: 17px;
    background-color: #a21717;
    text-align: center;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.tokenomicslowertext span {
    text-align: center;
    font-size: clamp(1rem, 10vw, 2rem) !important;
}
.appflexbox {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    flex-direction: column;
    gap: 20px;
}
.appflexbox .left, .appflexbox .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.appflexbox .left p {
    font-size: 28px;
    text-align: center;
    color: white;
    max-width: 80%;
}
.footertitle h1 {
    width: 100%;
    color: #a21717;
    text-align: center;
    font-size: clamp(4rem, 10vw, 10rem);
    margin: 20px 0;
}

.footerabsimg{
  width: 300px !important;
  align-self: flex-end;
}
    .lowerfooter h1 {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }
    .menuerow .menueabsoluteimg {
    height: 100%;
    max-width: 270px;
    left: 420px;
    bottom: 0px;
    position: absolute;
}
}
img.footerabsimg{
  width: 500px !important;
  align-self: flex-end;
}

@media (max-width: 750px) {
  .dropdown {
    display: none;
}
.blogpreview h1{
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
    .collabtext {
        max-width: 90%;
        display: flex
;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
.collableft {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.Collabflex {
    width: 85%;
    display: flex
; 
  flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 20px;
}
.blackline span {
    background-color: white;
    padding: 0px 27px;
    color: black;
    font-size: 25px;
    position: absolute;
    transform: translateY(calc(-50% + 20px));
}
    .navbartitle {
        margin: 0 0 0 90px;
        font-size: 25px;
    }
    .lefttext p {
    font-size: 30px;
    margin: 0;
    line-height: 1;
}
.righttext p {
    text-align: right;
    font-size: 30px;
    margin: 0;
    line-height: 1;
}
.leftbutton img {
    max-width: 26px;
}
.buttontextwrapper p{
  font-size: 12px;
}
.socials {
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 20;
}
.socials img {
    max-width: 30px;
}
.rowbuttons {
  flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.coinfloat img {
    max-width: 200px;
}
}

@media (max-width: 500px) {
.homelower{
  display: none;
}
    .divider {
        width: 100%;
        background-color: #070612;
        padding: 30px 0 30px 0;
    }
    .strip-content2 img {
    width: 5%;
}
    .item2 {
        color: white;
        margin: 0px;
        padding: 10px 20px;
        white-space: nowrap;
        font-size: 3rem;
    }
  .home {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
}
.blogelement {
    width: 90%;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 40px;
    flex-direction: column;
}
.blogelementimg {
    width: 400px;
    max-width: 90%;
}
.big{
  display: none;
}
.small{
  display:block;
}.tunnel-overlay {
    position: absolute;
    transform: translateY(-1px);
    top: 0;
    left: 0;
    width: 100%;
    height: 102%;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 64, 0.8) 47%,  rgba(0, 0, 0, 0.95) 60%, rgba(0, 0, 0, 1) 71%);
    pointer-events: none;
}
.mobileundertitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobileundertitle p{
  font-size: 30px;
  text-align: center;
  margin: 0;
}
.about .bigtitle {
    text-align: center;
    font-size: clamp(2rem, 10vw, 4rem);
}
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  word-break: break-word;
}

.letter.visible {
  opacity: 1;
  transform: translateY(0);
}
    .paragraphs p {
        font-size: clamp(1rem, 10vw, 1.5rem);
    }

  .tokenomics .bigtitle {
    text-align: center;
    font-size: clamp(1rem, 10vw, 7rem);
    margin: 10px 0;
}
.blackline span {
        background-color: white;
        padding: 0px 27px;
        color: black;
        font-size: 20px;
        position: absolute;
        transform: translateY(calc(-50% + 10px));
    }
    .sideimg{
      display: none;
    }
        .row1 {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        margin-bottom: 40px;
    }
    .menuerow a {
    font-size: clamp(3rem, 10vw, 10rem);
    color: white;
    margin-left: 40px;
}


}
@media (max-width: 670px) {
  .row2 h1 {
    text-align: center;
    font-size: clamp(2rem, 10vw, 10rem);
    margin: 20px 0;
}
      .blackline span {
        background-color: white;
        padding: 0px 27px;
        color: black;
        font-size: 15px;
        position: absolute;
        transform: translateY(calc(-50% + 10px));
    }
        .navbartitle {
        margin: 0 0 0 90px;
        font-size: 20px;
    }
}
@media (max-width: 374px) {
      .blackline span {
        background-color: white;
        padding: 0px 27px;
        color: black;
        font-size: 12px;
        position: absolute;
        transform: translateY(calc(-50% + 10px));
    }
}

@media (max-width: 572px) {
.lowerfooter {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    position: relative;
    overflow-y: hidden;
    overflow-x: hidden;
}
.crativeflexbox{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 50px;
}
.lowerfootersocials a {
    background-color: #a21717;
    border: 4px solid black;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 20px;
    transition: transform 0.3s ease;
}
a img {
    max-width: 20px;
}

@media (max-width: 362px) {
}    .menuerow a {
    font-size: clamp(2rem, 10vw, 10rem);
    color: white;
    margin-left: 40px;
}
}


/* fullscreen */

.fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
  flex-direction: column;
}

.fullscreen-view img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.fullscreen-view video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.hoverimg{
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.hoverimg:hover{
    opacity: 1;
}
.overlay{
    opacity: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    
}
.overlay p{
    padding: 10px 20px;
    background-color: white;
    color: black;
    border-radius: 25px;
}

.fullscreen-view a img {
  max-width: 40px;
}

.loaderwrapper{
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden !important;
  z-index: 100;
}

.laoder{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
}
@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10%);
  }
}
.mask{
    position: absolute;
    width: 100%;
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.mask img{
    width: 100%;

}
.backimg{
    min-width: 150%;
    animation: slideLeft 5s ease-in-out forwards;
}
.backimg2{
    min-width: 150%;
}
.filler{
    height: 100%;
    width: 100%;
    background-color:#070612;

}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.loaderwrapper.hide {
  animation: slideUp 1s ease forwards;
  pointer-events: none;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e9e9e9;
  padding: 14px 18px;
  border-radius: 14px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ca-box:hover {
  background: #dcdcdc;
}

.icon {
  width: 22px;
  height: 22px;
  position: relative;
}

/* simple copy icon */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 2px solid #333;
  border-radius: 4px;
}

.icon::before {
  width: 14px;
  height: 14px;
  top: 4px;
  left: 6px;
  background: transparent;
}

.icon::after {
  width: 14px;
  height: 14px;
  top: 0;
  left: 0;
  background: #e9e9e9;
}