/* Universal mobile/tablet fix */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .crypto-links,
  .hero-left,
  
  .content-width,
  .token-grid,
  .communication-section,
  .partners-section,
  .roadmap {
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .token-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
/* ---------------------------
   ROADMAP SECTION CSS
--------------------------- */

/* Roadmap Section */
.roadmap {
  padding: 100px 20px;
  position: relative;
  background-image: 
    linear-gradient(#f3cde7,#bfcce9),
    repeating-linear-gradient(
      -45deg,
      black,
      black 5px,
      #fff 5px,
      #fff 10px
    );
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

/* Heading Box */
.roadmap1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px 0 80px;
}

.roadmap-title {
  font-size: 2.5rem;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border: 2px solid #fff;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 90%;
  word-wrap: break-word;
}

/* Timeline line */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding: 40px 0;
  box-sizing: border-box;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
  border-radius: 3px;
  transform: translateX(-50%);
}

/* Items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Dot */
.timeline-dot {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 15px rgba(106,17,203,0.6);
}

/* Box Styling */
.timeline-content {
  position: relative;
}

.phase-box {
  background: #fff;
  border-left: 6px solid transparent;
  border-image: linear-gradient(180deg, #6a11cb, #2575fc) 1;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  overflow-wrap: break-word;
}

.phase-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.phase-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.phase-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.phase-box ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  word-wrap: break-word;
}

.phase-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2575fc;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .timeline {
    max-width: 100%;
    padding: 20px 0;
  }
  
  .timeline-item {
    width: 100%;
    padding: 20px 20px;
    text-align: left !important;
    left: 0 !important;
  }
  
  .timeline-dot {
    left: 0;
    transform: translateX(-50%);
  }
  
  .phase-box {
    padding: 18px;
  }
  
  .phase-box h3 {
    font-size: 1.3rem;
  }
  
  .phase-box ul li {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 768px) {
  .roadmap-title {
    font-size: 2rem;
    padding: 12px 25px;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
    top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .roadmap {
    padding: 60px 10px;
  }
  
  .timeline-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .phase-box {
    padding: 15px;
  }
  
  .phase-box h3 {
    font-size: 1.2rem;
  }
  
  .phase-box ul li {
    font-size: 0.9rem;
  }
}
