@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

.hero-text h1 {
  font-family: 'Space Mono', cursive;
  font-size: 4.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5c542;
  line-height: 1.1;
  animation: neonPulse 3s ease-in-out infinite;
  transition: transform 0.4s ease;
}

/* Add hover amplification */
.hero-text h1:hover {
  transform: scale(1.06);
}

/* Glowing animation */
@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 6px #f5c542,
      0 0 16px #ffd85a,
      0 0 30px #b68cff,
      0 0 45px #a66bff,
      0 0 60px #ffdd88;
  }
  50% {
    text-shadow:
      0 0 10px #fff6cc,
      0 0 30px #f5c542,
      0 0 50px #c890ff,
      0 0 80px #b68cff,
      0 0 110px #ffdd88;
  }
  100% {
    text-shadow:
      0 0 6px #f5c542,
      0 0 16px #ffd85a,
      0 0 30px #b68cff,
      0 0 45px #a66bff,
      0 0 60px #ffdd88;
  }
}


:root {
  --bg-color: rgb(10, 0, 25);
  --text-color: rgb(240, 220, 255);
  --accent: rgb(180, 0, 255);      /* neon violet */
  --accent-gold: rgb(255, 210, 80);/* bright warm gold */
  --glow: rgb(90, 44, 22);         /* from your note (deep orange-gold) */
  --highlight: rgb(0, 255, 240);   /* optional cyan shimmer */
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Space Mono', monospace;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, #120018 0%, #050008 100%);
  color: var(--text-color);
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 0, 25, 0.88);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  animation: fadeInDown 1.2s ease;
  box-shadow:
    0 0 25px rgba(255, 215, 150, 0.15),
    0 0 45px rgba(150, 0, 255, 0.1);
}

.logo {
  font-weight: 700;
  font-size: 1.8em;
  letter-spacing: 1.4px;
  color: #e5c47f; /* deeper, elegant gold */
  text-shadow:
    0 0 5px #fff,
    0 0 12px #e5c47f,
    0 0 25px rgba(255, 255, 255, 0.4),
    0 0 45px rgba(150, 0, 255, 0.25);
  transition: all 0.3s ease;
}

.logo:hover {
  color: #f8e29a; /* soft golden-white on hover */
  text-shadow:
    0 0 8px #fff,
    0 0 20px #f8e29a,
    0 0 35px rgba(180, 0, 255, 0.4),
    0 0 60px rgba(255, 215, 150, 0.6);
}


/* Nav */
.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
  padding: 8px;
  border-radius: 10px;
  background: rgba(30, 0, 60, 0.3);
  box-shadow: 0 0 12px rgba(182, 140, 255, 0.4), 0 0 25px rgba(245, 197, 66, 0.2);
  transition: all 0.4s ease;
}

.hamburger:hover {
  box-shadow: 0 0 18px var(--accent), 0 0 35px var(--accent-gold);
  transform: scale(1.05);
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: var(--accent-gold);
  transition: all 0.4s ease;
  border-radius: 2px;
  box-shadow: 0 0 8px var(--glow), 0 0 12px var(--accent-gold);
}

/* Active state when opened */
.hamburger.open {
  background: rgba(245, 197, 66, 0.15);
  box-shadow: 0 0 20px var(--accent-gold), 0 0 40px rgba(182, 140, 255, 0.4);
}

.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open div:nth-child(2) {
  opacity: 0;
}
.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/* Hero */
.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 60px 60px;
  flex-wrap: wrap;
  background: radial-gradient(circle at center, rgba(150, 0, 255, 0.15), transparent 70%);
  animation: bgPulse 6s ease-in-out infinite;
  overflow: hidden;
}

