body {
font-family: 'Playfair Display', serif;
margin: 0;
padding: 0;
background-color: #000; /* optional if you want dark backdrop */
}

#hype-price-pill {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 255, 153, 0.15); /* translucent mint green */
  color: #00ff99;
  border: 1px solid #00ff99;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.pill-logo {
  width: 16px;
  height: 16px;
}

.menu-nix {
width: 30px;
height: 25px;
position: fixed;
top: 20px;
right: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
z-index: 999;
}

.menu-nix span {
display: block;
height: 4px;
background-color: white;
border-radius: 2px;
transition: all 0.3s ease;
}

.menu-nix.active span:nth-child(1) {
transform: translateY(10px) rotate(45deg);
}

.menu-nix.active span:nth-child(2) {
opacity: 0;
}

.menu-nix.active span:nth-child(3) {
transform: translateY(-10px) rotate(-45deg);
}

/* NFT Strip */
.scroll-container {
width: 100vw;
height: 100vh;
overflow: hidden;
top: 0;
left: 0;
position: absolute;
z-index: 1;
}

.scroll-track {
display: flex;
animation: scrollLeft 40s linear infinite;
}
.scroll-track img {
width: calc(100vw / 5);
height: 100vh;
object-fit: cover;
flex-shrink: 0;
}

@keyframes
scrollLeft {
0% { transform: translateX(0%); }
100% { transform: translateX(-50%); }
}

/* Text Overlay */
.centered-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
color: white;
text-align: center;
z-index: 10;
font-family: 'playfair display' serif;
}

.headline {
font-size: 40px;
font-weight: 800;
}
.subheadline {
font-size: 200px;
margin-top: 10px;
font-weight: 40;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: #00dd88;
color: black;
text-decoration: none;
border-radius: 4px;
font-weight: bold;
}
.cta-button:hover {
background: #00bb77;
}

/* Fade-in */
.fade-in {
opacity: 0;
animation: fadeIn 2.5s ease-in-out forwards;
}
@keyframes

fadeIn {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}

/* --- MENU NIX PANEL --- */
.menu-nix-panel {
position: fixed;
top: 0;
right: 0;
width: 220px;
height: 100vh;
background: rgba(0, 0, 0, 0.85);
transform: translateX(100%);
transition: transform 0.3s ease;
z-index: 9999;
padding: 60px 20px;
pointer-events: none; /* 👈 Prevent clicks when hidden */
}

.menu-nix-panel.active {
transform: translateX(0);
pointer-events: auto; /* 👈 Enable clicks only when active */
}

.menu-nix-panel ul {
list-style: none;
padding: 0;
margin: 0;
}

.menu-nix-panel ul li {
margin-bottom: 20px;
font-size: 20px;
}

.menu-nix-panel ul li a {
color: white;
text-decoration: none;
}

.menu-nix-panel.active {
right: 0;
}

/* --- MENU ICON (Hamburger) --- */
/* MENU ICON (three lines) */
.menu-nix-icon {
width: 30px;
height: 25px;
position: fixed;
top: 20px;
right: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
z-index: 999;
}

.menu-nix-icon span {
display: block;
height: 4px;
background-color: white;
border-radius: 2px;
transition: all 0.3s ease;
}

/* SLIDING PANEL */
.menu-nix-panel {
position: fixed;
top: 0;
right: -250px;
width: 250px;
height: 100%;
background-color: rgba(0, 0, 0, 0.95);
padding: 60px 20px;
transition: right 0.3s ease;
z-index: 998;
}

.menu-nix-panel.active {
right: 0;
}

.menu-nix-panel ul {
list-style: none;
padding: 0;
}

.menu-nix-panel li {
margin: 20px 0;
}

.menu-nix-panel a {
color: white;
text-decoration: none;
font-size: 18px;
}

.scroll-container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.scroll-track {
  display: flex;
  animation: scrollLeft 40s linear infinite;
}

.scroll-track img {
  width: calc(100vw / 6); /* Adjust to fit all 6 NFTs */
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes
 scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Text in front */
.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  z-index: 5;
  text-align: center;
}

/* Footer at the bottom */
.footer-overlay {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.footer-text {
  font-size: 14px;
  color: white;
  opacity: 0.8;
  margin: 0;
  text-align: center;
}

* {
  box-sizing: border-box;
}
/* 🔋 Capsule style for homepage headline */
.capsule.homepage-headline {
  background-color: rgba(0, 255, 153, 0.25);
  border: 2px solid #00ff99;
  border-radius: 50px;
  padding: 16px 32px;
  margin: 30px auto;
  text-align: center;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.4);
  animation: pulseGlow 2.5s ease-in-out infinite;
}


/* 💚 Typing animation */
#typing-text {
  color: white;
  font-size: 2em;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ff99;
  width: 100%;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes
 typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes
 blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00ff99 }
}

@keyframes
 pulseGlow {
  0%   { box-shadow: 0 0 10px rgba(0, 255, 153, 0.2); }
  50%  { box-shadow: 0 0 30px rgba(0, 255, 153, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 153, 0.2); }
}
.capsule {
  background-color: rgba(0, 255, 153, 0.3);  /* transparent mint */
  border: 2px solid rgba #00ff99;
  border-radius: 50px;
  padding: 10px 26px;
  width: fit-content;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.4);
}

