/* Roadmap page specific styles */
.roadmap-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(35, 35, 42, 0.85) 0%, rgba(22, 22, 28, 0.92) 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-content {
    animation: none;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

.subtitle {
  background: linear-gradient(90deg, #e6e6e6, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.6;
  font-size: 1.05rem;
}

.roadmap-section {
  margin-bottom: 2.2rem;
}

.roadmap-section h2 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #ffb347;
  border-bottom: 1px solid rgba(255, 179, 71, 0.3);
  padding-bottom: 0.6rem;
}

.roadmap-intro {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.roadmap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.roadmap-list.is-shipped li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.roadmap-list.is-shipped li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #4caf50;
  font-size: 0.8em;
}

.roadmap-version {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 0.05rem 0.6rem;
  margin-left: 0.4rem;
}

.roadmap-more {
  margin-top: 1rem;
}

.roadmap-more a {
  color: #ffb347;
  text-decoration: none;
  font-size: 0.95rem;
}

.roadmap-more a:hover {
  text-decoration: underline;
}

.roadmap-list.is-planned li {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.roadmap-list.is-planned strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

.roadmap-list.is-planned p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.roadmap-reflect p,
.roadmap-cta p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.roadmap-section a {
  color: #ffb347;
  text-decoration: none;
}

.roadmap-section a:hover {
  text-decoration: underline;
  color: #ffcc33;
}

@media (max-width: 768px) {
  .roadmap-content {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}
