* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #18181b, #000);
  color: white;
  cursor: url('/images/1f9ea.png');
}

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 9px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: #7efc00;
  border-radius: 10px;
  box-shadow: 0 0 6px #7efc00;
  transition: background 0.3s ease;
}

/* Scrollbar Thumb on Hover */
::-webkit-scrollbar-thumb:hover {
  background: #aaff66;
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
  background: black;
}

.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

#asdwd {
  color: #ccc;
  text-decoration: none;
}

#asdwd:hover {
  color: white;
  transition: color 0.3s;
}

/* HERO-PROJECTS SECTION */
.hero-projects {
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-projects .hero-content {
  margin: 0px;
}

.quesmrhd {
  font-size: 6.5rem !important; 
  margin-top: 0px;
  animation: pulse 1s infinite;
  cursor: default;
}

.hero-projects h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-projects p {
  font-size: 1.2rem;
  color: #ccc;
}

.herofasd {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* PROJECT GRID */
.project-grid {
  display: flex;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  height: 600px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PROJECT CARD STYLING */
.project-card {
  background-color: #27272a;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 65%;
  height: 70%;
  margin: 0px auto;
}

#project-card-reveal {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #111;
  color: white;
  margin: 0 auto;
}

.nameslfg {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
}

.nameslfg h2 {
    display: flex;
    align-items: center;
    font-size: 2rem;
}

#project-card-reveal > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.nameslfg h2 p {
    margin: 0px;
    font-size: 2rem;
}

.cardalfn {
    display: flex;
    width: max-content;
    align-items: center;
    height: 100%;
}

.casdasfwe2 {
  height: 100%;
}


.copy-token-container {
  position: relative;
  margin: 0px auto;

}

.copy-token-container input[type="text"] {
  padding: 8px 8px 8px 32px; /* left padding to make space for the icon */
  border: 1px solid #7efc00;
  border-radius: 4px;
  background: #121212;
  color: #7efc00;
  font-family: monospace;
  font-size: 0.9rem;
  user-select: all;
  cursor: pointer;
    width: 300px;
}

#copy-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #7efc00;
  cursor: pointer;
  font-size: 1.1rem;
  user-select: none;
  transition: color 0.3s ease;
}

#copy-icon:hover,
#copy-icon:focus {
  color: #55bb00;
  outline: none;
}


.cardalfn img {
height: 100%;        /* Keeps aspect ratio */
  border-radius: 10px;
  object-fit: cover;
}

.project-card h2 {
  font-size: 2em;
  margin-bottom: 0.5rem;
  gap: 10px;
  margin: 0px;
}

.project-card p {
  color: #aaa;
  font-size: 1.5rem;
  margin: 0px;
}

.prjcontents {
  display: grid;
  justify-content: center;
  align-items: center;
}

.prjhide {
  justify-content: center;
  align-items: center;
  display: grid
}

.tag {
  background-color: #444;
  color: #fff;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 20px;
  display: inline-block;
}

.cta {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 600px;
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: white;
  color: black;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #ddd;
}

footer {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  padding: 5px;
  background: black;
}

/* Header with navigation and search */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 0.1px solid #ccc;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.2rem;
}

.nav-links a:hover {
  color: white;
}

.project-card .expand-btn {
  margin-top: 1rem;
  font-size: 1rem;
  background-color: #7efc00 ;
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  width: 200px;
  margin: 0px auto;
}

.project-card .expand-btn:hover {
  background-color: #a6ff4d;
}

.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;

  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex; /* keep flex for layout but hidden by opacity */
  pointer-events: none; /* block interaction when hidden */
}

