.roadmap-page {
  overflow-x: hidden;
  overflow-y: auto;
}

.roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
}

.back-button:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-4px);
}

.back-button svg {
  width: 20px;
  height: 20px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 60vh;
  margin-bottom: 80px;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--muted);
  margin: 0 0 40px 0;
  line-height: 1.5;
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(199, 156, 255, 0.3));
  animation: float 6s ease-in-out infinite;
}

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

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 60px 0;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  width: fit-content;
}

.contract-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.contract-address {
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  font-family: monospace;
  letter-spacing: 1px;
}

.social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  min-width: 140px;
}

.twitter-btn {
  background: rgba(29, 161, 242, 0.8);
  color: white;
  border: 2px solid rgba(29, 161, 242, 0.5);
}

.twitter-btn:hover {
  background: rgba(29, 161, 242, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.copy-btn {
  background: rgba(255, 110, 196, 0.8);
  color: white;
  border: 2px solid rgba(255, 110, 196, 0.5);
}

.copy-btn:hover {
  background: rgba(255, 110, 196, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 110, 196, 0.4);
}

.about-section {
  margin-bottom: 80px;
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.content-card.dark {
  background: rgba(0, 0, 0, 0.3);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff6ec4);
  margin-bottom: 30px;
}

.card-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.content-card h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px 0;
}

.content-card p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.vision-section {
  margin-bottom: 80px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vision-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.vision-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.vision-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.vision-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 15px 0;
}

.vision-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.expansion-section {
  margin-bottom: 80px;
}

.timeline-section {
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(199, 156, 255, 0.2) 100%);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 50px;
}

.timeline-marker {
  position: absolute;
  left: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid var(--bg);
  transition: all 0.3s;
}

.timeline-marker.active {
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.timeline-item:hover .timeline-marker {
  background: var(--accent);
  transform: scale(1.2);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px 0;
}

.timeline-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(199, 156, 255, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content ul {
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
}

.timeline-content li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.timeline-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.goal-section {
  margin-bottom: 40px;
}

.goal-card {
  background: linear-gradient(135deg, rgba(199, 156, 255, 0.2) 0%, rgba(255, 110, 196, 0.2) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
}

.goal-card h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 30px 0;
}

.goal-text {
  font-size: 20px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), #ff6ec4);
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(199, 156, 255, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(199, 156, 255, 0.6);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .roadmap-container {
    padding: 20px 16px;
  }

  .back-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    margin-bottom: 60px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-social {
    align-items: center;
    margin-top: 30px;
  }

  .contract-box {
    padding: 14px 20px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .contract-label {
    font-size: 15px;
  }

  .contract-address {
    font-size: 15px;
  }

  .social-buttons {
    width: 100%;
    justify-content: center;
  }

  .social-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-image img {
    max-width: 80%;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .content-card {
    padding: 30px 20px;
  }

  .content-card h2 {
    font-size: 28px;
  }

  .content-card p {
    font-size: 16px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    padding-left: 50px;
    margin-bottom: 40px;
  }

  .timeline-marker {
    left: 7px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 20px;
  }

  .goal-card {
    padding: 40px 20px;
  }

  .goal-card h2 {
    font-size: 32px;
  }

  .goal-text {
    font-size: 16px;
  }

  .cta-button {
    padding: 16px 28px;
    font-size: 16px;
  }

  /* Disable blur on mobile for performance */
  .back-button,
  .content-card,
  .vision-card,
  .timeline-content {
    backdrop-filter: none;
  }

  .back-button {
    background: rgba(0, 0, 0, 0.5);
  }

  .content-card {
    background: rgba(255, 255, 255, 0.08);
  }

  .content-card.dark {
    background: rgba(0, 0, 0, 0.5);
  }

  .vision-card {
    background: rgba(255, 255, 255, 0.08);
  }

  .timeline-content {
    background: rgba(255, 255, 255, 0.08);
  }

  .goal-card {
    background: rgba(199, 156, 255, 0.25);
    backdrop-filter: none;
  }
}
