/* WealthBag - Futuristic Cryptocurrency Website */
/* Color Palette: Purple, Green, Gold */

:root {
  --primary-purple: #bf3ed6;
  --secondary-purple: #fe5ab6;
  --accent-purple: #bf3ed6;
  --neon-green: #44c76a;
  --emerald-green: #44c76a;
  --gold: #fdf259;
  --dark-gold: #fdf259;
  --bg-dark: #0a0a0a;
  --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, rgba(191, 62, 214, 0.2) 30%, rgba(254, 90, 182, 0.15) 70%, #0a0a0a 100%);
  --text-light: #ffffff;
  --text-secondary: #b0b0b0;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(191, 62, 214, 0.3);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
  min-width: 320px; /* Minimum width to prevent breaking on very small screens */
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bg-gradient);
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-green);
  border-radius: 50%;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
  background: #fdf259;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  background: #bf3ed6;
}

.particle:nth-child(3) {
  top: 80%;
  left: 40%;
  animation-delay: 4s;
  background: #44c76a;
}

.particle:nth-child(4) {
  top: 40%;
  left: 60%;
  animation-delay: 1s;
  background: #fe5ab6;
}

.particle:nth-child(5) {
  top: 10%;
  left: 90%;
  animation-delay: 3s;
  background: #44c76a;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 3000;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navigation */
.crypto-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000; /* Increased z-index to stay above full screen banner */
  background: rgba(10, 10, 10, 0.95); /* Slightly more opaque for better visibility */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  padding: 1rem 0;
  width: 100%; /* Ensure full width */
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 6px var(--gold));
}

.logo-text {
  background: linear-gradient(45deg, #fdf259, #44c76a, #fe5ab6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--neon-green);
  background: var(--glass-bg);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-connect {
  background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple));
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

.btn-connect:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 2001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: linear-gradient(45deg, var(--gold), var(--neon-green));
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Mobile Menu Animation States */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: linear-gradient(45deg, var(--secondary-purple), var(--gold));
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: linear-gradient(45deg, var(--secondary-purple), var(--gold));
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, 
      rgba(10, 10, 10, 0.98) 0%, 
      rgba(25, 25, 35, 0.98) 50%, 
      rgba(15, 15, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-left: 2px solid var(--border-glow);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    width: 200px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-glow);
  }
  
  .nav-link:hover {
    color: var(--neon-green);
    background: linear-gradient(45deg, 
      rgba(68, 199, 106, 0.2) 0%, 
      rgba(191, 62, 214, 0.1) 100%);
    box-shadow: 0 0 25px rgba(68, 199, 106, 0.4);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-green);
  }
  
  /* Mobile menu overlay */
  .nav-links.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: -280px;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: -1;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal overflow */
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent scroll gaps between banner sections */
.first-banner-section + .banner-section {
  position: relative;
  z-index: 1;
}

/* Smooth scrolling and gap prevention */
html {
  scroll-behavior: smooth;
}

/* Ensure banners are perfectly aligned */
.first-banner-section,
.banner-section {
  will-change: transform;
  backface-visibility: hidden;
}

/* First Full Screen Banner */
.first-banner-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.first-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.first-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.6) contrast(1.2);
  /* Optimized for 1024x1024 original image */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* First banner content removed - now pure image banner */

/* Main Full Screen Banner */
.banner-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.5) contrast(1.3);
  /* Optimized for 1600x1600 high-resolution image */
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1.02); /* Slight scale to utilize full 1600x1600 resolution */
}

/* Banner content removed - now full screen banners without text overlay */

/* Banner glow animation removed - using revolutionGlow instead */

/* Revolution Section */
.revolution-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(25, 25, 35, 0.98) 25%,
    rgba(191, 62, 214, 0.1) 50%,
    rgba(25, 25, 35, 0.98) 75%,
    rgba(10, 10, 10, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(191, 62, 214, 0.2);
  border-bottom: 1px solid rgba(191, 62, 214, 0.2);
  overflow: hidden;
}

