:root {
    --block-font: "DM Sans", sans-serif;
    --block-font-two: "Koulen", sans-serif;
    --block-gray: #5D6B81;
    --block-gray-rgb: 93, 107, 129;
    --block-base: #a08be0;
    --block-border: #65dbff;
    --block-index: #fcfcfc;
    --block-base-rgb: 98, 50, 248;
    --block-primary: #FEB72B;
    --block-primary-rgb: 254, 183, 43;
    --block-black: #243855;
    --block-black-rgb: 36, 56, 85;
    --block-white: #ffffff;
    --block-white-rgb: 255, 255, 255;
    --block-bdr-color: #E7E7E8;
    --block-bdr-color-rgb: 231, 231, 232;
    --black-font: "Press Start 2P", sans-serif;
    --black-base: #a08be0;
    --black-white: #ffffff;
    --black-black: #000000;
  }
  html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* only hide horizontal scroll */
  overflow-y: auto;
}

  /* Custom Cursor */
  .custom-cursor__cursor {
    width: clamp(15px, 2vw, 25px);
    height: clamp(15px, 2vw, 25px);
    border-radius: 50%;
    border: 1px solid var(--block-base);
    transition: all 0.2s ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 999991;
  }
  
  .custom-cursor__cursor-two {
    width: clamp(6px, 1.2vw, 10px);
    height: clamp(6px, 1.2vw, 10px);
    border-radius: 50%;
    background-color: var(--block-base);
    opacity: 0.3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
  }
  
  .custom-cursor__hover {
    background-color: var(--block-base);
    opacity: 0.4;
  }
  
  .custom-cursor__innerhover {
    width: clamp(20px, 2.5vw, 25px);
    height: clamp(20px, 2.5vw, 25px);
    opacity: 0.4;
  }
  
  @media (hover: none) and (pointer: coarse) {
    .custom-cursor__cursor,
    .custom-cursor__cursor-two {
      display: none;
    }
  }
  /*right cornor*/
  .follow-banner {
    position: fixed;
    top: 80px;
    right: 10px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.05); /* subtle glassy look */
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }
  
  .follow-banner a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  
  .follow-text {
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }
  
  .x-icon-circle {
    background-color: #ffffff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .x-icon-circle i {
    color: #000000;
    font-size: 18px;
  }
  
  /* Hover Effect */
  .follow-banner:hover {
    background-color: #ffffff;
    box-shadow: 0 0 18px #ffffff;
  }
  
  .follow-banner:hover .follow-text {
    color: #000000;
  }
  
  .follow-banner:hover .x-icon-circle {
    background-color: #000000;
  }
  
  .follow-banner:hover .x-icon-circle i {
    color: #ffffff;
  }
  
  /* Wrapper Section */
  .blockzillas-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #105252 0%, #1a123b 50%, #431871 100%);
    background-size: cover;
    font-family: var(--black-font);
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    color: var(--black-white);
    line-height: 1.4;
    text-align: center;
    padding: clamp(1rem, 4vw, 2rem);

  }
  
  
  /* Title */
  .blockzillas-title {
    font-family: var(--black-font);
    font-size: clamp(1.2rem, 5vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    color: var(--black-white);
    overflow: hidden;
    border-right: 2px solid var(--black-base);
    animation: blinkCursor 0.7s step-end infinite;
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 3vw, 2rem);
    word-break: break-word;
    text-transform: uppercase;
      margin-top:70px;
  }
  
  @keyframes blinkCursor {
    50% {
      border-color: transparent;
    }
  }
  p#sub-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--black-white);
    margin-top: 1rem;
    margin-bottom: 2rem; /* 👈 adds space below */
    white-space: normal;
    
  }
  @keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    20%, 60% { transform: translate(-2px, 0); }
    40%, 80% { transform: translate(2px, 0); }
  }
  
  .vibrate-letter {
    display: inline-block;
    animation: shake 0.15s ease-in-out 2; /* shake twice quickly */
  }
  
  .countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .countdown-box {
    width: 90px; /* Fixed width */
    height: 90px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
  
    border: 3px solid;
    border-image: linear-gradient(135deg, #00CFFF, #9B36D8, #E034D9) 1;
  }
  
  .countdown-box h2 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    width: 100%;           /* ensures text doesn't overflow */
    text-align: center;
    white-space: nowrap;
  }
  
  .countdown-box p {
    margin: 5px 0 0;
    font-size: 16px;
    text-align: center;
  }
  
  
 
  .footer-bar {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 6px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* This ensures vertical centering */
    font-family: 'Koulen', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    z-index: 10;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    gap: 10px; /* space between items */
  }
  .footer-left {
    display: flex;
   
    gap: 10px; /* space between items */
    color: #00ff00;
  }