.modal.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#coin-out-section {
  background: radial-gradient(ellipse at center, #0a150a 0%, #000 80%);
  color: #7efc00;
  font-family: 'Courier New', monospace;
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.lab-container {
  position: relative;
  text-align: center;
}

.animated-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.animated-icon {
  height: 250px;
  opacity: 0.9;
  transition: transform 0.3s ease-in-out;
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Assign animations */
.bounce {
  animation: bounce 1.5s infinite;
}
.spin {
  animation: spin 4s linear infinite;
}
.pulse {
  animation: pulse 2s infinite;
}

.lab-titlesdasd {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 900;
  transform: rotate(-7deg);
  text-shadow:
    0 0 8px #7efc00,
    0 0 15px #0f0,
    0 0 25px #0f0,
    0 0 40px #0f0;
  animation: glitch 3s infinite;
  margin-bottom: 40px;
}

.cta-buttons {
  margin: 40px auto 60px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  background: linear-gradient(135deg, #32ff7e, #0fcfdb);
  border: 2px solid #7efc00;
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 15px 35px;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  box-shadow:
    0 0 12px #0f0,
    inset 0 0 15px #32ff7e;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transform-origin: center;
  animation: pulseGlow 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  box-shadow:
    0 0 25px #7efc00,
    inset 0 0 35px #0ff,
    0 0 40px #7efc00;
  transform: scale(1.1) rotate(-3deg);
}

.cta-btn:active {
  transform: scale(0.95) rotate(0deg);
  box-shadow:
    0 0 12px #0f0,
    inset 0 0 15px #32ff7e;
}

.buy-now {
  background: linear-gradient(135deg, #00ff94, #00d4ff);
}

.dont-miss {
  background: linear-gradient(135deg, #ff0099, #ff6600);
  color: #fff;
  border-color: #ff6600;
  box-shadow:
    0 0 12px #ff6600,
    inset 0 0 15px #ff0099;
}

.join-lab {
  background: linear-gradient(135deg, #7eff00, #00ffcc);
  box-shadow:
    0 0 12px #7eff00,
    inset 0 0 15px #00ffcc;
}

/* Animation for pulsing glow */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 0 12px #0f0,
      inset 0 0 15px #32ff7e;
  }
  50% {
    box-shadow:
      0 0 25px #7efc00,
      inset 0 0 35px #0ff;
  }
}


/* Glitch effect keyframes */
@keyframes glitch {
  0%, 20%, 40%, 60%, 80%, 100% {
    text-shadow:
      2px 0 #7efc00,
      -2px 0 #0ff,
      0 0 10px #7efc00,
      0 0 20px #0ff,
      0 0 30px #0f0,
      0 0 40px #0ff;
    transform: rotate(-7deg) translate(0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    text-shadow:
      -2px 0 #0ff,
      2px 0 #7efc00,
      0 0 15px #0f0,
      0 0 25px #0ff,
      0 0 35px #7efc00,
      0 0 45px #0f0;
    transform: rotate(-7deg) translate(5px, -3px);
  }
}



.modal-content {
  background: #101010;
  border: 2px solid #7efc00;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 30px #7efc00a0;
  max-width: 90%;
  height: 70%;
  margin: auto;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}


.lab-chart-module {
  text-align: center;
  position: relative;
}

.decode-button {
  background: transparent;
  color: #7efc00;
  border: 2px solid #7efc00;
  padding: 0.75rem 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.decode-button:hover {
  background: #7efc00;
  color: #000;
  text-shadow: 0 0 10px #000;
}

.holographic-core {
  width: 350px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #7efc00;
  border-radius: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}


@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 30px #7efc00aa, inset 0 0 30px #00ffd533;
  }
  50% {
    box-shadow: 0 0 50px #aaffffaa, inset 0 0 50px #00ffd580;
  }
}

.scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(126, 252, 0, 0.08) 2px,
    rgba(126, 252, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}

.chart-legend {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: left;
  color: #7efc00;
  z-index: 2;
  position: relative;
  display: grid;
  justify-content: center;
}

.color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: middle;
}



.modal-content h2 {
  font-size: 2rem;
  margin: 0px;
}

.modal-content p {
  color: #ccc;
  font-size: 1rem;
}

#crazyTokenChart {
    margin: 0px auto;
}

#close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  padding: 0;
}

.scroll-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: -webkit-fill-available;
}


.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}


.scroll-panel {
  flex: 0 0 75%;
  background: #151515;
  border: 1px solid #7efc00;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 320px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  box-shadow: inset 0 0 30px #7efc0040;
}

.scroll-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #7efc00;
  cursor: pointer;
}

.log-image {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #7efc00a0;
}

.log-header h3 {
  font-size: 1.1rem;
  color: #7efc00;
  margin-bottom: 0.5rem;
}