.capsule {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes
 pulseGlow {
  0% { box-shadow: 0 0 10px rgba(0, 255, 153, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 153, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 153, 0.2); }
}

.footer-text {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  animation: blink 2s infinite;
}

.menu-icon div {
  width: 30px;
  height: 4px;
  background-color: white;
  margin: 6px auto;
  transition: 0.4s;
}

@keyframes
 blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.menu-options {
  display: none;
  position: absolute;
  top: 70px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px;
  border-radius: 6px;
  z-index: 10;
}

.menu-options.show {
  display: block;
}


/* === MENU PANEL STYLES === */
.menu-nix-panel {
  position: fixed;
  top: 60px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 15px 25px;
  z-index: 999;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.menu-nix-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-nix-panel ul li {
  margin-bottom: 12px;
}

.menu-nix-panel ul li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.menu-nix-panel.active {
  display: block;
}

.menu-nix {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-nix span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* OPTIONAL: Add hover animation */
.menu-nix:hover span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-nix:hover span:nth-child(2) {
  opacity: 0;
}

.menu-nix:hover span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes
 fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.storyline-container {
  max-width: 800px;
  margin: 100px auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* transparent black overlay */
  color: white;
  font-family: 'Morganite', sans-serif;
  line-height: 1.6;
  font-size: 18px;
  border-radius: 10px;
}
.storyline-container h2, .storyline-container h3 {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}

.storyline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.7); /* translucent black */
  color: white;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  padding: 50px 20px;
}

.storyline-content {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.07); /* soft transperent bg */
  padding: 20px 30px;
  border-radius: 10px;
  font-family: 'Morganite', sans-serif;
  line-height: 1.8;
  font-size: 10px;
}

.storyline-content {
  background: rgba(255, 255, 255, 0.07); /* translucent white */
  backdrop-filter: blur(12px); /* glass blur */
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 30px;
  color: #ffffff;
  width: 90%;
  max-width: 950px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1); /* faint border for visibility */
}

.storyline-box {
  background-color: transparent;
  backdrop-filter: blur(6px);          /* Softens background */
  border-radius: 12px;
  padding: 30px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.08); /* subtle glow */
  transition: background-color 0.3s ease;
}



.storyline-content li {
 margin-bottom: 14px;

}

.storyline-content button {
  margin-top: 30px;
  padding: 10px 20px;
  background: #ffffff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.utilities-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  flex-direction: column;
  text-align: center;
}

.utilities-content {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Morganite', sans-serif;
  animation: fadeInUp 0.7s ease-out;
}

.coming-soon-text {
  color: #fff;
  font-size: 32px;
  font-family: 'Morganite', sans-serif;
  letter-spacing: 2px;
  animation: blink 1.5s infinite ease-in-out;
  text-align: center;
}

@keyframes
 pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.3; }
}

@keyframes
 fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.coming-soon-text {
  font-size: 32px;
  color: white;
  animation: blink 1.5s infinite;
  text-align: center;
}

@keyframes
 blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media
 (max-width: 768px) {
  #hype-price-pill {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .pill-logo {
    height: 12px;
  }

  h1, h2, h3 {
    font-size: 22px !important;
    line-height: 1.2em;
  }

  .storyline-content p {
    font-size: 14px;
  }

  .sliding-background {
    flex-direction: column;
    gap: 0;
    transform: none !important;
    animation: none !important;
  }

  .sliding-background img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media
 (max-width: 768px) {
  #hype-price-pill {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .pill-logo {
    height: 12px;
  }

  h1, h2, h3 {
    font-size: 22px !important;
    line-height: 1.2em;
  }

  .storyline-content p {
    font-size: 14px;
  }

  .sliding-background {
    flex-direction: column;
    gap: 0;
    transform: none !important;
    animation: none !important;
  }

  .sliding-background img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

#typing-text {
  color: white;
  font-size: 2em;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ff99;
  width: 100%;
  animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes
 typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes
 blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00ff99 }
}

/* ✅ Remove horizontal scroll from entire page */
body, html {
  overflow-x: hidden;
  width: 100%;
}

@media
 (max-width: 600px) {
  #hype-price-pill {
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 6px 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slider-strip {
  display: flex;
  width: calc(6 * 100vw); /* only if you have exactly 6 images */
  height: 100%;
  animation: slideLeft 40s linear infinite;
}

.slider-strip img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}


.hype-price-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 255, 170, 0.15);
  color: #00ffaa;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #00ffaa;
}

.logo-icon {
  height: 14px;
  width: 14px;
  object-fit: contain;
  display: block;
}


  .storyline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2); /* lighter and more transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
  }

  .storyline-content {
    background: rgba(0, 0, 0, 0.04); /* very light dark overlay */
    border: none;
    padding: 30px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
  }

  .storyline-content h1,
  .storyline-content h2,
  .storyline-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #3fffbc;
    margin-top: 30px;
    font-weight: bold;
  }

  .storyline-content h2 {
    font-size: 20px;
    color: #00ffd5;
  }

  .storyline-content h3 {
    font-size: 17px;
    color: #f5cb5c;
  }

  .storyline-content ul {
    list-style: disc;
    padding-left: 20px;
  }

  .storyline-content ul li {
    margin-bottom: 8px;
  }

  .storyline-content p strong {
    color: #00ffd5;
  }

  .storyline-content p {
    margin-bottom: 14px;
  }

  .storyline-content button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    background: #f5cb5c;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }



  @media screen and (max-width: 768px) {
    .storyline-content {
      font-size: 14px;
      padding: 20px;
    }

  }


  .section-box {
  max-width: 90%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .section-box {
    font-size: 14px;
    padding: 1rem;
  }

  #price-pill {
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 4px 8px;
  }

  .modal-content {
    width: 95% !important;
    padding: 1rem !important;
    font-size: 14px !important;
  }

  .two-column {
    flex-direction: column;
    gap: 1.5rem;
  }

  .two-column > div {
    width: 100% !important;
    text-align: center;
  }
}