.revolution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(253, 242, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(68, 199, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(191, 62, 214, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.revolution-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.revolution-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 6vw, 8rem);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.revolution-highlight {
  background: linear-gradient(45deg, #fdf259, #44c76a, #fe5ab6, #bf3ed6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: revolutionGlow 4s ease-in-out infinite;
  position: relative;
}

.revolution-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(253, 242, 89, 0.3), 
    rgba(68, 199, 106, 0.3), 
    rgba(254, 90, 182, 0.3),
    rgba(191, 62, 214, 0.3)
  );
  background-size: 400% 400%;
  border-radius: 10px;
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  animation: revolutionGlow 4s ease-in-out infinite;
}

.revolution-subtitle {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  color: var(--text-light);
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

@keyframes revolutionGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 15px rgba(253, 242, 89, 0.8));
  }
  25% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 25px rgba(68, 199, 106, 0.9));
  }
  50% {
    background-position: 100% 100%;
    filter: drop-shadow(0 0 30px rgba(254, 90, 182, 1));
  }
  75% {
    background-position: 0% 100%;
    filter: drop-shadow(0 0 25px rgba(191, 62, 214, 0.9));
  }
}



/* Banner animations and image quality optimization */
.banner-section {
  animation: bannerSlideDown 1s ease-out;
}

.first-banner-section {
  animation: bannerSlideUp 1s ease-out;
}