.footer-left {
  margin-left: 20px;
}

/* Earn Whitelist Button (same style as follow-banner) */
.earn-whitelist-btn {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00ff00;
  cursor: pointer;

  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}

/* Hover: exactly like your follow banner */
.earn-whitelist-btn:hover {
  background-color: #ffffff;
  box-shadow: 0 0 18px #ffffff;
  color: #000000;
}


  .hashtag {
    display: flex;
    align-items: center;
  }
  
  .separator {
    margin: 0 5px;
  }
  
  
  .footer-icon {
    font-size: 2.5rem; /* Match the surrounding text better */
    margin-right: 2px; /* Small space between # and text */
    vertical-align: middle;
    position: relative;
    top: 3px; /* Optional: fine-tune vertical alignment */
  }
 
  
  #audio-control {
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    white-space: nowrap;
    max-width: 95vw;
    overflow: hidden;
    gap: 6px; /* adds spacing between icon and text */
  }
  
  #audio-control button {
    background: transparent;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  #audioStatus {
    color: white;
    margin-left: 0px;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 13px;
    margin-top: 6px;
    white-space: nowrap;
  }
  
  
  .mint-soon-banner {
    text-align: center;
    margin-top: 40px;
    padding: 0 10px;
  }
  
  .mint-soon-banner h1 {
    font-family: 'Luckiest Guy', Arial, sans-serif;
    text-transform: uppercase;
    display: inline-block;
    flex-wrap: wrap;
  }
  
  .mint-soon-banner span {
    font-size: clamp(20px, 7vw, 60px); /* Responsive font size */
    color: #00ff00;
    display: inline-block;
    animation: bounce 0.4s ease infinite alternate;
    position: relative;
    text-shadow: 2px 2px 0 #000, 3px 3px 10px #000;
    line-height: 1;
  }
  
  /* Animation delays */
  .mint-soon-banner span:nth-child(1) { animation-delay: 0s; }
  .mint-soon-banner span:nth-child(2) { animation-delay: 0.1s; }
  .mint-soon-banner span:nth-child(3) { animation-delay: 0.2s; }
  .mint-soon-banner span:nth-child(4) { animation-delay: 0.3s; }
  .mint-soon-banner span:nth-child(5) { animation-delay: 0.4s; }
  .mint-soon-banner span:nth-child(6) { animation-delay: 0.5s; }
  .mint-soon-banner span:nth-child(7) { animation-delay: 0.6s; }
  .mint-soon-banner span:nth-child(8) { animation-delay: 0.7s; }
  .mint-soon-banner span:nth-child(9) { animation-delay: 0.8s; }
  
  @keyframes bounce {
    100% {
      top: -20px;
      text-shadow:
        0 1px 0 #ccc,
        0 2px 0 #ccc,
        0 3px 0 #ccc,
        0 4px 0 #ccc,
        0 5px 0 #ccc,
        0 6px 0 #ccc,
        0 7px 0 #ccc,
        0 8px 0 #ccc;
    }
  }
  /* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 40px; /* decreased height */
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  
  /* Subtle glass effect */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* straight bottom line */
  border-radius: 0; /* remove round edges */
}