/* background image behind the character and text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("bg-image.jpg") center/cover no-repeat;
  opacity: 0.35;
  filter: brightness(1.1) saturate(1.2) blur(2px);
  animation: bgFade 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgPulse {
  0%, 100% {
    background: radial-gradient(circle at center, rgba(146, 82, 255, 0.18), transparent 70%);
  }
  50% {
    background: radial-gradient(circle at center, rgba(245, 197, 66, 0.18), transparent 70%);
  }
}

.hero-text, 
.hero-image {
  position: relative;
  z-index: 1;
}

@keyframes bgFade {
  0% { opacity: 0.28; filter: brightness(1.1) saturate(1.1) blur(2px); }
  50% { opacity: 0.42; filter: brightness(1.25) saturate(1.3) blur(2.5px); }
  100% { opacity: 0.28; filter: brightness(1.1) saturate(1.1) blur(2px); }
}

.hero-text {
  max-width: 480px;
  animation: slideInLeft 1.2s ease;
}

.hero-text h1 {
  color: var(--accent);
  text-shadow:
    0 0 25px var(--accent),
    0 0 45px var(--accent-gold),
    0 0 80px var(--highlight);
}


.hero-text h2 {
  font-size: 1.4em;
  color: var(--text-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--accent-gold);
}

.ca-section {
  margin-top: 10px;
  background: rgba(255, 210, 80, 0.08);
  border: 1px solid rgba(255, 210, 80, 0.3);
  border-radius: 8px;
  display: inline-block;
  padding: 6px 14px;
  color: var(--accent-gold);
  font-family: 'Space Mono', monospace;
  font-size: 0.95em;
  text-shadow: 0 0 12px var(--accent);
  box-shadow: 0 0 18px rgba(255, 210, 80, 0.2), inset 0 0 12px rgba(180, 0, 255, 0.15);
  animation: glowShift 3s ease-in-out infinite;
}

.ca-section .ca {
  color: var(--highlight);
  font-weight: bold;
}

@keyframes glowShift {
  0%, 100% {
    box-shadow: 0 0 18px rgba(255, 210, 80, 0.2), inset 0 0 12px rgba(180, 0, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(180, 0, 255, 0.4), inset 0 0 18px rgba(255, 210, 80, 0.3);
  }
}


.socials {
  display: flex;
  gap: 20px;
}

.socials a svg {
  fill: var(--accent-gold);
  filter: drop-shadow(0 0 6px var(--glow));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.socials a:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px var(--accent));
}

.hero-image img {
  max-width: 380px;
  border-radius: 20px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 25px var(--accent), 0 0 40px var(--accent-gold);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: float 4s ease-in-out infinite;
}

.hero-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 0, 255, 0.6);
}

.about {
  padding: 90px 60px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(180, 0, 255, 0.15), rgba(10, 0, 25, 0.95) 70%);
  border-top: 1px solid rgba(255, 210, 80, 0.25);
  border-bottom: 1px solid rgba(180, 0, 255, 0.25);
  box-shadow:
    inset 0 0 60px rgba(180, 0, 255, 0.15),
    0 0 60px rgba(90, 44, 22, 0.35);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.5s ease;
}

/* faint animated background shimmer */
.about::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 180deg,
    rgba(255, 210, 80, 0.08),
    rgba(180, 0, 255, 0.1),
    rgba(0, 255, 240, 0.08),
    rgba(255, 210, 80, 0.08)
  );
  animation: swirl 12s linear infinite;
  z-index: 0;
}

@keyframes swirl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about h2 {
  font-size: 2.4em;
  color: var(--accent-gold);
  margin-bottom: 24px;
  text-shadow: 0 0 20px var(--accent), 0 0 40px var(--highlight);
  letter-spacing: 1px;
  z-index: 1;
  position: relative;
}

.about p {
  max-width: 720px;
  margin: auto;
  line-height: 1.8;
  color: var(--text-color);
  text-shadow: 0 0 8px rgba(180, 0, 255, 0.3);
  z-index: 1;
  position: relative;
}

/* ====== Roadmap Section ====== */
.roadmap {
  padding: 90px 60px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 210, 80, 0.08), rgba(20, 0, 40, 0.95) 70%);
  border-top: 1px solid rgba(255, 210, 80, 0.3);
  border-bottom: 1px solid rgba(150, 0, 255, 0.25);
  box-shadow: inset 0 0 60px rgba(180, 0, 255, 0.1), 0 0 60px rgba(255, 210, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: conic-gradient(
    from 180deg,
    rgba(255, 210, 80, 0.1),
    rgba(180, 0, 255, 0.12),
    rgba(0, 255, 240, 0.1),
    rgba(255, 210, 80, 0.1)
  );
  animation: swirl 16s linear infinite;
  z-index: 0;
}

.roadmap h2 {
  font-size: 2.4em;
  color: var(--accent-gold);
  margin-bottom: 40px;
  text-shadow: 0 0 18px var(--accent), 0 0 35px var(--highlight);
  position: relative;
  z-index: 1;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.roadmap-item {
  background: rgba(30, 0, 60, 0.5);
  border: 1px solid rgba(255, 210, 80, 0.25);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow:
    0 0 15px rgba(180, 0, 255, 0.25),
    inset 0 0 10px rgba(255, 210, 80, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.roadmap-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 25px rgba(255, 210, 80, 0.35),
    inset 0 0 18px rgba(180, 0, 255, 0.3);
}

.roadmap-item h3 {
  color: var(--accent-gold);
  font-size: 1.3em;
  margin-bottom: 10px;
  text-shadow: 0 0 12px var(--accent), 0 0 25px var(--highlight);
}

.roadmap-item p {
  color: var(--text-color);
  font-size: 1em;
  text-shadow: 0 0 10px rgba(255, 210, 80, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .roadmap {
    padding: 60px 20px;
  }

  .roadmap-grid {
    gap: 20px;
  }
}


footer {
  text-align: center;
  padding: 30px;
  background: linear-gradient(180deg, rgba(10, 0, 25, 0.95) 0%, rgba(45, 0, 70, 1) 100%);
  border-top: 1px solid rgba(180, 0, 255, 0.3);
  color: var(--accent-gold);
  font-size: 1em;
  text-shadow: 0 0 12px var(--accent), 0 0 25px var(--highlight);
  box-shadow: 0 -5px 25px rgba(180, 0, 255, 0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--highlight), var(--accent));
  animation: flow 4s linear infinite;
}

@keyframes flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

footer p {
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}


/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(20, 0, 35, 0.95);
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.4s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
  }

  .hero-text h1 {
    font-size: 2.6em;
  }

  .hero-text h2 {
    font-size: 1.2em;
  }

  .hero-image img {
    max-width: 280px;
    margin-top: 20px;
  }

  .about {
    padding: 60px 20px;
  }

  .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 100px;
}