@keyframes bannerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bannerSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Enhanced image loading and quality */
.first-banner-image,
.banner-image {
  transition: all 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.first-banner-image:hover,
.banner-image:hover {
  transform: scale(1.02);
  filter: brightness(0.8) contrast(1.1);
}

/* Full Screen Banner Image Optimization */
@media (min-width: 1600px) {
  /* High-resolution displays - take advantage of 1600x1600 second banner */
  .banner-image {
    transform: scale(1.0); /* Reset scale for very large screens */
    image-rendering: -webkit-optimize-contrast;
  }
  
  .first-banner-image {
    /* Maintain crisp rendering for 1024x1024 first banner */
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }
}

@media (max-width: 1599px) and (min-width: 1200px) {
  /* Standard desktop - optimize both images */
  .banner-image {
    transform: scale(1.01); /* Slight scale for better coverage */
  }
  
  .first-banner-image {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  /* Tablet and small desktop */
  .banner-image {
    transform: scale(1.05); /* More scaling for smaller screens */
    object-position: center 40%; /* Adjust position for better framing */
  }
  
  .first-banner-image {
    object-position: center 30%; /* Optimize first banner positioning */
  }
}

@media (max-width: 767px) {
  /* Mobile devices */
  .banner-image {
    transform: scale(1.1); /* Maximum scaling for mobile */
    object-position: center 35%;
    filter: brightness(0.6) contrast(1.4); /* Enhance visibility on small screens */
  }
  
  .first-banner-image {
    transform: scale(1.05);
    object-position: center 25%;
    filter: brightness(0.7) contrast(1.3);
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  margin-top: 0;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(45deg, #bf3ed6, #44c76a, #fdf259, #fe5ab6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--neon-green), var(--emerald-green));
  border: none;
  color: var(--bg-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.crypto-coin {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(45deg, #bf3ed6, #44c76a, #fdf259, #fe5ab6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coinRotate 10s linear infinite;
  box-shadow: 0 0 50px rgba(191, 62, 214, 0.5);
  position: relative;
}

.crypto-coin::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fdf259, #44c76a, #fe5ab6, #bf3ed6);
  z-index: -1;
  animation: coinRotate 8s linear infinite reverse;
}

.coin-inner {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  overflow: hidden;
}

.coin-logo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1) contrast(1.2);
  transition: all 0.3s ease;
}

.crypto-coin:hover .coin-logo {
  filter: brightness(1.3) contrast(1.4);
  transform: scale(1.05);
}

@keyframes coinRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Section Styles */
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #fdf259, #44c76a, #fe5ab6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Image Section */
.image-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.images-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* Glass reflection effect */
.image-container::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 40%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  border-radius: 25px 25px 0 0;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-container:hover::after {
  opacity: 0.8;
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.1) contrast(1.2);
  
  /* Multi-layer border effect with gradient */
  border: 5px solid transparent;
  background: 
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(45deg, 
      var(--gold) 0%, 
      var(--neon-green) 25%, 
      var(--primary-purple) 50%, 
      var(--secondary-purple) 75%, 
      var(--gold) 100%) border-box;
  
  /* Enhanced shadow system with multiple layers */
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.5),
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(191, 62, 214, 0.4),
    0 0 100px rgba(253, 242, 89, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-image:hover {
  transform: translateY(-15px) scale(1.03);
  filter: brightness(1.3) contrast(1.4);
  
  /* Animated gradient border on hover */
  background: 
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(45deg, 
      var(--gold) 0%, 
      var(--neon-green) 20%, 
      var(--primary-purple) 40%, 
      var(--secondary-purple) 60%, 
      var(--gold) 80%, 
      var(--neon-green) 100%) border-box;
  
  /* Intensified hover shadows */
  box-shadow: 
    0 35px 90px rgba(0, 0, 0, 0.6),
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(191, 62, 214, 0.6),
    0 0 120px rgba(253, 242, 89, 0.4),
    0 0 160px rgba(68, 199, 106, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Staggered animation delays for grid items */
.image-container:nth-child(1) .feature-image {
  animation-delay: 0s;
}

.image-container:nth-child(2) .feature-image {
  animation-delay: 0.1s;
}

.image-container:nth-child(3) .feature-image {
  animation-delay: 0.2s;
}

.image-container:nth-child(4) .feature-image {
  animation-delay: 0.3s;
}

/* Animated border gradient */
.feature-image::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 30px;
  background: linear-gradient(45deg, 
    var(--gold), 
    var(--neon-green), 
    var(--primary-purple), 
    var(--secondary-purple), 
    var(--gold));
  background-size: 400% 400%;
  z-index: -1;
  opacity: 0.7;
  animation: borderGradientMove 4s ease-in-out infinite;
  filter: blur(2px);
}

.feature-image:hover::before {
  opacity: 1;
  filter: blur(1px);
  animation-duration: 2s;
}

@keyframes borderGradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Grid hover effects */
.images-grid:hover .image-container:not(:hover) .feature-image {
  transform: scale(0.95);
  opacity: 0.7;
}

.images-grid .image-container .feature-image {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3);
  border-color: var(--neon-green);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Treasury Card Specific Styles */
.treasury-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.treasury-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(253, 242, 89, 0.4);
  border-color: var(--gold);
}

.treasury-card .feature-icon {
  transition: all 0.3s ease;
}

.treasury-card:hover .feature-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px var(--gold));
}

/* Click Me Button - Meme Style */
.click-me-btn {
  background: linear-gradient(45deg, #ff0000, #ff3333, #ff0000);
  background-size: 200% 200%;
  border: 3px solid #ff6666;
  color: #ffffff;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  margin-top: 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 15px rgba(255, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: redPulse 2s ease-in-out infinite;
}

.click-me-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(45deg, #ff3333, #ff0000, #ff3333);
  box-shadow: 
    0 8px 25px rgba(255, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: #ff0000;
  animation: redPulseHover 1s ease-in-out infinite;
}

.click-me-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 4px 15px rgba(255, 0, 0, 0.8),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.click-me-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: left 0.5s ease;
}

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

/* Red pulse animations */
@keyframes redPulse {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(255, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background-position: 0% 50%;
  }
  50% {
    box-shadow: 
      0 6px 20px rgba(255, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 50%;
  }
}

@keyframes redPulseHover {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(255, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1);
  }
  50% {
    box-shadow: 
      0 12px 35px rgba(255, 0, 0, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.2);
  }
}

/* Treasury Details Box */
.treasury-details-box {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
  opacity: 0;
  transform: translateY(-30px);
  width: 100%;
}

.treasury-details-box.active {
  max-height: 2500px;
  margin-top: 4rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.treasury-content {
  background: linear-gradient(135deg, 
    rgba(253, 242, 89, 0.15) 0%, 
    rgba(68, 199, 106, 0.12) 30%,
    rgba(191, 62, 214, 0.15) 70%,
    rgba(254, 90, 182, 0.1) 100%);
  border: 2px solid rgba(253, 242, 89, 0.4);
  border-radius: 25px;
  padding: 3rem;
  margin: 0;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(253, 242, 89, 0.2),
    0 10px 20px rgba(191, 62, 214, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.treasury-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(253, 242, 89, 0.1), 
    transparent);
  transition: left 0.5s ease;
}

.treasury-details-box.active .treasury-content::before {
  left: 100%;
}

.treasury-content h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(253, 242, 89, 0.5);
}

.treasury-content h5 {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  color: var(--neon-green);
  margin: 1.5rem 0 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.treasury-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.treasury-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.treasury-content li {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.treasury-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.treasury-content strong {
  color: var(--gold);
  font-weight: 600;
}

/* Treasury Card Animation States */
.treasury-card.expanded {
  background: linear-gradient(135deg, 
    rgba(253, 242, 89, 0.15) 0%, 
    rgba(68, 199, 106, 0.1) 50%, 
    rgba(191, 62, 214, 0.15) 100%);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(253, 242, 89, 0.3);
}

.treasury-card.expanded .feature-icon {
  animation: treasuryPulse 2s ease-in-out infinite;
}

.treasury-card.expanded .click-me-btn {
  opacity: 0;
  transform: translateY(-10px) scale(0.8);
  pointer-events: none;
  transition: all 0.4s ease;
}

@keyframes treasuryPulse {
  0%, 100% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--gold));
  }
  50% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 20px var(--gold));
  }
}

