:root {
  --primary: #050816;
  --primary-dark: #0b0f2a;
  --bg-1: #050816;
  --bg-2: #120a2a;
  --white: #e6f1ff;
  --black: #000;
  --neon: #7df9ff;
  --purple: #9b5cff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  color: #e6f1ff;
  background: #050816;
  position: relative;
}

/* ===== STAR BACKGROUND ===== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(2px 2px at 20% 30%, #ffffff 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 70% 80%, #ffffff 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 40% 60%, #ffffff 40%, transparent 41%),
    radial-gradient(2px 2px at 90% 20%, #ffffff 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 10% 70%, #ffffff 40%, transparent 41%),
    radial-gradient(1.5px 1.5px at 60% 40%, #ffffff 40%, transparent 41%),

    linear-gradient(180deg, #050816 0%, #0b0f2a 100%);

  background-repeat: repeat;
  background-size: 600px 600px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(circle at 30% 40%, rgba(155,92,255,0.25), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(125,249,255,0.2), transparent 50%);

  animation: nebulaMove 30s linear infinite alternate;
}

@keyframes nebulaMove {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-50px);
  }
}

/* Navbar */
.nav {
  position: absolute;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}



.logo span {
  letter-spacing: 1px;
}
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 120px;

  background:
    linear-gradient(rgba(5,8,22,0.6), rgba(5,8,22,0.8)),
    url("img/bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TEXT BLOCK */
/* TEXT BLOCK */
.hero-content {
  position: relative;
  z-index: 5; /* Always above character */
  max-width: 900px;
}
.hero-character {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
width: clamp(210px, 30vw, 350px);
  z-index: 1;
}




/* Ticker always above bottom */
.ticker {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;

  background: linear-gradient(90deg, #120a2a, #1a1040);

  border-top: 2px solid #7df9ff;
  border-bottom: 2px solid #7df9ff;

  box-shadow:
    0 0 10px #7df9ff,
    inset 0 0 20px rgba(125,249,255,0.2);

  z-index: 3;
}
/* Title */
.title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: 3px;
  text-shadow:
    0 0 10px var(--neon),
    0 0 30px var(--purple),
    0 0 60px var(--purple);

text-align: center; 
}


.hero-tagline {
  margin-top: 24px;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 1px;
  line-height: 1.6;
  color: var(--neon);

  text-shadow:
    0 0 6px var(--neon),
    0 0 16px rgba(125,249,255,0.6),
    0 0 32px rgba(155,92,255,0.4);
}
.subtitle {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 22px);
  opacity: 0.9;
  color: #cdd6f4;
}


/* Buttons */
.btn {
  font-family: "Orbitron", sans-serif;
  border: 2px solid var(--neon);
  background: transparent;
  color: var(--neon);
  padding: 14px 32px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 0 12px var(--neon);
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 25px var(--neon);
  transform: translateY(-4px);
}
.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary {
  margin-top: 30px;
  font-size: 20px;
}

/* Character */
.character {
  margin-top: 60px;
  position: relative;
  width: 180px;
  height: 200px;
}

.face {
  width: 180px;
  height: 160px;
  background: #fff;
  border: 4px solid var(--black);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
}

.hat {
  width: 200px;
  height: 60px;
  background: #111;
  border-radius: 50px 50px 0 0;
  position: absolute;
  top: 0;
  left: -10px;
}

.eye {
  width: 20px;
  height: 20px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50px;
}

.eye.left { left: 50px; }
.eye.right { right: 50px; }

.smile {
  width: 60px;
  height: 30px;
  border-bottom: 4px solid var(--black);
  border-radius: 0 0 50px 50px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Ticker */
.ticker {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--primary-dark);
  overflow: hidden;
  border-top: 3px solid var(--black);
}

.ticker-track {
  white-space: nowrap;
  padding: 12px 0;
  font-family: "Orbitron", sans-serif;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }

  .character {
    transform: scale(0.8);
  }
}


.contract-section {
  padding: 60px 20px 120px;
  font-family: "Orbitron", sans-serif;
background: radial-gradient(circle at center, #120a2a, #050816);
border-top: 2px solid var(--neon);
color: #fff;
 border-top: 3px solid #111; 

}

.contract-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contract-header {
  margin-bottom: 40px;
}

.label {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.contract-header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: #7df9ff;

  text-shadow:
    0 0 8px #7df9ff,
    0 0 20px rgba(125,249,255,0.8),
    0 0 40px rgba(155,92,255,0.6);

  letter-spacing: 2px;
}

/* IMPORTANT WRAPPER */
.contract-card-wrapper {
  position: relative;
  margin-top: 80px;
}

.contract-character {
  position: absolute;
  right: 60px;
  bottom: 100%;      
  transform: translateY(40px);
  width: clamp(200px, 20vw, 300px);
  z-index: 3;
  pointer-events: none;
}

/* CARD */
.contract-box {
  background: #080808;
  padding: 30px 35px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-all;
  position: relative;
  z-index: 1;
}

.copy-btn {
  background: #ffffff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.copy-btn i {
  font-size: 22px;
  color: #2b1848;
}

.copy-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-character {
    width: clamp(200px, 70vw, 320px);
    bottom: 0;
  }
}