/* Background when scrolled */
.navbar.scrolled {
  background: rgba(40, 40, 40, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navbar container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px; /* exact height of navbar */
}

/* Logo */
.nav-logo img {
  height: 60px; /* slightly smaller logo to fit reduced navbar */
  width: 70px;
  
}

/* Nav Links */
.nav-links {
  font-family: 'Koulen', sans-serif;
  list-style: none;
  display: flex;
  gap: 30px;
  flex: 1; /* take remaining space opposite logo */
  justify-content: center; /* center links horizontally */
  align-items: center; /* center links vertically */
  margin: 0;
  padding: 0;
  margin-left:500px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #a08be0;
}

/* Hamburger */

/* Hamburger default hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 10000; /* on top of everything */
  margin-top:-20px;

 
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  transition: all 0.3s ease;
  
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.bg-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* BASE WORD STYLE */
.word {
  position: absolute;
  font-family: 'Koulen', sans-serif;
  font-size: 70px;                     /* smaller + cleaner */
  opacity: 1;                       /* more visible */
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: blur(0px);
  animation: softFloat 5s ease-in-out infinite alternate;
  font-weight: 900;
}

/* COLORS + GLOW */
.w1 {
  color: #eeff00;
  text-shadow: 0 0 20px #ebff3b, 0 0 45px #dad61d;
}

.w2 {
  color: #00ffff;
  text-shadow: 0 0 20px #21b5ff, 0 0 45px #008cff;
}

.w3 {
  color: #6dd30e;
  text-shadow: 0 0 20px #1ea312, 0 0 45px #00ff22;
}

/* POSITIONING — cleaner layout */
.w1 { top: 30%; left: 8%; --rot: -10deg; }
.w2 { top: 48%; right: 10%; --rot: -10deg; }
.w3 { bottom: 15%; left: 15%; transform: translateX(-50%); --rot: -10deg; }

/* ANIMATION */
@keyframes softFloat {
  0%   { transform: translateY(0px) scale(1) rotate(var(--rot)); }
  100% { transform: translateY(-12px) scale(1.04) rotate(var(--rot)); }
}
.moving-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* Star group size */
.star-group {
  position: absolute;
  width: 40px;
  height: 40px;
}

/* FIXED POSITIONS — LEFT SIDE */
.star-top-left {
  top: 12%;
  left: 40%;
}

.star-middle-left {
  top: 40%;
  left: 90%;
}

.star-bottom-left {
  bottom: 11%;
  left: 3%;
}
.star-bottom-right{
  bottom: 10%;
  left: 70%;
}
/* Neon green glowing star */
.star {
  width: 40px;
  height: 40px;
  position: absolute;
  background: #00ff66;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  filter: drop-shadow(0 0 10px #00ff66)
          drop-shadow(0 0 20px #00ff66)
          drop-shadow(0 0 30px #00ff66);
}

/* Animations */
.star-left {
  animation: rotateStar 6s linear infinite;
}

.star-right {
  animation: rotateStarReverse 6s linear infinite;
}

@keyframes rotateStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes rotateStarReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

/* Mobile nav links (overlay style) */
/* Mobile nav links as full-screen overlay */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #431871; /* full purple */
    gap: 40px;
    padding: 0;
    margin: 0;
    display: none; /* hidden by default */
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: #a08be0; /* highlight on hover */
  }

  .hamburger {
    display: flex;
    margin-left: auto; /* right side */
  }
}

/* Mobile nav links */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between; /* ensures logo left, hamburger right */
    align-items: center;
  }

}