.log-body a {
  text-decoration: none;
  color: #7efc00;
}

.log-header p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0 0 1rem;
}

.log-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #eee;
  margin: 0px;
}

.highlight {
  color: #7efc00;
  font-weight: bold;
}

.left {
    margin-right: 10px;
}

.right {
    margin-left: 10px;
}

.scroll-btn:hover {
  transform: scale(1.2);
}


#close-modal:hover {
  color: #7efc00; /* example hover color */
}

.social-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.2);
}

 .announcement-full {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #7efc00;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
  }

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

.announcement-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.announcement-container {
    position: relative;
    z-index: 1;
    text-shadow: 0 0 8px #7efc00, 0 0 20px #7efc00;
  }

.countdown {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    display: inline-block;
  }

  .countdown span {
    margin: 0 0.2rem;
    font-weight: bold;
    text-shadow: 0 0 5px #7efc00, 0 0 10px #7efc00;
  }

  .label {
    font-size: 1rem;
    vertical-align: top;
    margin-left: 0.1rem;
  }

#countdown {
  font-size: 2rem;
  color: #7efc00;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.launch-live {
  font-size: 2.5rem;
  color: #00ffcc;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hall-of-fame {
  border-top: 3px solid #00ffcc44;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
box-shadow: inset 0 30px 30px -30px #00ffcc99;
}

.hall-of-fame h2 {
  font-size: 2.5rem;
  color: #00ffcc;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffcc;
}

.hall-intro {
  font-style: italic;
  color: #ccc;
  margin-bottom: 50px;
}

.coin-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.coin-chamber {
  background: #121212;
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  position: relative;
  box-shadow: 0 0 15px #00ffcc44;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.coin-chamber:hover {
  transform: scale(1.05);
}

.chamber-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00ffcc22 0%, transparent 70%);
  z-index: 0;
  animation: pulse 3s infinite;
}

