:root {
  --primary: #f5004e;
  --primary-dark: #3e0345;
  --secondary: #3e0345;
  --accent: #0c55a7;
  --accent-dark: #0c55a7;
  --black: #000000;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}


.logo-img {
  width: auto;
  height: 1.5rem;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 0.05rem var(--white));
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.575);
  backdrop-filter: blur(10px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.highlight {
  color: var(--primary);
  position: relative;
  transition: opacity 0.5s ease-in-out;
}

.hero p {
  font-size: 22px;
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 0, 78, 0.3);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.mesh-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.connections {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.connection {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes drawPath {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.network-nodes {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-dark);
  border-radius: 50%;
  transition: opacity 0.5s ease;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0.3; }
}

.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: float 20s infinite linear;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: 20%;
  left: 10%;
  animation-duration: 30s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  top: 50%;
  right: 10%;
  animation-duration: 40s;
}

.orb3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-dark), transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5%, 10%) rotate(90deg);
  }
  50% {
    transform: translate(10%, 5%) rotate(180deg);
  }
  75% {
    transform: translate(5%, -5%) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.features {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(62, 3, 69, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(245, 0, 78, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary), var(--black));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--white);
  font-size: 18px;
}

.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.secondary-btn {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.secondary-btn:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

footer {
  padding: 50px 0;
  background: rgba(12, 85, 167, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.copyright {
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Animated elements */
.tech-line {
  position: absolute;
  height: 2px;
  background: var(--primary);
  opacity: 0.5;
  transform-origin: left;
  animation: scan 10s infinite linear;
}

@keyframes scan {
  0% {
    transform: scaleX(0);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.2;
  }
  100% {
    transform: scaleX(0);
    opacity: 0.8;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .nav-links {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Markdown Content Styling */
#whitepaper-container {
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 2rem 0;
}

#whitepaper-container h1, 
#whitepaper-container h2 {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 2rem 0;
}

#whitepaper-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

#whitepaper-container h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 2rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

#whitepaper-container table {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary);
}

#whitepaper-container th {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
}

#whitepaper-container td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#whitepaper-container pre {
  background: rgba(0,0,0,0.7) !important;
  border: 1px solid var(--accent);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

#whitepaper-container code {
  font-family: 'Fira Code', monospace;
  color: #7ee787;
  background: rgba(0,0,0,0.5);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

#whitepaper-container blockquote {
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: rgba(62, 3, 69, 0.2);
  border-radius: 0 8px 8px 0;
}

#whitepaper-container ul {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

#whitepaper-container ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

#whitepaper-container ul li::before {
  content: '▹';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* MathJax Overrides */
.mjx-chtml {
  color: var(--primary) !important;
  padding: 1rem 0 !important;
}

.MathJax {
  font-size: 1.2em !important;
}

.MJX-TEX {
  color: var(--primary) !important;
  font-size: 1.1em !important;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(245, 0, 78, 0.2);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 0, 78, 0.1), transparent);
  transition: all 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--white);
  text-shadow: 0 0 10px var(--primary);
}

