@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Solana Inspired Colors */
  --bg-dark: #050505;
  --bg-card: rgba(20, 20, 20, 0.6);
  --bg-border: rgba(255, 255, 255, 0.1);
  --text-main: #f5f5f5;
  --text-muted: #a1a1aa;
  
  --neon-green: #14F195;
  --neon-purple: #9945FF;
  --neon-blue: #00C2FF;

  /* Gradients */
  --gradient-brand: linear-gradient(90deg, var(--neon-green), var(--neon-purple));
  --gradient-text: linear-gradient(to right, var(--neon-green), var(--neon-purple));
  
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Glassmorphism */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-border);
  border: 1px solid var(--glass-border); /* Updated from var(--bg-border) */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Premium Alerts */
.text-neon-green { color: var(--neon-green) !important; }
.text-neon-purple { color: var(--neon-purple) !important; }
.text-neon-blue { color: var(--neon-blue) !important; }

.bg-dark-soft { background: #161B22 !important; }

/* Soft Badges */
.badge.bg-soft-success {
    background: rgba(20, 241, 149, 0.1) !important;
    color: var(--neon-green) !important;
    border: 1px solid rgba(20, 241, 149, 0.2);
}

.badge.bg-soft-warning {
    background: rgba(255, 171, 0, 0.1) !important;
    color: #ffab00 !important;
    border: 1px solid rgba(255, 171, 0, 0.2);
}

.badge.bg-soft-info {
    background: rgba(0, 194, 255, 0.1) !important;
    color: var(--neon-blue) !important;
    border: 1px solid rgba(0, 194, 255, 0.2);
}

.badge.bg-soft-danger {
    background: rgba(255, 72, 66, 0.1) !important;
    color: #ff4842 !important;
    border: 1px solid rgba(255, 72, 66, 0.2);
}

.smaller { font-size: 0.75rem; }

.bg-gradient-primary {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-purple)) !important;
}

/* Premium Alerts */
.glass-alert {
  background: rgba(255, 69, 69, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 69, 69, 0.2);
  border-left: 4px solid #ff4545;
  color: #ffbcbc;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  animation: slideIn 0.4s ease-out;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #000;
  box-shadow: 0 0 20px rgba(20, 241, 149, 0.4);
}

.btn-primary:hover {
  background: var(--neon-green);
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--neon-purple);
}

.btn-outline:hover {
  background: rgba(153, 69, 255, 0.1);
  box-shadow: 0 0 15px rgba(153, 69, 255, 0.4);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(20, 241, 149, 0.5);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--bg-dark);
    border-left: 1px solid var(--bg-border);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    cursor: pointer;
  }
  
  .nav-links.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* Footer */
footer {
  border-top: 1px solid var(--bg-border);
  padding: 4rem 0 2rem;
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--neon-purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Mobile Header Button Fixes */
.mobile-only-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only-btn {
    display: none !important;
  }
  .mobile-only-btn {
    display: inline-flex !important;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
  }
}

/* Custom utility classes for Crypto table */
.text-success {
    color: var(--neon-green) !important;
    text-shadow: 0 0 10px rgba(20, 241, 149, 0.3);
}

.text-danger {
    color: #ff4d4d !important;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.crypto-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 24px;
    width: 20px;
    height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-purple);
    z-index: 1;
}

.timeline-content {
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: rgba(153, 69, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(153, 69, 255, 0.15);
}

@media (min-width: 768px) {
    .roadmap-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 40px;
        text-align: left;
    }
    
    .timeline-dot {
        left: 100%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content:hover {
        transform: translateX(10px);
    }
    
    .timeline-item:nth-child(odd) .timeline-content:hover {
        transform: translateX(-10px);
    }
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(20, 241, 149, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--bg-border);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--bg-border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-read-more {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-read-more {
    transform: translateX(5px);
}

/* Process Section Styles */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
}

.process-card {
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    cursor: pointer;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 40px rgba(153, 69, 255, 0.2);
}

.process-step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 15px var(--neon-green);
}

.process-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--bg-border);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.process-card:hover .process-icon-container {
    background: rgba(153, 69, 255, 0.1);
    border-color: var(--neon-purple);
    transform: scale(1.1) rotate(5deg);
}

/* Comparison Table Styles */
.comparison-table tr {
    border-bottom: 1px solid var(--bg-border);
    transition: var(--transition-fast);
}

.comparison-table tr:last-child {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.comparison-feature {
    padding: 1.5rem 2rem;
    font-weight: 500;
    color: var(--text-muted);
    border-right: 1px solid var(--bg-border);
}

.comparison-value {
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--bg-border);
}

.comparison-value:last-child {
    border-right: none;
    color: var(--text-muted);
}

.comparison-value.highlight {
    color: var(--neon-green);
    font-weight: 600;
    background: rgba(20, 241, 149, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}


/* Hero Slider Styles */
.hero-slider-container {
    position: relative;
    width: 100%;
    z-index: 5;
}


.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    width: 30px;
    border-radius: 6px;
}

/* Airdrop Countdown Styles */
.airdrop-section {
    background: linear-gradient(180deg, transparent 0%, rgba(153, 69, 255, 0.05) 50%, transparent 100%);
    padding: 6rem 0;
    position: relative;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-bottom: 3px solid var(--neon-purple);
    transition: transform 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.countdown-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* Responsive Overrides */
@media (max-width: 992px) {
    .section.hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-image {
        order: 2;
        max-width: 320px;
        margin: 0 auto;
    }
    .slider-dots {
        bottom: -20px !important;
    }
    .hero-slider-container {
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .countdown-container { gap: 1rem; }
    .countdown-box { min-width: 100px; padding: 1.5rem; }
    .countdown-number { font-size: 2.5rem; }
}
