/* style.css */
    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
    
body {
  margin: 0;
      padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  color: #0f0;
      overflow-x: hidden;
}

html {
      height: 100%;
      font-family: 'Orbitron', sans-serif;
      color: #00ff99;
      overflow-x: hidden;
    }

nav {
  background-color: #121223;
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav ul li a {
  color: #00ffc3;
  text-decoration: none;
  font-weight: bold;
}

.countdown-container {
  text-align: center;
  background-color: #1f1f30;
  padding: 1rem;
  color: #00ffc3;
  font-size: 1.5rem;
}

.navbar {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 20px;
  background-color: #111;
}

.navbar li {
  margin: 0 -7px;
}

.navbar a {
  text-decoration: none;
  color: #0f0;
  font-weight: bold;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 20px;
  background: url('assets/ChatGPT Image Jun 2, 2025, 03_03_37 PM.png') center/cover fixed no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-image {
  max-width: 300px;
  margin: 20px auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 0 20px #00ffc3;
}

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.75);
      z-index: 1;
    }

    .content {
      z-index: 2;
      position: relative;
    }

    .logo {
      width: 222px;
      height: auto;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .typing {
      font-size: 2em;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid #00ffae;
      width: 0;
      animation: typing 4s steps(30, end) forwards, blink 0.75s step-end infinite;
    }
    @keyframes typing {
      to { width: 100%; }
    }
    @keyframes blink {
      50% { border-color: transparent; }
    }

    .cta-button {
      margin-top: 30px;
      padding: 12px 30px;
      background: #00ff99;
      color: #000;
      font-size: 1.1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .cta-button:hover {
      background: #00cc7a;
      transform: scale(1.05);
    }

.countdown {
      text-align: center;
      margin: 30px 0;
  font-size: 1.5em;
  margin-top: 15px;
  color: #fff;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.roadmap-img {
  width: 90%;
  max-width: 800px;
  margin-top: 20px;
}

.title-box {
  margin-top: 2rem;
  color: #fff;
}

.subtitle {
  font-size: 1.2rem;
  color: #ccc;
}

.roadmap-section {
  padding: 3rem 1rem;
  background-color: #111122;
}

.roadmap-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff00ff;
  margin-bottom: 2rem;
}

.roadmap {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.phase {
  background-color: #1d1d3b;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,255,195,0.2);
}

.phase h3 {
  color: #00ffc3;
  margin-bottom: 1rem;
}

.phase ul {
  padding-left: 1.5rem;
  color: #ddd;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000010;
  color: #999;
  font-size: 0.9rem;
  text-align: center;
}

    header {
      text-align: center;
      padding: 50px 20px 20px;
    }
    header img {
      width: 150px;
    }
    .btn {
      background: #00ffae;
      color: #000;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      cursor: pointer;
      transition: 0.3s ease;
    }
    .btn:hover {
      background: #00c58e;
    }
    .centered {
      text-align: center;
      margin-top: 40px;
    }
    .parallax {
      background-image: url('https://images.unsplash.com/photo-1624439196467-cc1f02d1d45f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