/* Coming Soon Modal Styles - FIXED */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--secondary) 50%, #000 100%);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 50px 40px;
  width: 90%;
  max-width: 550px;
  text-align: center;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(245, 0, 78, 0.4),
    0 0 100px rgba(245, 0, 78, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

.modal-content h2 {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(245, 0, 78, 0.6);
  font-weight: bold;
}

.modal-content p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.modal-content p:first-of-type {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 15px;
}

.close {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close:hover,
.close:focus {
  color: var(--primary);
  background: rgba(245, 0, 78, 0.2);
  transform: rotate(90deg) scale(1.1);
  text-shadow: 0 0 15px rgba(245, 0, 78, 0.8);
}

.modal-btn {
  background: linear-gradient(45deg, var(--primary), #e91e63);
  color: var(--white);
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 0, 78, 0.5);
  background: linear-gradient(45deg, #e91e63, var(--primary));
}

.modal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.modal-btn:hover::before {
  left: 100%;
}

/* Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideIn {
  from { 
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }
  to { 
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Roadmap Page Styles - REDESIGNED */
.roadmap-header {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(62, 3, 69, 0.4) 0%, rgba(0, 0, 0, 0.9) 70%);
  position: relative;
  overflow: hidden;
}

.roadmap-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(245,0,78,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.roadmap-header h1 {
  font-size: 72px;
  background: linear-gradient(45deg, var(--primary), var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 50px rgba(245, 0, 78, 0.3);
}

.roadmap-header p {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.roadmap-content {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(62, 3, 69, 0.1) 50%, rgba(0,0,0,0.8) 100%);
}

.roadmap-phase {
  margin-bottom: 120px;
  position: relative;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-20px);
}

.roadmap-phase.active {
  opacity: 1;
  transform: translateX(0);
}

.roadmap-phase:hover {
  opacity: 1;
  transform: translateX(10px) scale(1.02);
}

.roadmap-phase::after {
  content: '';
  position: absolute;
  left: 70px;
  top: 80px;
  bottom: -120px;
  width: 4px;
  background: linear-gradient(to bottom, 
    var(--primary) 0%, 
    var(--accent) 50%, 
    rgba(245, 0, 78, 0.3) 100%);
  border-radius: 2px;
  opacity: 0.4;
}

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

.phase-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.phase-number {
  font-size: 60px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 140px;
  position: relative;
  text-shadow: 0 0 30px rgba(245, 0, 78, 0.4);
}

.phase-number::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 25px rgba(245, 0, 78, 0.6),
    0 0 50px rgba(245, 0, 78, 0.3);
}

.roadmap-phase.active .phase-number::after {
  animation: pulse 2s infinite;
  background: radial-gradient(circle, var(--accent) 0%, #4CAF50 100%);
  box-shadow: 
    0 0 25px rgba(12, 85, 167, 0.8),
    0 0 50px rgba(76, 175, 80, 0.4);
}

.phase-info h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -1px;
}

.phase-status {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phase-status.in-progress {
  background: linear-gradient(45deg, #4CAF50, var(--accent));
  color: var(--white);
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

.phase-status.upcoming {
  background: linear-gradient(45deg, var(--primary), #FF6B35);
  color: var(--white);
  box-shadow: 0 0 20px rgba(245, 0, 78, 0.3);
}

.phase-status.future {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.phase-timeline {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.phase-content {
  margin-left: 180px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05) 0%, 
    rgba(62, 3, 69, 0.2) 50%, 
    rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.phase-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 3px 3px 0;
}

.roadmap-phase.active .phase-content {
  border-color: rgba(245, 0, 78, 0.4);
  box-shadow: 
    0 20px 40px rgba(245, 0, 78, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phase-content h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}

.phase-content p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  font-weight: 300;
}

.phase-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  padding: 18px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(62, 3, 69, 0.2));
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  backdrop-filter: blur(5px);
  font-weight: 500;
}

.roadmap-phase.active .feature {
  border-left-color: var(--accent);
}

.feature:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(62, 3, 69, 0.3));
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 0, 78, 0.2);
}

.roadmap-cta {
  padding: 120px 0;
  background: radial-gradient(ellipse at center, rgba(62, 3, 69, 0.4) 0%, rgba(0, 0, 0, 0.9) 70%);
  text-align: center;
  position: relative;
}

.roadmap-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="5" height="5" patternUnits="userSpaceOnUse"><circle cx="2.5" cy="2.5" r="0.5" fill="rgba(245,0,78,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.roadmap-cta .cta-content {
  position: relative;
  z-index: 1;
}

.roadmap-cta .cta-content h2 {
  font-size: 52px;
  margin-bottom: 30px;
  background: linear-gradient(45deg, var(--primary), var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.roadmap-cta .cta-content p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Active navigation link */
.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--primary);
}

/* Coming Soon Link Styling */
.coming-soon {
  cursor: pointer;
  position: relative;
}

.coming-soon:hover {
  color: var(--accent) !important;
}

.coming-soon::after {
  content: ' 🚀';
  font-size: 0.8em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon:hover::after {
  opacity: 1;
}

/* Responsive Roadmap */
@media (max-width: 768px) {
  .roadmap-header h1 {
    font-size: 48px;
  }
  
  .roadmap-header p {
    font-size: 20px;
    padding: 0 20px;
  }
  
  .roadmap-phase::after {
    left: 40px;
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .phase-number {
    font-size: 48px;
    min-width: auto;
  }
  
  .phase-info h2 {
    font-size: 32px;
  }
  
  .phase-content {
    margin-left: 0;
    padding: 35px 25px;
  }
  
  .phase-content h3 {
    font-size: 26px;
  }
  
  .phase-content p {
    font-size: 18px;
  }
  
  .phase-features {
    grid-template-columns: 1fr;
  }
  
  .roadmap-cta .cta-content h2 {
    font-size: 40px;
  }
  
  .roadmap-cta .cta-content p {
    font-size: 20px;
  }
  
  .modal-content {
    padding: 40px 30px;
    margin: 10%;
  }
  
  .modal-content h2 {
    font-size: 28px;
  }
  
  .close {
    font-size: 28px;
    top: 15px;
    right: 20px;
  }
}