/* Medium Devices (Tablet) */
@media (max-width: 1024px) {
  .navbar {
    padding: 8px 30px;
  }

  .nav-container {
    height: 45px;
  }

  .nav-logo img {
    height: 50px;
    width: auto;

  }

  .nav-links {
    gap: 30px;
    margin-left: 0; /* remove fixed margin for better centering */
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

/* Small Devices (Mobile) */
@media (max-width: 768px) {
  .navbar {
    padding: 6px 20px;
  }

  .nav-container {
    flex-direction: column; /* stack logo and links */
    height: auto;
    gap: 8px;
  }

  .nav-logo img {
    height: 45px;
    width: auto;
    margin-left:-300px;
    align-items: center;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap; /* wrap links if they exceed screen width */
    justify-content: center;
    margin-left: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
  .navbar {
    padding: 5px 15px;
  }

  .nav-logo img {
    height: 40px;
    width: auto;
    margin-left:-150px;
    margin-top:10px;
  }

  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}


/*media query*/
/* Extra large desktops */
@media (min-width: 1320px) {
  .blockzillas-wrapper {
    
    font-size: 1.5rem;
    padding: clamp(2rem, 5vw, 3rem);
  }

  .blockzillas-title {
   font-size: clamp(1.2rem, 5vw, 4rem);
    padding: clamp(1.5rem, 4vw, 3rem);
    margin-top: 70px;
  }

  p#sub-text {
     font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Large desktops/laptops */
@media (min-width: 1200px) and (max-width: 1319px) {
  .blockzillas-wrapper {
    font-size: 1.3rem;
    padding: clamp(1.2rem, 3vw, 2.5rem);
  }

  .blockzillas-title {
    font-size: 4rem;
    padding: clamp(1.2rem, 2.5vw, 2.5rem);
  }

  p#sub-text {
    font-size: 1.5rem;
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
  }
}

/* Medium desktops/laptops */
@media (min-width: 992px) and (max-width: 1199px) {
  .blockzillas-wrapper {
    font-size: 1.2rem;
    padding: clamp(1rem, 2.5vw, 2rem);
  }

  .blockzillas-title {
    font-size: 3.5rem;
    padding: clamp(1rem, 2vw, 2rem);
  }

  p#sub-text {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .blockzillas-wrapper {
    font-size: 1rem;
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .blockzillas-title {
    font-size: 3rem;
    padding: clamp(0.8rem, 2vw, 1.5rem);
  }

  p#sub-text {
    font-size: 1.2rem;
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blockzillas-wrapper {
    font-size: 0.9rem;
    padding: clamp(0.8rem, 3vw, 1.2rem);
  }

  .blockzillas-title {
    font-size: 2rem;
    padding: clamp(0.6rem, 2vw, 1rem);
    line-height: 1.2;
  }

  p#sub-text {
    font-size: 1rem;
    margin-top: 0.6rem;
    margin-bottom: 1.2rem;
  }
}

/* Extra small devices */
@media (max-width: 540px) {
  .blockzillas-wrapper {
    font-size: 0.85rem;
    padding: clamp(0.6rem, 2vw, 1rem);
  }

  .blockzillas-title {
    font-size: 1.6rem;
    padding: clamp(0.5rem, 2vw, 0.8rem);
    line-height: 1.1;
    margin-top:120px;
  }

  p#sub-text {
    font-size: 0.9rem;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
  }
}
  /*media query counter container */
  @media (min-width: 1320px) {
    .countdown-container {
      gap: 20px;
      margin-top: 25px;
    }
  
    .countdown-box {
      width: 90px;
      height: 90px;
      
    
    }
  
    .countdown-box h2 {
      font-size: 28px;
    }
  
    .countdown-box p {
      font-size: 18px;
    }
  }
  
  @media (min-width: 1200px) and (max-width: 1319px) {
    .countdown-container {
      gap: 20px;
      margin-top: 22px;
    }
  
    .countdown-box {
      width: 90px;
      height: 90px;
      
      
    }
  
    .countdown-box h2 {
      font-size: 28px;
    }
  
    .countdown-box p {
      font-size: 18px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .countdown-container {
      gap: 18px;
      margin-top: 20px;
    }
  
    .countdown-box {
      width: 90px;
      height: 90px;
      
    }
  
    .countdown-box h2 {
      font-size: 26px;
    }
  
    .countdown-box p {
      font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    .countdown-container {
      gap: 12px;
      margin-top: 16px;
    }
  
    .countdown-box {
      width: 80px;
      height: 80px;
    
      border-width: 2px;
    }
  
    .countdown-box h2 {
      font-size: 22px;
    }
  
    .countdown-box p {
      font-size: 14px;
    }
  }
  @media (max-width: 540px) {
    .countdown-container {
      gap: 10px;
      margin-top: 12px;
    }
  
    .countdown-box {
      width: 70px;
      height: 70px;
     
      border-width: 2px;
    }
  
    .countdown-box h2 {
      font-size: 18px;
    }
  
    .countdown-box p {
      font-size: 12px;
    }
  }
  /*follow X*/
  /* ≥ 1320px — Extra large desktops */
@media (min-width: 1320px) {
  .follow-banner {
    top: 80px;
    right: 10px;

    gap: 12px;
  }

  .follow-text {
    font-size: 14px;
  }

  .x-icon-circle {
    width: 30px;
    height: 30px;
  }

  .x-icon-circle i {
    font-size: 16px;
  }
}

/* 1200px–1319px — Large desktops/laptops */
@media (min-width: 1200px) and (max-width: 1319px) {
  .follow-banner {
    top: 80px;
    right: 10px;
    gap: 10px;
  }

  .follow-text {
    font-size: 13.5px;
  }

  .x-icon-circle {
    width: 28px;
    height: 28px;
  }

  .x-icon-circle i {
    font-size: 15px;
  }
}

/* 992px–1199px — Medium desktops/laptops */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .follow-banner {
    top: 80px;
    right: 10px;
    
    gap: 9px;
  }

  .follow-text {
    font-size: 13px;
  }

  .x-icon-circle {
    width: 26px;
    height: 26px;
  }

  .x-icon-circle i {
    font-size: 14px;
  }
}

/* 768px–991px — Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .follow-banner {
    top: 80px;
    right: 14px;
    
    gap: 8px;
  }

  .follow-text {
    font-size: 12px;
  }

  .x-icon-circle {
    width: 25px;
    height: 25px;
  }

  .x-icon-circle i {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .follow-banner {
    top: 80px;
    right: 10px;
    gap: 8px;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  }

  .follow-banner a {
    gap: 8px;
  }

  .follow-text {
    font-size: 12px;
    max-width: 160px;
    text-align: right;
  }

  .x-icon-circle {
    width: 26px;
    height: 26px;
  }

  .x-icon-circle i {
    font-size: 14px;
  }
}

  
@media (max-width: 540px) {
  .follow-banner {
    top: 80px;
    right: 8px;
   
    gap: 6px;
    border-radius: 24px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
  }

  .follow-banner a {
    gap: 6px;
  }

  .follow-text {
    font-size: 10.5px;
    line-height: 1.2;
    max-width: 120px;
    text-align: right;
  }

  .x-icon-circle {
    width: 22px;
    height: 22px;
  }

  .x-icon-circle i {
    font-size: 12px;
  }
}

/*audio*/
@media (min-width: 992px) and (max-width: 1199px) {
  #audio-control button {
    font-size: 26px;
  }

  #audioStatus {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #audio-control button {
    font-size: 24px;
  }

  #audioStatus {
    font-size: 11px;
    margin-top: 4px;
  }
}
@media (max-width: 767px) {
  #audio-control {
    gap: 5px;
  }

  #audio-control button {
    font-size: 22px;
  }

  #audioStatus {
    font-size: 10px;
    margin-top: 3px;
  }
}
@media (max-width: 540px) {
  #audio-control {
    position: fixed;
    top: 110px;           /* more vertical space */
    left: 2px;           /* push as close to left edge as safely possible */
       /* reduce inner spacing */
    gap: 0;            /* smaller space between icon and text */
  }

  #audio-control button {
    font-size: 18px;
  }

  #audioStatus {
    font-size: 8px;
    margin-top: 4px;     /* vertical alignment for small text */
  }
}

