/* Roadmap page styles - public */
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(45deg, #ff5ab1, #7a1fbf);
}

.roadmap-wrapper {
  background: #f8e9ff;
  padding: 2rem;
  border-radius: 15px;
  max-width: 700px;
}

.roadmap-wrapper h1 {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  text-align: center;
}

.roadmap-wrapper p {
  color: #4f4f4f;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.roadmap-wrapper a {
  color: #7a1fbf;
}

.roadmap-sessions {
  margin-top: 2rem;
  border-radius: 12px;
}

.roadmap-sessions li {
  padding-bottom: 1.5rem;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}

.roadmap-sessions li:last-child {
  padding-bottom: 0;
}

.roadmap-sessions li::before {
  content: '';
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #7a1fbf;
  box-shadow: 3px 3px 0px #e3c8ff;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0;
  z-index: 1;
}

.roadmap-sessions li::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 15px;
  width: 1px;
  height: calc(100% - 15px);
  background: #d1b3ff;
}

.roadmap-sessions li:last-child::after {
  display: none;
}

.roadmap-sessions li.complete::before {
  background: #28a745;
  border-color: #28a745;
  box-shadow: 3px 3px 0px #a8e4a0;
}

.roadmap-sessions li.complete::after {
  background: #28a745;
}

.roadmap-time {
  color: #2a2839;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .roadmap-time {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
  }
  .roadmap-wrapper {
    padding: 1.5rem;
  }
}
