body {
    background: linear-gradient(180deg, 
        #3a0f5c 0%, 
        #4a1573 15%,
        #7d3bb2 30%, 
        #7d3bb2 100%
    );
}

/* reset default margins/padding */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: bodyFadeIn 1.5s ease-in forwards;
}

/* === Page load fade-in === */

@keyframes bodyFadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* === Element fade/slide effects === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #1a0b24;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c77dff, #9d4edd);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e0aaff, #b47dff);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #7b2cbf, #5a189a);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c77dff #1a0b24;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    color: black;
    font-size: 24px;
    padding: 10px;
    border-radius: 250px;
    font-weight: bold;
    background-color: white;
    border: 5px solid black;
    border-top: 3px solid black;
    width: 95%;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    font-family: 'MainFont';
    z-index: 100;
    position: relative;
}

@media screen and (max-width: 650px) {
    header {
        width: 90%;
    }
}

header h1 {
    margin: 0;
    font-size: 24px;
    margin-left: 25px;
    font-weight: 100;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  margin-right: 15px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 9999;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
  background-color: #ff4d6d;
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
  background-color: #ff4d6d;
}

.menu {
  display: flex;
  gap: 10px;
  z-index: 10;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 550px) {
  header h1 {
    font-size: 18px;
    margin-left: 15px;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    border: 3px solid black;
    gap: 10px;
    z-index: 100;
  }

  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

.TG_Logo,
.X_Logo,
.Dex_Logo {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 37px;
    height: 37px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: transparent;
}

.X_Logo {
    margin: 0 15px;
}

.TG_Logo { background-image: url('/telegram.svg'); }
.X_Logo { background-image: url('/x.svg'); }
.Dex_Logo { background-image: url('/DexScreener.png'); }

.TG_Logo:hover,
.X_Logo:hover,
.Dex_Logo:hover {
    transform: scale(1.2);
}

.BuyNowButton {
    background-color: #e5d1ff;
    width: 120px;
    height: 50px; 
    font-family: 'MainFont';
    font-size: 19px;
    border-radius: 25px;
    border: 3px solid black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    color: black;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-left: 10px;
}

.BuyNowButton:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

@font-face {
    font-family: 'MainFont';
    src: url(/Anton-Regular.ttf);
}

@font-face {
  font-family: 'PlayfulFont';
  src: url(/CherryBombOne-Regular.ttf);
}

.LandingPagePolygon {
    width: 1500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    margin-top: -600px;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: spin 120s linear infinite;
    transform-origin: center;
}

.LandingPagePolygon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #3a0f5c;
    animation: spin 120s linear infinite;
    transform-origin: center;
    z-index: 0;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.PolygonContent {
    position: absolute;
    z-index: 1;
    top: 10px;
    width: 100%;
}

.Landingh1 {
    color: #e0aaff;
    font-size: 110px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 225px;
    font-family: "MainFont";
    margin-bottom: 10px;
    text-shadow: 3.5px 3.5px 0px black;
    text-align: center;
    animation: zoomInOut 3s infinite ease-in-out;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.Landingp {
    color: white;
    font-size: 25px;
    letter-spacing: 1px;
    font-family: "MainFont";
    margin-top: -20px;
    font-weight: 100;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,  
        -1px  1px 0 #000,  
         1px  1px 0 #000;
    text-align: center;
}

.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.BuyNowButtonV1 {
    border-bottom: 4px solid black;
    border-left: 2.5px solid black;
    border-right: 4px solid black;
    border-top: 2.5px solid black;
    background-color: #f3d9ff;
    height: 50px;
    width: 175px;
    font-family: 'MainFont';
    font-size: 19px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    transition: transform 0.2s, box-shadow 0.2s;
    color: black;
}

.BuyNowButtonV1:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.FreeMintButton {
    border-bottom: 4px solid black;
    border-left: 2.5px solid black;
    border-right: 4px solid black;
    border-top: 2.5px solid black;
    background-color: #6a0dad;
    height: 50px;
    width: 175px;
    font-family: "MainFont";
    font-size: 19px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    letter-spacing: 0.5px;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.FreeMintButton:hover {
    background-color: #c77dff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.SmallContentSection {
    width: 95%;
    max-width: 1600px;
    margin: 50px auto;
    padding: 50px;
    background-color: white;
    border-radius: 40px;
    font-family: 'MainFont';
    text-align: center;
    border: 4px solid black;
    margin-top: -300px;
    z-index: 2;
    height: 300px;
    position: relative;
}

.SectionHeader {
    font-size: 150px;
    line-height: 150px;
    text-align: left;
    margin-left: 20px;
    margin-bottom: 20px;
    font-weight: 100;
    margin-top: 0px;
    width: 450px;
}

.Landing_Character {
    position: absolute;
    right: 0px;
    top: -240px;
    width: 500px;
    height: auto;
    z-index: 3;
}

.CornerBox {
  position: absolute;
  top: -47px;
  left: 100px;
  background: #c77dff;
  color: #000;
  font-family: "MainFont";
  font-size: 16px;
  padding: 8px 15px;
  border: 3px solid #000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.CopyButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.CopyIcon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.CopyButton:hover .CopyIcon {
  transform: scale(1.2);
}

.LinksSection {
    width: 35%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 51.5%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 20px 2px;
    padding: 5px;
    justify-content: center;
    align-content: center;
}

.LinkButton {
  text-decoration: none;
  background-color: #f3d9ff;
  color: #000;
  font-family: "MainFont";
  font-size: 17px;
  padding: 10px 20px;
  border: 3px solid #000;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  font-weight: 100;
  box-shadow: 2px 2px 0px #000;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
}

.LinkButton:hover {
  background-color: #c77dff;
  transform: translateY(-2px);
  box-shadow: 3.5px 3.5px 0px #000;
}

.LastButton {
  text-decoration: none;
  background-color: #c77dff;
  color: #000;
  font-family: "MainFont";
  font-size: 17px;
  padding: 10px 20px;
  border: 3px solid #000;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  font-weight: 100;
  box-shadow: 2px 2px 0px #000;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
}

.LastButton:hover {
  background-color: #f3d9ff;
  transform: translateY(-2px);
  box-shadow: 3.5px 3.5px 0px #000;
}

@media screen and (max-width: 1800px) {
.SmallContentSection {
    max-width: 1100px; /* 1600 → 1100 */
    margin: 37.5px auto; /* 50 → 37.5 */
    padding: 37.5px; /* 50 → 37.5 */
    background-color: rgba(255, 255, 255);
    border-radius: 40px; /* 80 → 60 */
    border: 3px solid black; /* 4 → 3 */
    margin-top: -305px; /* -300 → -225 */
    height: 225px; /* 300 → 225 */
}

.SectionHeader {
    font-size: 112.5px; /* 150 → 112.5 */
    line-height: 112.5px; /* 150 → 112.5 */
    margin-left: 15px; /* 20 → 15 */
    margin-bottom: 15px; /* 20 → 15 */
    width: 337.5px; /* 450 → 337.5 */
}

.CornerBox {
  top: -46px;   /* same placement */
}

.Landing_Character {
    top: -180px; /* -240 → -180 */
    width: 375px; /* 500 → 375 */
}

.CopyButton:hover .CopyIcon {
  transform: scale(1.2);
}

.LinksSection {
    width: 33%; /* 35 → 26.25 */
    height: 80%; /* 90 → 67.5 */
    position: absolute;
    top: 50%;
    left: 51.5%;
    transform: translate(-50%, -50%);
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 15px 15px; /* 20x2 → 15x1.5 */
    padding: 3.75px; /* 5 → 3.75 */

    justify-content: center;
    align-content: center;
}

.LinkButton,
.LastButton {
  text-decoration: none;
  color: #000;
  font-family: "MainFont";
  font-size: 14px;
  padding: 12px 17.5px;
  border: 2px solid #000;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  font-weight: 100;
  box-shadow: 1.5px 1.5px 0px #000;
  text-align: center;

  flex: 0 0 auto; /* keeps natural size, no shrinking */
  width: auto;    /* don’t stretch */
  box-sizing: border-box;
}

.LastButton {
    background-color: #c77dff;

}

}

@media screen and (max-width: 1530px) {
  .LandingPagePolygon {
    width: 1200px;
    margin-top: -480px;
}

.SmallContentSection {
    width: 95%;
    max-width: 1100px; /* 1600 → 1100 */
    margin: 37.5px auto; /* 50 → 37.5 */
    padding: 37.5px; /* 50 → 37.5 */
    background-color: rgba(255, 255, 255);
    border-radius: 40px; /* 80 → 60 */
    font-family: 'MainFont';
    text-align: center;
    border: 3px solid black; /* 4 → 3 */
    margin-top: -205px; /* -300 → -225 */
    z-index: 2;
    height: 225px; /* 300 → 225 */
    position: relative;
}

}


@media screen and (max-width: 1250px) {
  .LandingPagePolygon {
    width: 1000px;
    margin-top: -400px;
}

.Landingh1 {
    font-size: 80px;
}

.Landingp {
    font-size: 20px;
}

.BuyNowButtonV1 {
    border-bottom: 4px solid black;
    border-left: 2.5px solid black;
    border-right: 4px solid black;
    border-top: 2.5px solid black;
    background-color: rgb(249, 239, 224);
    height: 45px;
    width: 160px;
    font-family: 'MainFont';
    font-size: 17px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    transition: transform 0.2s, box-shadow 0.2s;
}

.FreeMintButton {
    border-bottom: 4px solid black;
    border-left: 2.5px solid black;
    border-right: 4px solid black;
    border-top: 2.5px solid black;
    height: 45px;
    width: 160px;
    font-family: "MainFont";
    font-size: 17px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    letter-spacing: 0.5px;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.SmallContentSection {
    max-width: 900px; /* 1600 → 1100 */
    margin-top: -150px; /* -300 → -225 */
}

.CornerBox {
  top: -40px;   /* same placement */
  left: 80px;
  font-size: 14px;
  padding: 6.5px 11px;
}

.CopyButton {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.CopyIcon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.SectionHeader {
    font-size: 100px; /* 150 → 112.5 */
    line-height: 100px; /* 150 → 112.5 */
    margin-left: -10px; /* 20 → 15 */
    margin-top: 10px;
    width: 337.5px; /* 450 → 337.5 */
}

.Landing_Character {
    top: -120px; /* -240 → -180 */
    right: -25px;
    width: 325px; /* 500 → 375 */
}

.LinksSection {
    width: 35%; /* 35 → 26.25 */
    height: 90%; /* 90 → 67.5 */
    position: absolute;
    top: 50%;
    left: 52.5%;
    transform: translate(-50%, -50%);
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: min-content;
    gap: 10px 5px; /* 20x2 → 15x1.5 */
    padding: 3.75px; /* 5 → 3.75 */

    justify-content: center;
    align-content: center;

}

.LinkButton,
.LastButton {
  text-decoration: none;
  background-color: #f3d9ff;
  color: #000;
  font-family: "MainFont";
  font-size: 14px;
  padding: 9px 15px;
  border: 2px solid #000;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  font-weight: 100;
  box-shadow: 1.5px 1.5px 0px #000;
  text-align: center;

  flex: 0 0 auto; /* keeps natural size, no shrinking */
  width: auto;    /* don’t stretch */
  box-sizing: border-box;
}

.LastButton {
    background-color: #c77dff;
}

}

/* default (big screens): allow the break */
.responsive-br { display: inline; }

/* responsive rules for <=1050px */
@media (max-width: 1050px) {
  /* 1) remove the <br> so it doesn't force a break */
  .SectionHeader br.responsive-br { display: none; }

  /* 2) prevent wrapping so the whole text stays on one line */
  .SectionHeader {
    white-space: nowrap;         /* no automatic wrapping */
    font-size: 80px;
    margin-top: 5px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 1050px) {
    .SectionHeader br {
    display: none;
  }
  
  .LandingPagePolygon {
    width: 800px;
    margin-top: -300px;
  }

.Landingh1 {
    margin-top: 150px;
    font-size: 55px;
}

.Landingp {
    margin-top: -15px;
    font-size: 16px;
}

.CornerBox {
  top: -35px;   /* same placement */
  left: 55px;
  font-size: 12px;
  padding: 5px 9px;
}

.Landing_Character {
    top: -140px; /* -240 → -180 */
    right: 25px;
    width: 235px; /* 500 → 375 */
}

.LinksSection {
  width: 90%;
  height: 80%;
  top: 70%;
  left: 50%;
  
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: min-content;
  gap: 15px 10px;
  padding: 3.75px;

  justify-content: center;
  align-content: center;
  text-align: center;
}

.LinkButton,
.LastButton {
  padding: 9px 15px;
}

.LastButton {
  background-color: #c77dff;
}

 .SmallContentSection {
    width: 95%;
    max-width: 700px; /* 1600 → 1100 */
    margin: 37.5px auto; /* 50 → 37.5 */
    padding: 37.5px; /* 50 → 37.5 */
    margin-top: -170px; /* -300 → -225 */
    height: 250px; /* 300 → 225 */
}

body {
    background: linear-gradient(180deg, 
        #3a0f5c 0%, 
        #4a1573 10%,
        #7d3bb2 35%, 
        #7d3bb2 100%
    );
}
}

@media screen and (max-width: 800px) {
  .Landingh1 {
    font-size: 45px;
    margin-top: 140px;
  }

  .Landingp {
    font-size: 15px;
    margin-top: -10px;
  }

  .SectionHeader {
    font-size: 75px;
    line-height: 70px;
    white-space: nowrap;
    margin-top: 10px;
    margin-left: 15px;
  }

  .Landing_Character {
    width: 200px;
    right: 10px;
    top: -135px;
    right: 50px;
  }

  .LinksSection {
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
    top: 67%;
    gap: 10px;
  }

  .LinkButton {
    font-size: 13px;
    padding: 10px 12px;
  }

  .SmallContentSection {
    padding: 30px 20px;
    width: 90%;
  }

    .LandingPagePolygon {
    width: auto;
    margin-top: -300px;
  }

  body {
    background: linear-gradient(180deg, 
        #3a0f5c 0%, 
        #4a1573 10%,
        #7d3bb2 30%, 
        #7d3bb2 100%
    );
}

}

@media screen and (max-width: 750px) {
  .SmallContentSection {
    margin-top: -100px;
  }

  .SectionHeader {
    font-size: 60px;
    line-height: 55px;
    white-space: nowrap;
    margin-top: 15px;
    margin-left: 20px;
  }

  .Landing_Character {
    width: 175px;
    top: -100px;
    right: 30px;
  }
}

@media screen and (max-width: 675px) {
  .SmallContentSection {
    margin-top: -50px;
  }
}

@media screen and (max-width: 630px) {

    .LandingPagePolygon {
    width: auto;
    margin-top: -200px;
  }
  
    .SmallContentSection {
      margin-top: -150px;
      width: 85%;
  }

   .Landingh1 {
    font-size: 40px;
    margin-top: 110px
   }

   .Landingp {
    font-size: 14px;
   }

   .button-row {
    gap: 5px;              
   }

   .BuyNowButtonV1, .FreeMintButton {
    height: 40px;
    width: 150px;
    font-size: 16px;
   }
   
  .SectionHeader {
    font-size: 50px;
    margin-top: 5px;
  }
    
  #token-address::before {
    content: attr(data-full);
  }

  #token-address {
    display: inline-block;
    max-width: 120px; /* adjust as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
  }

  /* OR a cleaner custom truncate (preferred way): */
  #token-address::before {
    content: attr(data-full);
  }

  #token-address {
    color: inherit;
  }

  .Landing_Character {
    width: 150px;
    top: -80px;
    right: 60px;
  }

  .LinksSection {
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
    top: 65%;
    gap: 10px;
  }

  .LinkButton, .LastButton{
    font-size: 12px;
    padding: 8px 10px;
}
}

@media screen and (max-width: 590px) {
    .SmallContentSection {
      margin-top: -120px;
    }
}

@media screen and (max-width: 555px) {
    .SmallContentSection {
      margin-top: -80px;
      height: 220px;
  }
  
    .Landing_Character {  
    width: 120px;
    top: -55px;
    right: 35px;
  }

  .LinksSection {
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
    top: 65%;
    gap: 10px;
  }

  .LinkButton, .LastButton{
    font-size: 12px;
    padding: 8px 10px;
}

  .SectionHeader {
    font-size: 40px;
  }
}

@media screen and (max-width: 500px) {
    .LandingPagePolygon {
    width: auto;
    margin-top: -150px;
  }

  .SmallContentSection {
    margin-top: -100px;
  }

  .Landingh1 {
    font-size: 30px;
    margin-top: 125px;
  }

  .Landingp {
    font-size: 12px;
  }

  .BuyNowButtonV1, .FreeMintButton {
    height: 35px;
    width: 130px;
    font-size: 14px;
   }
}

@media screen and (max-width: 470px) {
  .Landingh1 {
    margin-top: 100px;
  }

  .BuyNowButtonV1, .FreeMintButton {
    height: 30px;
    width: 120px;
    font-size: 12px;
}

  .button-row {
    margin-top: -5px;
  }

  .SmallContentSection {
    margin-top: -115px;
  }
}

@media screen and (max-width: 450px) {
    .SmallContentSection {
      margin-top: -100px;
      height: 272.5px;
    }

    .Landing_Character {
      right: 25px;
      width: 110px;
      top: -20px;
    }

    .LinksSection {
      grid-template-columns: repeat(3, 1fr);
      width: 90%;
    }

    .responsive-br { display: inline; }

    .SectionHeader {
      font-size: 45px;
      line-height: 45px;
      margin-top: -10px;
    }
}

@media screen and (max-width: 420px) {
    .LandingPagePolygon {
      width: auto;
      margin-top: -120px;
    }
}

@media screen and (max-width: 390px) {
    .SmallContentSection {
      margin-top: -60px;
    }
}
  
    .slider-wrapper {
      position: relative;
      width: 100%;
      height: 265px; /* adjust height */
      background-color: transparent;
    }

    .slider-container {
      overflow: hidden;
      white-space: nowrap;
      border-top: 4px solid black;
      border-bottom: 4px solid black;
      background: white;
      font-family: "PlayfulFont";
      font-size: 30px;
      font-weight: 500;
      letter-spacing: 2.5px;
      word-spacing: 10px;
      text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
      position: absolute;
      left: 50%;
      top: 50%;
      transform-origin: center center;
      width: 100%;
      max-width: 100%;
      padding: 10px 0;
      color: green;
      z-index: 1;
    }

    

    .slider-container1 {
      transform: translate(-50%, -50%) rotate(-3deg);
    }
    .slider-container2 {
      transform: translate(-50%, -50%) rotate(3deg);
    }

    .slider-track {
      display: inline-block;
      white-space: nowrap;
      will-change: transform;
    }

    
    @media screen and (max-width: 1500px) {
      .slider-container {
        height: 27px; /* adjust height */
        display: flex;
        align-items: center;
        font-size: 23px;
        text-shadow:
        -1.5px -1.5px 0 black,
         1.5px -1.5px 0 black,
        -1.5px  1.5px 0 black,
         1.5px  1.5px 0 black;
      }
    }

    @media screen and (max-width: 1050px) {
      .slider-container {
        top: 35%;
      }
    }

    @media screen and (max-width: 950px) {
      .slider-container1 {
        transform: translate(-50%, -50%) rotate(-6deg);
      }
      .slider-container2 {
      transform: translate(-50%, -50%) rotate(6deg);
    }

    .slider-container {
        top: 30%;
      }
    }

.footer {
  margin-top: -100px;
  width: 100%;
  background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  text-align: left;
  padding: 20px 20px 40px;
  font-family: "MainFont";
  font-size: 0.95rem;
  color: #bbb;
  letter-spacing: 0.5px;
  margin-top: 400px;
}

.footer-bottom {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.disclaimer {
  width: 50%;
}

.creator {
  display: block;
  font-size: 1.2rem;
  font-weight: 100;
  color: #e0e0e0;
  letter-spacing: 0.8px;
  margin-top: -10px;
  text-align: left;
  opacity: 0.95;
  transition: opacity 0.3s ease;
  margin-bottom: -15px;
}

.creator:hover {
  opacity: 1;
}

.creator a {
  color: #4da6ff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.creator a:hover {
  color: #80c1ff;
  text-shadow: 0 0 10px rgba(77, 166, 255, 0.8);
}

.HighlighAddress {
  color: purple !important;
  margin-top: 5px;
}