/* Treasury Box Responsive Design */
@media (max-width: 768px) {
  .treasury-content {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .treasury-details-box.active {
    margin-top: 3rem;
  }
  
  .treasury-content h4 {
    font-size: 1.2rem;
  }
  
  .treasury-content h5 {
    font-size: 1rem;
  }
  
  .click-me-btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .treasury-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .treasury-details-box.active {
    margin-top: 2rem;
  }
  
  .treasury-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .treasury-content h5 {
    font-size: 0.95rem;
    margin: 1rem 0 0.5rem 0;
  }
  
  .treasury-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .click-me-btn {
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
  }
}

/* Tokenomics Section */
.tokenomics-section {
  padding: 6rem 0;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chart-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(
    #44c76a 0% 40%,
    #bf3ed6 40% 70%,
    #fdf259 70% 90%,
    #fe5ab6 90% 100%
  );
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 30px rgba(191, 62, 214, 0.5);
}

.chart-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--bg-dark);
  border-radius: 50%;
}

.tokenomics-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border-radius: 10px;
  border: 1px solid var(--border-glow);
}

.token-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.color-1 { background: #44c76a; }
.color-2 { background: #bf3ed6; }
.color-3 { background: #fdf259; }
.color-4 { background: #fe5ab6; }

/* Chart Section */
.chart-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(25, 25, 35, 0.98) 25%,
    rgba(68, 199, 106, 0.08) 50%,
    rgba(25, 25, 35, 0.98) 75%,
    rgba(10, 10, 10, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(68, 199, 106, 0.2);
  border-bottom: 1px solid rgba(68, 199, 106, 0.2);
  position: relative;
  overflow: hidden;
}

.chart-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(68, 199, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(191, 62, 214, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(253, 242, 89, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.chart-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.chart-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(68, 199, 106, 0.3);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(68, 199, 106, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}

.chart-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(68, 199, 106, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.chart-wrapper:hover::before {
  left: 100%;
}

.chart-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(68, 199, 106, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(68, 199, 106, 0.3);
}

#dextools-widget {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  height: 500px;
  min-width: 300px;
  min-height: 250px;
}

#dextools-widget:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.chart-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.chart-feature {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.chart-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(68, 199, 106, 0.3);
  border-color: var(--neon-green);
}

.chart-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px var(--neon-green));
}

.chart-feature h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--neon-green);
}

.chart-feature p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Swap Section */
.swap-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.swap-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-light);
  margin: 0;
  background: linear-gradient(45deg, #fdf259, #44c76a, #bf3ed6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(68, 199, 106, 0.3));
}

.swap-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(191, 62, 214, 0.3);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(191, 62, 214, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.swap-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(191, 62, 214, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.swap-wrapper:hover::before {
  left: 100%;
}

.swap-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 62, 214, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(191, 62, 214, 0.3);
}

#dextswap-aggregator-widget {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: #ffffff;
  max-width: 100%;
  width: 100%;
  height: 420px;
  min-width: 280px;
}

#dextswap-aggregator-widget:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Roadmap Section */
.roadmap-section {
  padding: 6rem 0;
}

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

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #44c76a, #fdf259, #fe5ab6, #bf3ed6);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 2rem;
}