/*mint soon */

/* Extra Small Mobile */
@media (max-width: 480px) {
  .mint-soon-banner span {
    font-size: clamp(16px, 7vw, 35px);
  }
  .mint-soon-banner {
    margin-top: 20px;
   
  }
}

/*Footer*/



@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-bar {
   
    font-size: 1.8rem;
  }

  .footer-right {
    gap: 8px;
  }

  .footer-icon {
    font-size: 2.4rem;
    top: 2px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-bar {
    
    font-size: 1.6rem;
    flex-direction: row; /* ✅ Force row layout */
    text-align: left;
    gap: 0; /* remove vertical spacing */
  }

  .footer-right {
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap; /* ✅ prevent wrap */
  }

  .footer-icon {
    font-size: 2.4rem;
    top: 2px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-bar {
    flex-direction: row;         /* ✅ Keep it in a row */
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
   
    gap: 0;
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;           /* ✅ Prevent items from wrapping */
    justify-content: flex-end;
  }

  .footer-left {
    white-space: nowrap;         /* ✅ Prevent domain from breaking */
  }

  .footer-icon {
    font-size: 1.7rem;
    top: 2px;
  }

  .separator {
    display: inline;             /* ✅ Keep the separator visible */
  }

  .hashtag {
    display: flex;
    align-items: center;
    white-space: nowrap;         /* ✅ Prevent hashtag break */
  }
}
@media (max-width: 540px) {
  .footer-bar {
    flex-direction: row;              
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    
    gap: 0;
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;               
  }

  .footer-left {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hashtag {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .footer-icon {
    font-size: 1.4rem;
    top: 1.9px;
  }

  .separator {
    display: inline;
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
  }

  .footer-left {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .footer-right {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hashtag {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .separator {
    margin: 0 6px; /* ✅ Balanced space around | */
    font-size: 1rem;
    display: inline-block;
  }

  .footer-icon {
    font-size: 1.4rem;
    top: 2px;
  }
}
@media (max-width: 320px) {
  .footer-bar {
    display: flex;
    flex-direction: column; /* 👈 Now both will stack vertically */
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    text-align: center; /* optional */
    margin-bottom:-10px;
  
  }

  .footer-left {
   
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .footer-right {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hashtag {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    white-space: nowrap;
    margin-left: 0; /* column view me negative margin hata dein */
  }

  .separator {
    font-size: 0.9rem;
    display: inline-block;
  }

  .footer-icon {
    font-size: 1.2rem;
    top: 2px;
  }
}

@media(max-width:375px){
 .bg-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* BASE WORD STYLE */
.word {
  position: absolute;
  font-family: 'Koulen', sans-serif;
  font-size: 30px;                     /* smaller + cleaner */
  opacity: 1;                       /* more visible */
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: blur(0px);
  animation: softFloat 5s ease-in-out infinite alternate;
  font-weight: 900;
} 
/* POSITIONING — cleaner layout */
.w1 { top: 14%; left: 8%; --rot: -10deg; }
.w2 { top: 47%; right: 10%; --rot: -10deg; }
.w3 { bottom: 19%; left: 13%; transform: translateX(-50%); --rot: -10deg; }

.earn-whitelist-btn {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2px 10px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00ff00;
  cursor: pointer;
  margin-left:-170px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}



/* FIXED POSITIONS — LEFT SIDE */
.star-top-left {
  top: 15%;
  left: 30%;
}

.star-middle-left {
  top: 50%;
  left: 90%;
}

.star-bottom-left {
  bottom: 11%;
  left: 3%;
}
.star-bottom-right{
  bottom: 20%;
  left: 70%;
}
/* Neon green glowing star */
.star {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #00ff66;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  filter: drop-shadow(0 0 10px #00ff66)
          drop-shadow(0 0 20px #00ff66)
          drop-shadow(0 0 30px #00ff66);
}

/* Animations */
.star-left {
  animation: rotateStar 6s linear infinite;
}

.star-right {
  animation: rotateStarReverse 6s linear infinite;
}
}
@media (min-width:376px) and (max-width:430px) {
.bg-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* BASE WORD STYLE */
.word {
  position: absolute;
  font-family: 'Koulen', sans-serif;
  font-size: 30px;                     /* smaller + cleaner */
  opacity: 1;                       /* more visible */
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: blur(0px);
  animation: softFloat 5s ease-in-out infinite alternate;
  font-weight: 900;
} 
/* POSITIONING — cleaner layout */
.w1 { top: 14%; left: 8%; --rot: -10deg; }
.w2 { top: 53%; right: 10%; --rot: -10deg; }
.w3 { bottom: 19%; left: 5%; transform: translateX(-50%); --rot: -10deg; }

.earn-whitelist-btn {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2px 10px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00ff00;
  cursor: pointer;
  margin-left:-20px;
  margin-top:-30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}



/* FIXED POSITIONS — LEFT SIDE */
.star-top-left {
  top: 15%;
  left: 30%;
}

.star-middle-left {
  top: 50%;
  left: 90%;
}

.star-bottom-left {
  bottom: 11%;
  left: 3%;
}
.star-bottom-right{
  bottom: 10%;
  left: 90%;
}
/* Neon green glowing star */
.star {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #00ff66;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  filter: drop-shadow(0 0 10px #00ff66)
          drop-shadow(0 0 20px #00ff66)
          drop-shadow(0 0 30px #00ff66);
}

/* Animations */
.star-left {
  animation: rotateStar 6s linear infinite;
}

.star-right {
  animation: rotateStarReverse 6s linear infinite;
}

}
@media(max-width:540px){
 
.bg-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* BASE WORD STYLE */
.word {
  position: absolute;
  font-family: 'Koulen', sans-serif;
  font-size: 30px;                     /* smaller + cleaner */
  opacity: 1;                       /* more visible */
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: blur(0px);
  animation: softFloat 5s ease-in-out infinite alternate;
  font-weight: 900;
} 
/* POSITIONING — cleaner layout */
.w1 { top: 14%; left: 8%; --rot: -10deg; }
.w2 { top: 53%; right: 10%; --rot: -10deg; }
.w3 { bottom: 19%; left: 5%; transform: translateX(-50%); --rot: -10deg; }

.earn-whitelist-btn {
  background-color: rgba(255, 255, 255, 0.05);
 
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00ff00;
  cursor: pointer;
  margin-left:-20px;
  margin-top:-30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}



/* FIXED POSITIONS — LEFT SIDE */
.star-top-left {
  top: 15%;
  left: 30%;
}

.star-middle-left {
  top: 50%;
  left: 90%;
}

.star-bottom-left {
  bottom: 11%;
  left: 3%;
}
.star-bottom-right{
  bottom: 10%;
  left: 90%;
}
/* Neon green glowing star */
.star {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #00ff66;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  filter: drop-shadow(0 0 10px #00ff66)
          drop-shadow(0 0 20px #00ff66)
          drop-shadow(0 0 30px #00ff66);
}

/* Animations */
.star-left {
  animation: rotateStar 6s linear infinite;
}

.star-right {
  animation: rotateStarReverse 6s linear infinite;
}
    


}
@media(min-width:430px) and (max-width:768px){
.bg-words {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* BASE WORD STYLE */
.word {
  position: absolute;
  font-family: 'Koulen', sans-serif;
  font-size: 30px;                     /* smaller + cleaner */
  opacity: 1;                       /* more visible */
  letter-spacing: 3px;
  text-transform: uppercase;
  filter: blur(0px);
  animation: softFloat 5s ease-in-out infinite alternate;
  font-weight: 900;
} 
/* POSITIONING — cleaner layout */
.w1 { top: 14%; left: 8%; --rot: -10deg; }
.w2 { top: 53%; right: 10%; --rot: -10deg; }
.w3 { bottom: 19%; left: 5%; transform: translateX(-50%); --rot: -10deg; }

.earn-whitelist-btn {
  background-color: rgba(255, 255, 255, 0.05);
 
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00ff00;
  cursor: pointer;
  margin-left:-20px;
  margin-top:-30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  display: inline-block;
}



/* FIXED POSITIONS — LEFT SIDE */
.star-top-left {
  top: 15%;
  left: 30%;
}

.star-middle-left {
  top: 50%;
  left: 90%;
}

.star-bottom-left {
  bottom: 11%;
  left: 3%;
}
.star-bottom-right{
  bottom: 10%;
  left: 90%;
}
/* Neon green glowing star */
.star {
  width: 30px;
  height: 30px;
  position: absolute;
  background: #00ff66;

  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );

  filter: drop-shadow(0 0 10px #00ff66)
          drop-shadow(0 0 20px #00ff66)
          drop-shadow(0 0 30px #00ff66);
}

/* Animations */
.star-left {
  animation: rotateStar 6s linear infinite;
}

.star-right {
  animation: rotateStarReverse 6s linear infinite;
}
    
}

/* Dropdown parent */
.dropdown {
  position: relative;
}

/* White dropdown box */
.dropdown-menu {
  font-family: 'Koulen', sans-serif;
  position: absolute;
  top: 110%;
  right: 0; /* aligns nicely under Earn Whitelist */
  background: #ffffff;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 220px;
  display: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  z-index: 1000;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: #100853;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background: #f2f4f7;
  color: #6c5ce7; /* subtle purple highlight */
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
