: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;
  }
  
  /* 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: 20px;
    right: 20px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.05); /* subtle glassy look */
    padding: 10px 18px;
    border-radius: 40px;
    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: 12px;
    text-decoration: none;
  }
  
  .follow-text {
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    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, 6vw, 5rem);
    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;
  }
  
  @keyframes blinkCursor {
    50% {
      border-color: transparent;
    }
  }
  p#sub-text {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    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: 100px; /* Fixed width */
    height: 100px; /* 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: 28px;
    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: 18px;
    text-align: center;
  }
  
  
  
  .footer-bar {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* This ensures vertical centering */
    font-family: 'Koulen', sans-serif;
    font-size: 2rem;
    color: #fff;
    z-index: 10;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    gap: 10px; /* space between items */
  }
  
  .hashtag {
    display: flex;
    align-items: center;
  }
  
  .separator {
    margin: 0 5px;
  }
  
  
  .footer-icon {
    font-size: 2.8rem; /* 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: 20px;
    left: 20px;
    z-index: 9999;
    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: 6px;
    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(24px, 8vw, 64px); /* 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;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*media query*/
  @media (min-width: 1320px) {
    .blockzillas-wrapper {
      padding: clamp(2rem, 5vw, 3rem);
      font-size: clamp(1rem, 2vw, 1.5rem);
    }
  
    .blockzillas-title {
      font-size: clamp(2rem, 6vw, 6rem);
      padding: clamp(1.5rem, 4vw, 3rem);
    }
  
    p#sub-text {
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      margin-top: 1.5rem;
      margin-bottom: 2.5rem;
    }
   
  
  }
  /*media query*/
  @media (min-width: 1200px) and (max-width: 1319px) {
    /* Wrapper adjustments */
    .blockzillas-wrapper {
      padding: clamp(1.2rem, 3vw, 2.5rem);
      font-size: clamp(0.9rem, 2vw, 1.3rem);
    }
  
    /* Title size and spacing */
    .blockzillas-title {
      font-size: clamp(1.8rem, 5vw, 4rem);
      padding: clamp(1.2rem, 2.5vw, 2.5rem);
    }
  
    /* Sub-text font size and margin */
    p#sub-text {
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      margin-top: 1.2rem;
      margin-bottom: 2.5rem;
    }
    
  
  }
  
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    /* Wrapper: Slightly tighter padding and smaller base font */
    .blockzillas-wrapper {
      padding: clamp(1rem, 2.5vw, 2rem);
      font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    }
  
    /* Title: Scale down slightly */
    .blockzillas-title {
      font-size: clamp(1.5rem, 5vw, 3.5rem);
      padding: clamp(1rem, 2vw, 2rem);
    }
  
    /* Sub-text: Slightly smaller font */
    p#sub-text {
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      margin-top: 1rem;
      margin-bottom: 2rem;
    }
   
  
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Wrapper: Reduce padding and base font size */
    .blockzillas-wrapper {
      padding: clamp(1rem, 2vw, 1.5rem);
      font-size: clamp(0.8rem, 1.5vw, 1rem);
    }
  
    /* Title: Adjust size and spacing */
    .blockzillas-title {
      font-size: clamp(1.3rem, 5vw, 3rem);
      padding: clamp(0.8rem, 2vw, 1.5rem);
    }
  
    /* Sub-text: Slightly reduced size */
    p#sub-text {
      font-size: clamp(0.9rem, 1.6vw, 1.2rem);
      margin-top: 0.8rem;
      margin-bottom: 1.5rem;
    }
 
   
  }  
  @media only screen and (max-width: 767px) {
    /* Wrapper: Stack vertically and reduce padding */
    .blockzillas-wrapper {
      padding: clamp(0.8rem, 3vw, 1.2rem);
      font-size: clamp(0.7rem, 2vw, 0.9rem);
      text-align: center;
    }
  
    /* Title: Compact size, centered */
    .blockzillas-title {
      font-size: clamp(1rem, 5vw, 2rem);
      padding: clamp(0.6rem, 2vw, 1rem);
      line-height: 1.2;
    }
  
    /* Sub-text: Smaller size with spacing */
    p#sub-text {
      font-size: clamp(0.8rem, 2.5vw, 1rem);
      margin-top: 0.6rem;
      margin-bottom: 1.2rem;
    }
   
  }
  @media (max-width: 540px) {
    /* Wrapper: Tighter padding, smaller base font */
    .blockzillas-wrapper {
      padding: clamp(0.6rem, 2vw, 1rem);
      font-size: clamp(0.65rem, 1.8vw, 0.85rem);
      text-align: center;
    }
  
    /* Title: Smaller font with less padding */
    .blockzillas-title {
      font-size: clamp(0.9rem, 4.5vw, 1.6rem);
      padding: clamp(0.5rem, 2vw, 0.8rem);
      line-height: 1.1;
    }
  
    /* Sub-text: Smaller font and tighter spacing */
    p#sub-text {
      font-size: clamp(0.7rem, 2vw, 0.9rem);
      margin-top: 0.4rem;
      margin-bottom: 1rem;
    }
   
 
  }
  
  
  
  /*media query*/
  @media (min-width: 1320px) {
    .countdown-container {
      gap: 24px;
      margin-top: 25px;
    }
  
    .countdown-box {
      width: 110px;
      height: 110px;
      padding: 12px;
    }
  
    .countdown-box h2 {
      font-size: 30px;
    }
  
    .countdown-box p {
      font-size: 20px;
    }
  }
  
  @media (min-width: 1200px) and (max-width: 1319px) {
    .countdown-container {
      gap: 20px;
      margin-top: 22px;
    }
  
    .countdown-box {
      width: 100px;
      height: 100px;
      padding: 10px;
    }
  
    .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;
      padding: 9px;
    }
  
    .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;
      padding: 8px;
      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;
      padding: 6px;
      border-width: 2px;
    }
  
    .countdown-box h2 {
      font-size: 18px;
    }
  
    .countdown-box p {
      font-size: 12px;
    }
  }
 
 
/* ≥ 1320px — Extra large desktops */
@media (min-width: 1320px) {
  .follow-banner {
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    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: 18px;
    right: 18px;
    padding: 9px 18px;
    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: 16px;
    right: 16px;
    padding: 8px 16px;
    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: 14px;
    right: 14px;
    padding: 8px 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: 12px;
    right: 12px;
    padding: 7px 12px;
    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: 8px;
    right: 8px;
    padding: 6px 10px;
    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;
  }
}


/*Footer*/



@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-bar {
    padding: 10px 25px;
    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 {
    padding: 10px 20px;
    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;
    padding: 10px 16px;
    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;
    padding: 8px 12px;
    gap: 0;
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 6px;
    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;
    padding: 6px 10px;
  }

  .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 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 6px 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;
  }

  .separator {
    margin: 0 5px; /* ✅ Proper spacing around | */
    font-size: 0.9rem;
    display: inline-block;
  }

  .footer-icon {
    font-size: 1.2rem;
    top: 2px;
  }
}

/*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 {
    padding: 4px 8px;
    gap: 5px;
  }

  #audio-control button {
    font-size: 22px;
  }

  #audioStatus {
    font-size: 10px;
    margin-top: 3px;
  }
}
@media (max-width: 540px) {
  #audio-control {
    position: fixed;
    top: 40px;           /* more vertical space */
    left: 2px;           /* push as close to left edge as safely possible */
    padding: 2px 4px;    /* 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 */
  }
}