.timeline-item:nth-child(odd) {
  padding-right: 2rem;
  text-align: right;
}

.timeline-marker {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fdf259;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 15px #fdf259;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -10px;
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -10px;
}

.timeline-item.completed .timeline-marker {
  background: #44c76a;
  box-shadow: 0 0 15px #44c76a;
}

.timeline-item.active .timeline-marker {
  background: #bf3ed6;
  box-shadow: 0 0 15px #bf3ed6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 15px #bf3ed6;
  }
  50% {
    box-shadow: 0 0 25px #bf3ed6;
  }
}

.timeline-content {
  background: var(--glass-bg);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-glow);
}

.timeline-content h3 {
  font-family: 'Orbitron', monospace;
  color: #fdf259;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding: 1rem 0;
  /* Smooth scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.social-links::-webkit-scrollbar {
  display: none;
}

.social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-light);
  border: 2px solid transparent;
  font-weight: 500;
  font-size: 0.9rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  min-width: 120px;
  white-space: nowrap;
}

.social-link::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.6s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Telegram specific styling */
.social-link:nth-child(1) {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.2) 0%, rgba(0, 136, 204, 0.1) 100%);
  border: 2px solid rgba(0, 136, 204, 0.3);
}

.social-link:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.3) 0%, rgba(0, 136, 204, 0.15) 100%);
  border-color: #0088cc;
  color: #0088cc;
  box-shadow: 0 15px 40px rgba(0, 136, 204, 0.4);
}

/* Twitter/X specific styling */
.social-link:nth-child(2) {
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.2) 0%, rgba(29, 161, 242, 0.1) 100%);
  border: 2px solid rgba(29, 161, 242, 0.3);
}

.social-link:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.3) 0%, rgba(29, 161, 242, 0.15) 100%);
  border-color: #1da1f2;
  color: #1da1f2;
  box-shadow: 0 15px 40px rgba(29, 161, 242, 0.4);
}

/* Discord specific styling */
.social-link:nth-child(3) {
  background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(114, 137, 218, 0.1) 100%);
  border: 2px solid rgba(114, 137, 218, 0.3);
}

.social-link:nth-child(3):hover {
  background: linear-gradient(135deg, rgba(114, 137, 218, 0.3) 0%, rgba(114, 137, 218, 0.15) 100%);
  border-color: #7289da;
  color: #7289da;
  box-shadow: 0 15px 40px rgba(114, 137, 218, 0.4);
}

/* YouTube specific styling */
.social-link:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
  border: 2px solid rgba(255, 0, 0, 0.3);
}

.social-link:nth-child(4):hover {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.15) 100%);
  border-color: #ff0000;
  color: #ff0000;
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 0 0px transparent);
}

.social-link:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px currentColor);
}

/* Pulse animation for social links */
@keyframes socialPulse {
  0% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(68, 199, 106, 0.1);
  }
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

.social-link {
  animation: socialPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0) * 0.5s);
}

.social-link:nth-child(1) { --delay: 0; }
.social-link:nth-child(2) { --delay: 1; }
.social-link:nth-child(3) { --delay: 2; }
.social-link:nth-child(4) { --delay: 3; }

/* Footer */
.crypto-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glow);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
}

.footer-text {
  color: var(--text-secondary);
}

/* Responsive Design */

/* Extra Large screens (1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  .nav-container {
    max-width: 1400px;
  }
  
  .first-banner-title {
    font-size: 9rem;
  }
  
  .first-banner-subtitle {
    font-size: 3.5rem;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .crypto-coin {
    width: 450px;
    height: 450px;
  }
  
  .coin-inner {
    width: 380px;
    height: 380px;
  }
  
  .coin-logo {
    width: 280px;
    height: 280px;
  }
  
  .images-grid {
    max-width: 1500px;
    gap: 2.5rem;
  }
}

/* Large screens (1200px to 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .first-banner-title {
    font-size: 7rem;
  }
  
  .first-banner-subtitle {
    font-size: 2.8rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Medium Large screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 1.5rem;
  }
  
  .nav-container {
    max-width: 960px;
    padding: 0 1.5rem;
  }
  
  /* Banner sections now use full screen - no specific medium-large rules needed */
  
  .hero-container {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .crypto-coin {
    width: 350px;
    height: 350px;
  }
  
  .coin-inner {
    width: 290px;
    height: 290px;
  }
  
  .coin-logo {
    width: 220px;
    height: 220px;
  }
  
  .chart-placeholder {
    width: 250px;
    height: 250px;
  }
  
  .chart-placeholder::after {
    width: 120px;
    height: 120px;
  }
}

