body {
  margin: 0;
  font-family: "Fredoka One", cursive;
  background: #0a0a1a;
  color: white;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(
      ellipse at top,
      rgba(79, 70, 229, 0.4),
      transparent
    ),
    radial-gradient(ellipse at bottom, rgba(250, 204, 21, 0.2), transparent),
    #0a0a1a;
  animation: aurora 12s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes aurora {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

header {
  padding: 100px 20px 60px;
  position: relative;
}

header img {
  max-width: 350px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin: 20px 0 10px;
  text-shadow: 0 0 25px #facc15;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-top: 40px;
  color: #facc15;
  text-shadow: 0 0 12px #000;
}

p {
  max-width: 750px;
  margin: 15px auto;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin: 15px 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px auto;
  border-radius: 20px;
  max-width: 1100px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

#journey .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#journey .card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 280px;
  height: 220px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#journey .card .icon,
.phase .icon {
  position: absolute;
  top: 15px;
  right: -15px;
  font-size: 2rem;
  background: #0a0a1a;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

#journey .card strong {
  margin-top: 40px;
  font-size: 1.2rem;
  color: #facc15;
}

#journey .card p {
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.4;
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.phase {
  flex: 1 1 300px;
  max-width: 320px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(30, 30, 30, 0.8)
  );
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
  height: 220px;
}

.phase h3 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #facc15;
}

.phase p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 5px 0;
}

footer {
  background: rgba(0, 0, 0, 0.7);
  padding: 25px;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  margin-top: 50px;
  border-radius: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