.chamber-glow.red {
  background: radial-gradient(circle, #ff004422 0%, transparent 70%);
}

.chamber-glow.green {
  background: radial-gradient(circle, #00ff4422 0%, transparent 70%);
}

.coin-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  z-index: 1;
  position: relative;
}

.coin-chamber h3 {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #00ffcc;
  z-index: 1;
  position: relative;
}

.coin-desc {
  font-size: 1rem;
  color: #aaa;
  margin-top: 10px;
  z-index: 1;
  position: relative;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

.containment-unit {
  background: #061a13;
  border: 3px solid #00ffcc44;
  border-radius: 20px;
  box-shadow: 0 0 40px #00ffcc33;
  padding: 20px;
  position: relative;
  overflow: hidden;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.containment-unit:hover {
  transform: scale(1.05) rotate(-0.5deg);
}

.containment-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(ellipse at center, #00ffcc33 0%, transparent 70%);
  z-index: 0;
  animation: pulseGlow 3s infinite;
  filter: blur(20px);
}

.coin-info {
  position: relative;
  z-index: 1;
  color: #00ffcc;
  font-family: 'Orbitron', sans-serif;
}

.coin-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #00ffcc;
}

.coin-info p {
  font-size: 1rem;
  color: #ccffee;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}







#intro-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 2s ease 3s forwards;
}

.intro-text {
  text-align: center;
  color: #00ffcc;
  font-family: monospace;
  animation: flicker 1.5s infinite alternate;
}

.glitchy-text {
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #00ffcc, 0 0 20px #00ffcc;
}

.glitchy-sub {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 10px;
}

@keyframes flicker {
  from { opacity: 0.7; }
  to { opacity: 1; text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}




body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: repeating-linear-gradient(
  0deg,
  rgba(126, 252, 0, 0.05),     /* glowing green tint */
  rgba(126, 252, 0, 0.05) 1px,
  transparent 1px,
  transparent 20px
);

  animation: scrollWall 30s linear infinite;
  z-index: -1;
}

@keyframes scrollWall {
  0% { background-position: 0 0; }
  100% { background-position: 0 -1000px; }
}

.hidden {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}


.control-panel {
  background: #011;
  border-top: 1px solid #0f0;
  margin-top: 10px;
  padding: 10px;
  font-family: monospace;
  color: #0f0;
  font-size: 0.9rem;
  box-shadow: inset 0 0 5px #0f08, 0 0 10px #0f08;
}
.view-data {
  background: black;
  border: 1px solid #0f0;
  padding: 5px 10px;
  color: #0f0;
  cursor: pointer;
}
.view-data:hover {
  background: #0f0;
  color: black;
}


.containment-unit::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
  z-index: 3;
  animation: shimmer 5s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}


.containment-unit:hover {
  box-shadow: 0 0 25px #0f0, 0 0 50px #0f0;
}





.spill-scene {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 50px;
  transform: rotate(-20deg);
  filter: drop-shadow(0 0 6px #0f0);
}

.flask {
  width: 40px;
  height: 80px;
  background: linear-gradient(145deg, #0a3300, #124800);
  border: 3px solid #0f0;
  border-bottom-left-radius: 50px 30px;
  border-bottom-right-radius: 50px 30px;
  position: absolute;
  top: 10px;
  left: 60px;
  transform: rotate(45deg);
  box-shadow: 0 0 12px #0f08;
  filter: drop-shadow(0 0 8px #0f0);
}

.glow-puddle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 70px;
  background: radial-gradient(circle at center, #3aff3a 40%, rgba(15, 10, 0, 0.67) 80%, transparent 100%);
  border-radius: 50% 60% 40% 70%;
  box-shadow: 0 0 40px rgba(15, 10, 0, 0.67), 0 0 60px #0f0;
  animation: flicker 2.5s infinite ease-in-out;
  overflow: visible;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.67), 0 0 60px #0f0;
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.67), 0 0 40px #0f0;
  }
}

.bubble {
  width: 12px;
  height: 12px;
  background: #0f0;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: 40px;
  animation: bubble 3.5s infinite;
  opacity: 0.6;
  filter: drop-shadow(0 0 6px #0f0);
}

.bubble.delay1 {
  left: 60px;
  animation-delay: 1.2s;
}

.bubble.delay2 {
  left: 80px;
  animation-delay: 2.4s;
}

@keyframes bubble {
  0% {
    bottom: 10px;
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    bottom: 30px;
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    bottom: 50px;
    opacity: 0;
    transform: scale(0.8);
  }
}

/* Green smoke rising */
.green-smoke {
  position: absolute;
  bottom: 15px;
  left: 50px;
  width: 30px;
  height: 60px;
  background: radial-gradient(circle, rgba(0,255,0,0.25), transparent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(10px);
  opacity: 0.6;
  animation: riseSmoke 6s linear infinite;
  transform-origin: bottom center;
  animation-timing-function: ease-in-out;
}

.green-smoke.delay {
  left: 80px;
  animation-delay: 3s;
  opacity: 0.4;
  width: 20px;
  height: 40px;
}

@keyframes riseSmoke {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-60px) scale(1.5);
    opacity: 0;
  }
}


/* About Section Styles */
.about-section {
  position: relative;
  color: #7efc00;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  border-top: 2px solid #7efc00;
  border-bottom: 2px solid #7efc00;
  overflow: hidden;
  background: url("/images/aboutuspng.png") repeat;
  height: 100vh;
  background-size: 700px;
  align-items: center;
  display: grid;
}


.about-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 3rem;
  opacity: 0.08;
  color: #3aff3a;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 1rem;
  gap: 2rem;
  z-index: 0;
}

.about-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.9); 
  border-radius: 30px;
  padding: 15px;
}


.about-section h2 {
  font-size: 3rem;
  margin: 0px;
  margin-bottom: 10px;
 text-shadow: 0 0 5px #7efc00;
}

.about-section p {
  font-size: 1.25rem;
  line-height: 1.6;
  text-shadow: 0 0 5px #7efc00;
  margin: 0px;
}

.lab-icons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.icon-glow {
  font-size: 3rem;
  animation: flicker 2.5s infinite ease-in-out;
  text-shadow:
    0 0 5px #7efc00,
    0 0 10px #7efc00,
    0 0 15px #3aff3a,
    0 0 20px #3aff3a;
}