/* Medium screens (768px to 991px) - Tablets */
@media (max-width: 991px) and (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 1rem;
  }
  
  .nav-container {
    max-width: 720px;
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-connect {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* Banner sections now use full screen - no specific tablet rules needed */
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .crypto-coin {
    width: 320px;
    height: 320px;
  }
  
  .coin-inner {
    width: 260px;
    height: 260px;
  }
  
  .coin-logo {
    width: 200px;
    height: 200px;
  }
  
  .image-section {
    padding: 4rem 0;
  }
  
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
  }
  
  .feature-image {
    border-radius: 15px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .chart-placeholder {
    width: 280px;
    height: 280px;
  }
  
  .chart-container {
    gap: 3rem;
  }
  
  .chart-wrapper {
    padding: 1.5rem;
    max-width: 900px;
  }
  
  #dextools-widget {
    width: 100%;
    max-width: 800px;
    height: 450px;
  }
  
  .chart-info {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .swap-title {
    font-size: 1.6rem;
  }
  
  .swap-wrapper {
    padding: 1.5rem;
    max-width: 450px;
  }
  
  #dextswap-aggregator-widget {
    width: 100%;
    max-width: 400px;
    height: 400px;
  }
  
  .social-links {
    gap: 0.8rem;
    max-width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
  }
  
  .social-link {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
  }
  
  .social-icon {
    width: 26px;
    height: 26px;
  }
}