@media (max-width: 768px) {

  .contract-header {
    margin-bottom: 80px;
  }

  .contract-card-wrapper {
    margin-top: 140px;
  }

  .contract-character {
    right: 50%;
    bottom: 100%;
    transform: translate(50%, 40px); 
    width: 220px;
  }

}

@media (max-width: 768px) {

  .contract-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #contractAddress {
    font-size: 13px;
    flex: 1;
    margin-right: 12px;
  }

}



.official-links {
  text-align: center;
  margin-bottom: 70px;
}

.official-links p {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 20px;

  color: #7df9ff;

  text-shadow:
    0 0 8px #7df9ff,
    0 0 20px rgba(125,249,255,0.7),
    0 0 40px rgba(155,92,255,0.4);
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.icons a {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.icons a:hover {
  transform: translateY(-6px);
}

.icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-section {
  padding: 120px 20px;

  background:
    radial-gradient(circle at 20% 30%, rgba(155,92,255,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(125,249,255,0.25), transparent 40%),
    linear-gradient(180deg, #050816 0%, #0b0f2a 100%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Image */
.about-image img {
  width: clamp(460px, 60vw, 620px);
  height: auto;
}

/* Content */
.about-content {
  max-width: 520px;
}

.about-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(36px, 5vw, 70px);
  letter-spacing: 3px;
    white-space: nowrap;

  color: #7df9ff;

  text-shadow:
    0 0 10px #7df9ff,
    0 0 25px rgba(125,249,255,0.8),
    0 0 45px rgba(155,92,255,0.6);

  margin-bottom: 25px;
}
.about-content p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #7df9ff;
  margin-bottom: 30px;

  text-shadow:
    0 0 4px rgba(125,249,255,0.6),
    0 0 12px rgba(125,249,255,0.4);
}

@media (max-width: 900px) {

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .about-content {
    max-width: 100%;
  }

}




.meme-section {
  padding: 120px 20px;
background: radial-gradient(circle at center, #120a2a, #050816);
  color: #fff;
}

.meme-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.meme-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 3px;

  color: #7df9ff;

  text-shadow:
    0 0 8px #7df9ff,
    0 0 20px rgba(125,249,255,0.8),
    0 0 40px rgba(155,92,255,0.6);

  margin-bottom: 15px;
}

.meme-text p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  max-width: 600px;
  line-height: 1.6;

  color: #cdd6f4;

  text-shadow:
    0 0 6px rgba(125,249,255,0.3);
}

.meme-cta {
background: #050816;
  border: 2px solid #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.meme-cta:hover {
  transform: translateY(-4px);
}

/* GRID */
.meme-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.meme-grid img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
  display: block;
}

.meme-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .meme-header {
    flex-direction: column;
    text-align: center;
  }

  .meme-grid {
    grid-template-columns: 1fr;
  }

}




.site-footer {
  background: #050816;
  color: #e6f1ff;
  text-align: center;
  position: relative;
  padding-bottom: 80px;
  border-top: 2px solid var(--neon);
}

/* Ticker */
.footer-ticker {
  background: linear-gradient(90deg, #120a2a, #1a1040);
  border-bottom: 2px solid var(--neon);
  overflow: hidden;
}
.footer-ticker-track {
  white-space: nowrap;
  padding: 12px 0;
  font-family: "Orbitron", sans-serif;
  color: var(--neon);
  animation: scroll 20s linear infinite;
  text-shadow: 0 0 8px var(--neon);
}

/* Content */
.footer-content {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 20px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-logo h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 42px;
  text-shadow: 3px 3px 0 #111;
}

/* Text */
.footer-text {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Icons */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-icons a {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 #111;
  transition: 0.2s ease;
}

.footer-icons a:hover {
  transform: translateY(-4px);
}

.footer-icons img {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {

  .footer-logo h3 {
    font-size: 32px;
  }

  .footer-text {
    font-size: 16px;
  }

  .footer-icons a {
    width: 50px;
    height: 50px;
  }

}


.chart-section {
  padding: 120px 20px;
  background: #ffcf1d;
}

.chart-container {
  max-width: 1200px;
  margin: 0 auto;
}