/* Glow pulse animation */
@keyframes glowPulse {
  0% {
    box-shadow: inset 0 0 15px #4aff4a;
  }
  100% {
    box-shadow: inset 0 0 50px #7efc00;
  }
}

/* Flicker animation for icons */
@keyframes flicker {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #7efc00,
      0 0 10px #7efc00,
      0 0 15px #3aff3a,
      0 0 20px #3aff3a;
  }
  50% {
    opacity: 0.7;
    text-shadow:
      0 0 3px #7efc00,
      0 0 6px #7efc00,
      0 0 9px #3aff3a,
      0 0 12px #3aff3a;
  }
}


#emoji-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  overflow: visible;
}

#emoji-bg span {
  position: absolute;
  will-change: transform, opacity;
  user-select: none;
  opacity: 0.1;
  filter: drop-shadow(0 0 2px #3aff3a);
  animation: floatUpDown 4s ease-in-out infinite alternate;
}

/* subtle up-down floating */
@keyframes floatUpDown {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}


/* Pulse glow animation for step numbers */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px #7efc00, 0 0 20px #7efc00;
  }
  50% {
    box-shadow: 0 0 20px #a6ff4d, 0 0 40px #7efc00;
  }
}

.lab-guide {
  background: radial-gradient(circle at bottom center, rgba(126, 252, 0, 0.04), transparent 70%),
              linear-gradient(
                0deg,
                rgba(20, 86, 20, 1) 0%,
                rgba(10, 43, 10, 0.8) 30%,
                rgba(5, 20, 5, 0.5) 60%,
                rgba(0, 0, 0, 0.3) 85%,
                rgba(0, 0, 0, 1) 100%
              );
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #7efc00;
  border-top: 2px solid black;
  border-bottom: 1px solid #7efc00;
  position: relative;
  overflow: hidden;
  height: 100vh;

  /* Centering content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow:
    inset 0 200px 150px -30px #000000,
    inset 0 -30px 30px -30px #7efc00;
}


/* Decorative animated bubbles/sparks */
.lab-guide::before,
.lab-guide::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(#7efc00, transparent);
  border-radius: 50%;
  animation: floatUp 4s infinite ease-in-out;
  opacity: 0.5;
  z-index: 0;
}

.lab-guide::before {
  left: 20%;
  bottom: -20px;
  animation-delay: 0s;
}

.lab-guide::after {
  left: 80%;
  bottom: -20px;
  animation-delay: 2s;
}

.lab-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-shadow: 0 0 10px #7efc00, 0 0 20px #7efc00;
  z-index: 1;
  position: relative;
}

.steps-alig {
    display: flex;
    gap: 3rem;
}

.lab-steps {
  display: grid;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
  position: relative;
}

.lab-step {
  background: #111;
  border: 1px solid #7efc00;
  padding: 2rem 1rem;
  width: 300px;
  height: 150px;
  border-radius: 14px;
  box-shadow: 0 0 10px #7efc00, inset 0 0 10px #1aff00;
  transition: transform 0.3s ease;
  position: relative;
  align-items: center;
  display: grid;
}

.lab-step:hover {
  transform: scale(1.05);
}

.lab-step-number {
  font-size: 2rem;
  background: #7efc00;
  color: #000;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  line-height: 48px;
  font-weight: bold;
  animation: pulseGlow 2s infinite ease-in-out;
}

.algn-steps-2 {
    display: grid;
    gap: 10px;
}

.lab-step p {
  font-size: 1.3rem;
  margin: 0;
}

.lab-step small {
  font-size: 0.75rem;
  color: #b0ff8f;
  display: block;
  margin-top: 0.5rem;
}


#labParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.scroll-arrow {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scroll-arrow.show {
  opacity: 1;
  pointer-events: auto;
}