/* Small screens (576px to 767px) - Large Mobile */
@media (max-width: 767px) and (min-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    font-size: 1.8rem;
  }
  
  .btn-connect {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Banner sections now use full screen - responsive text handled in main responsive section */
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .crypto-coin {
    width: 280px;
    height: 280px;
  }
  
  .coin-inner {
    width: 230px;
    height: 230px;
    font-size: 1.8rem;
  }
  
  .coin-logo {
    width: 180px;
    height: 180px;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .image-section {
    padding: 3rem 0;
  }
  
  .images-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .feature-image {
    border-radius: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chart-placeholder {
    width: 250px;
    height: 250px;
  }
  
  .chart-placeholder::after {
    width: 120px;
    height: 120px;
  }
  
  .chart-container {
    gap: 2rem;
  }
  
  .chart-wrapper {
    padding: 1.2rem;
    max-width: 700px;
  }
  
  #dextools-widget {
    width: 100%;
    max-width: 650px;
    height: 400px;
  }
  
  .chart-info {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .chart-feature {
    padding: 1.2rem;
  }
  
  .chart-feature-icon {
    font-size: 2.2rem;
  }
  
  .chart-feature h3 {
    font-size: 1.2rem;
  }
  
  .swap-title {
    font-size: 1.5rem;
  }
  
  .swap-wrapper {
    padding: 1.2rem;
    max-width: 400px;
  }
  
  #dextswap-aggregator-widget {
    width: 100%;
    max-width: 350px;
    height: 380px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker,
  .timeline-item:nth-child(odd) .timeline-marker {
    left: -10px;
    right: auto;
  }
  
  .roadmap-timeline::before {
    left: 0;
  }
  
  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
  }
  
  .social-link {
    flex-shrink: 0;
    min-width: 100px;
    max-width: 140px;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Extra Small screens (up to 575px) - Small Mobile */
@media (max-width: 575px) {
  .container {
    padding: 0 0.8rem;
  }
  
  .nav-container {
    padding: 0 0.8rem;
  }
  
  .crypto-nav {
    padding: 0.8rem 0;
  }
  
  .nav-links {
    width: 100vw;
    right: -100vw;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    width: 250px;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    font-size: 1.6rem;
  }
  
  .btn-connect {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  /* Banner sections now use full screen - responsive text handled in main responsive section */
  
  .hero-section {
    padding-top: 1rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0 0.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .stat {
    min-width: 80px;
  }
  
  .stat-value {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .crypto-coin {
    width: 240px;
    height: 240px;
  }
  
  .coin-inner {
    width: 200px;
    height: 200px;
    font-size: 1.5rem;
  }
  
  .coin-logo {
    width: 150px;
    height: 150px;
  }
  
  .about-section, .tokenomics-section, .roadmap-section, .contact-section {
    padding: 4rem 0;
  }
  
  .image-section {
    padding: 2.5rem 0;
  }
  
  .images-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 320px;
  }
  
  .feature-image {
    border-radius: 10px;
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(191, 62, 214, 0.15);
  }
  
  .feature-image:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
      0 20px 50px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(191, 62, 214, 0.3);
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .feature-card {
    padding: 1.2rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chart-placeholder {
    width: 220px;
    height: 220px;
  }
  
  .chart-placeholder::after {
    width: 100px;
    height: 100px;
  }
  
  .token-detail {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .chart-container {
    gap: 1.5rem;
  }
  
  .chart-wrapper {
    padding: 1rem;
    max-width: 500px;
  }
  
  #dextools-widget {
    width: 100%;
    max-width: 450px;
    height: 350px;
  }
  
  .chart-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .chart-feature {
    padding: 1rem;
  }
  
  .chart-feature-icon {
    font-size: 2rem;
  }
  
  .chart-feature h3 {
    font-size: 1.1rem;
  }
  
  .chart-feature p {
    font-size: 0.9rem;
  }
  
  .swap-section {
    gap: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .swap-title {
    font-size: 1.3rem;
  }
  
  .swap-wrapper {
    padding: 1rem;
    max-width: 350px;
  }
  
  #dextswap-aggregator-widget {
    width: 100%;
    max-width: 320px;
    height: 350px;
    min-width: 280px;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 1.5rem;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker,
  .timeline-item:nth-child(odd) .timeline-marker {
    left: -10px;
    right: auto;
    width: 16px;
    height: 16px;
  }
  
  .roadmap-timeline::before {
    left: 0;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  
  .timeline-content p {
    font-size: 0.9rem;
  }
  
  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    max-width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem;
  }
  
  .social-link {
    flex-shrink: 0;
    min-width: 90px;
    max-width: 120px;
    justify-content: center;
    padding: 0.7rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 15px;
    gap: 0.3rem;
  }
  
  .social-link:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .social-icon {
    width: 22px;
    height: 22px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-brand {
    font-size: 1.1rem;
  }
  
  .footer-text {
    font-size: 0.85rem;
  }
}

/* Ultra Small screens (up to 320px) - Very Small Mobile */
@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .nav-container {
    padding: 0 0.5rem;
  }
  
  .nav-link {
    width: 220px;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  
  .mobile-menu-btn {
    padding: 0.3rem;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2.5px;
  }
  
  /* Banner sections now use full screen - responsive text handled in main responsive section */
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .crypto-coin {
    width: 200px;
    height: 200px;
  }
  
  .coin-inner {
    width: 170px;
    height: 170px;
  }
  
  .coin-logo {
    width: 130px;
    height: 130px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .chart-placeholder {
    width: 180px;
    height: 180px;
  }
  
  .chart-placeholder::after {
    width: 80px;
    height: 80px;
  }
  
  .chart-wrapper {
    padding: 0.8rem;
    max-width: 320px;
  }
  
  #dextools-widget {
    width: 100%;
    max-width: 300px;
    height: 280px;
  }
  
  .chart-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .chart-feature {
    padding: 0.8rem;
  }
  
  .chart-feature-icon {
    font-size: 1.8rem;
  }
  
  .chart-feature h3 {
    font-size: 1rem;
  }
  
  .chart-feature p {
    font-size: 0.85rem;
  }
  
  .swap-section {
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .swap-title {
    font-size: 1.1rem;
  }
  
  .swap-wrapper {
    padding: 0.8rem;
    max-width: 310px;
  }
  
  #dextswap-aggregator-widget {
    width: 100%;
    max-width: 280px;
    height: 320px;
    min-width: 260px;
  }
  
  .social-links {
    max-width: 100%;
    gap: 0.3rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.3rem;
  }
  
  .social-link {
    flex-shrink: 0;
    min-width: 70px;
    max-width: 95px;
    padding: 0.6rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 12px;
    gap: 0.2rem;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
}