.arrow-icon {
  fill: #7efc00;
  filter: drop-shadow(0 0 6px #7efc00);
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: pulseGlow 2s infinite ease-in-out;
}

.scroll-arrow:hover .arrow-icon {
  transform: scale(1.1);
  fill: #aaff66;
  filter: drop-shadow(0 0 10px #aaff66);
}


/* Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #7efc00;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav Hidden by Default */
.nav-links {
  display: flex;
  gap: 1rem;
}


@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 6px #7efc00); }
  50%      { filter: drop-shadow(0 0 12px #7efc00); }
}


@media screen and (max-width: 1800px) and (max-height: 900px) {
  #project-card-reveal > div:last-child {
    gap: 20px;
  }

  .project-card h2 {
    font-size: 1.5em;
  }

  .project-card p {
    font-size: 1.3rem;
  }
}


@media screen and (max-width: 1350px) and (max-height: 900px) {
  #project-card-reveal > div:last-child {
    gap: 10px;
  }

  .project-card h2 {
    font-size: 1.3em;
  }

  .project-card p {
    font-size: 1rem;
  }
}

/* RESPONSIVE TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-projects h1 {
    font-size: 2.5rem;
  }

  .quesmrhd {
    font-size: 4rem !important;
  }

  .lab-guide {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }

  .steps-alig {
    flex-direction: column;
    align-items: center;
  }

  .lab-step {
    width: 80%;
  }

  .project-grid {
    flex-direction: column;
    height: auto;
  }

  .project-card {
    width: 90%;
    height: auto;
  }

  .scroll-panel {
    flex: 0 0 90%;
  }

  .holographic-core {
    width: 90%;
  }
}

/* RESPONSIVE MOBILE (max-width: 768px) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  html {
    overflow-x: hidden;
  }

  .hero-projects h1 {
    font-size: 2rem;
  }

.scroll-arrow {
  right: 5px;
}

  .quesmrhd {
    font-size: 3rem !important;
  }

  .lab-title {
    font-size: 2rem;
  }

  .project-card h2,
  .modal-content h2 {
    font-size: 1.5rem;
  }

  .project-card p,
  .modal-content p {
    font-size: 1rem;
  }

  .coin-gallery {
    flex-direction: column;
    gap: 20px;
  }

.hero-projects {
  align-items: center;
  justify-content: center;
}

  .coin-chamber {
    width: 90%;
  }

  .containment-unit {
    width: 90%;
  }

  .about-section h2 {
    font-size: 2rem;
  }
  
.scroll-panel {
  min-width: 500px;
}

  .scroll-wrapper {
    align-items: baseline;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-container {
    padding: 10px;
  }

  .countdown {
    font-size: 2rem;
  }

  .scroll-container {
    gap: 1rem;
  }

  .modal-content {
    height: 90%;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }


.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  z-index: 1001; /* keep above nav */
}

 .nav-links {
  /* Hide initially */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  flex-direction: column;
  background-color: #111;
  padding-left: 2rem;
  padding-right: 2rem;
}

#hidelinedasd {
  display: none;
}

  /* Show menu: max-height big enough, opacity 1 */
.nav-links.show {
  max-height: 500px; /* big enough to fit all menu */
  opacity: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

  .nav-links a,
  .nav-links p {
    padding: 0.5rem 0;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }

  .line {
  width: 30px;
  height: 3px;
  background-color: #7efc00;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: 1px;
}

/* Animate lines when active */
.hamburger.active .line1 {
  transform: rotate(45deg) translate(2px, 0px);
}

.hamburger.active .line2 {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .line3 {
  transform: rotate(-45deg) translate(-3px, 4px);
}

.cardalfn {
  display: none;
}

.project-card h2, .modal-content h2 {
  font-size: 1.1rem;
}

.nameslfg h2 p {
  font-size: 1.1rem;
}

.project-card .expand-btn {
  font-size: 0.9rem;
}

/* Responsive container for everything */
#coin-out-section .lab-container {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* CTA Button */
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Token Address Input */
.copy-token-container input {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Animated Icons Wrapper */
.animated-icons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.animated-icon {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease-in-out;
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.bounce {
  animation: bounce 1.5s infinite;
}
.spin {
  animation: spin 5s linear infinite;
}
.pulse {
  animation: pulse 2s infinite;
}

.hideimgmobile {
    display: none;
}

.copy-token-container input[type="text"] {
    width: auto;
}

}


/* Mobile-specific adjustments */
@media (max-width: 480px) {
  .animated-icon {
    width: 250px;
    height: 250px;
  }

  .lab-titlesdasd {
    font-size: 2rem;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

}