@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

/* HERO ARGUS - CLON PIXEL PERFECTO */
.hero-argus2 {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 150% 120% at 50% 50%, #2563eb 0%, #1e40af 20%, #1e3a8a 40%, #0f172a 70%, #020617 100%);
  overflow: hidden;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', 'Inter', sans-serif;
}

/* Fondo con light leaks diagonales */
.hero-argus2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Light leak izquierdo (rayo diagonal blanco) */
.hero-argus2-bg::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -12%;
  width: 350px;
  height: 130vh;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(230, 245, 255, 0.9) 15%,
    rgba(190, 220, 255, 0.6) 35%,
    rgba(140, 180, 255, 0.3) 55%,
    transparent 80%);
  transform: rotate(-18deg);
  filter: blur(100px);
  opacity: 0.9;
  z-index: 3;
}

/* Light leak derecho (rayo diagonal blanco) */
.hero-argus2-bg::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -12%;
  width: 350px;
  height: 130vh;
  background: linear-gradient(205deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(230, 245, 255, 0.9) 15%,
    rgba(190, 220, 255, 0.6) 35%,
    rgba(140, 180, 255, 0.3) 55%,
    transparent 80%);
  transform: rotate(18deg);
  filter: blur(100px);
  opacity: 0.9;
  z-index: 3;
}

/* Arco blanco fino con blur masivo */
.hero-argus2-arc {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1400px;
  max-width: 2800px;
  height: 280px;
  filter:
    blur(6px)
    drop-shadow(0 0 40px rgba(255, 255, 255, 1))
    drop-shadow(0 0 80px rgba(220, 235, 255, 0.9))
    drop-shadow(0 0 120px rgba(180, 200, 255, 0.7))
    drop-shadow(0 0 160px rgba(140, 170, 255, 0.5));
  opacity: 1;
  z-index: 6;
}

/* Glow azul circular bajo la letra central */
.hero-argus2-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(59, 130, 246, 0.8) 0%,
    rgba(29, 78, 216, 0.6) 15%,
    rgba(15, 60, 180, 0.4) 30%,
    rgba(8, 40, 120, 0.2) 50%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 1;
  z-index: 4;
  pointer-events: none;
}

/* Contenido */
.hero-argus2-content {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Fila de letras con MUCHO espacio */
.hero-argus2-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(100px, 18vw, 320px);
  margin-bottom: clamp(50px, 8vh, 100px);
  width: 100%;
  padding: 0 5vw;
}

/* Letras gigantes */
.hero-argus2-row span {
  color: #ffffff;
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.85;
  user-select: none;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(220, 235, 255, 0.3),
    0 0 60px rgba(180, 200, 255, 0.1);
}

/* Subtítulo */
.hero-argus2-title {
  color: #ffffff;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0 0 clamp(45px, 7vh, 80px) 0;
  text-transform: uppercase;
  padding: 0 20px;
}

/* Botón CTA */
.hero-argus2-btn {
  display: inline-block;
  padding: 24px 72px;
  background: #ffffff;
  color: #0f172a;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow:
    0 10px 40px rgba(255, 255, 255, 0.2),
    0 4px 16px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.hero-argus2-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow:
    0 14px 50px rgba(255, 255, 255, 0.25),
    0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Garantía */
.hero-argus2-guarantee {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  font-weight: 400;
  text-align: center;
  padding: 0 20px;
}

/* ===== QUANTUM TECHNOLOGY SECTION - ARGUS STYLE ===== */
.quantum-technology-argus {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 150% 120% at 50% 50%, #2563eb 0%, #1e40af 20%, #1e3a8a 40%, #0f172a 70%, #020617 100%);
  overflow: hidden;
  padding: 120px 0;
  color: white;
}

/* Background Effects */
.quantum-argus-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Light leaks diagonales */
.argus-light-leak {
  position: absolute;
  width: 350px;
  height: 130vh;
  filter: blur(100px);
  opacity: 0.9;
}

.argus-light-leak-left {
  top: -25%;
  left: -12%;
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(230, 245, 255, 0.9) 15%,
    rgba(190, 220, 255, 0.6) 35%,
    rgba(140, 180, 255, 0.3) 55%,
    transparent 80%);
  transform: rotate(-18deg);
}

.argus-light-leak-right {
  top: -25%;
  right: -12%;
  background: linear-gradient(205deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(230, 245, 255, 0.9) 15%,
    rgba(190, 220, 255, 0.6) 35%,
    rgba(140, 180, 255, 0.3) 55%,
    transparent 80%);
  transform: rotate(18deg);
}

/* Arco blanco superior */
.argus-white-arc {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1400px;
  max-width: 2800px;
  height: 280px;
  z-index: 6;
}

/* Container principal */
.quantum-argus-container {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Título principal */
.quantum-argus-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Subtítulo */
.quantum-argus-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 80px 0;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Grid de características */
.quantum-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjetas de características */
.quantum-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quantum-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Contenedor del ícono */
.feature-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ffffff;
  z-index: 2;
}

/* Títulos de características */
.feature-title {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1200px) {
  .quantum-features-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .quantum-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .quantum-argus-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .quantum-technology-argus {
    padding: 80px 0;
  }

  .quantum-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .quantum-argus-container {
    padding: 0 20px;
  }

  .argus-white-arc {
    min-width: 900px;
  }
}

@media (max-width: 480px) {
  .quantum-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quantum-feature-card {
    padding: 30px 15px;
  }

  .feature-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .argus-white-arc {
    min-width: 600px;
  }

  .argus-light-leak {
    width: 250px;
    filter: blur(80px);
  }
}

/* ===== TOKENOMICS SECTION - PREMIUM MODERN ===== */
.tokenomics-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0f1e 0%, #0f1729 50%, #0a0f1e 100%);
  overflow: hidden;
  padding: 120px 0;
  color: white;
}

/* Background Effects */
.tokenomics-argus-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Gráfico circular animado (globo terráqueo digital) */
.tokenomics-globe-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}

.tokenomics-globe {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.8) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(147, 51, 234, 0.6) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.4) 0%, transparent 40%);
  animation: globeRotate 20s linear infinite;
  box-shadow:
    0 0 100px rgba(59, 130, 246, 0.5),
    inset 0 0 100px rgba(59, 130, 246, 0.2);
}

.globe-surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  animation: globePulse 4s ease-in-out infinite;
}

.globe-particles {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.8)),
    radial-gradient(2px 2px at 40% 70%, rgba(59, 130, 246, 0.8)),
    radial-gradient(1px 1px at 90% 40%, rgba(147, 51, 234, 0.8)),
    radial-gradient(1px 1px at 60% 20%, rgba(16, 185, 129, 0.8)),
    radial-gradient(2px 2px at 80% 80%, rgba(255,255,255,0.6));
  animation: particlesFloat 8s ease-in-out infinite;
}

.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.1) 90deg, transparent 180deg, rgba(255,255,255,0.1) 270deg, transparent 360deg);
  animation: gridRotate 15s linear infinite reverse;
}

/* Estadísticas con líneas apuntando al gráfico */
.tokenomics-stats {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.stat-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-left {
  left: 15%;
  top: 30%;
}

.stat-right {
  right: 15%;
  top: 30%;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.stat-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  position: relative;
}

.stat-left .stat-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.stat-right .stat-line {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
}

/* Container principal */
.tokenomics-argus-container {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Título principal */
.tokenomics-argus-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* Subtítulo */
.tokenomics-argus-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 80px 0;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Grid de información adicional */
.tokenomics-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
}

.info-card p {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Animaciones */
@keyframes globeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes globePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes particlesFloat {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

@keyframes gridRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1200px) {
  .tokenomics-globe-container {
    width: 500px;
    height: 500px;
  }

  .tokenomics-info-grid {
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .tokenomics-globe-container {
    width: 400px;
    height: 400px;
  }

  .tokenomics-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .tokenomics-argus-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .tokenomics-argus {
    padding: 80px 0;
  }

  .tokenomics-globe-container {
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
  }

  .tokenomics-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tokenomics-argus-container {
    padding: 0 20px;
  }

  .stat-left, .stat-right {
    position: static;
    margin: 20px 0;
  }

  .tokenomics-stats {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Background Effects */
.tokenomics-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 15s ease-in-out infinite;
}

.bg-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -30px); }
}

.tokenomics-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.tokenomics-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  color: #00d4ff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tokenomics-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.tokenomics-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Stats */
.tokenomics-main-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.main-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.main-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
}

.main-stat-card .stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00d4ff;
}

.main-stat-card .stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1;
}

.main-stat-card .stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Distribution Chart */
.tokenomics-distribution {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.distribution-chart-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

#tokenomicsChart {
  width: 100%;
  height: 100%;
}

.chart-center-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-center-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.chart-center-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Legend */
.distribution-legend {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.legend-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(10px);
}

.legend-color {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}

.legend-item[data-color="#00d4ff"] .legend-color { background: #00d4ff; }
.legend-item[data-color="#7c3aed"] .legend-color { background: #7c3aed; }
.legend-item[data-color="#10b981"] .legend-color { background: #10b981; }
.legend-item[data-color="#f59e0b"] .legend-color { background: #f59e0b; }

.legend-info {
  flex: 1;
}

.legend-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.legend-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.legend-amount {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Features */
.tokenomics-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00d4ff;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .tokenomics-distribution {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .distribution-chart-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .tokenomics-container {
    padding: 0 20px;
  }
  
  .tokenomics-main-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .distribution-chart-container {
    width: 300px;
    height: 300px;
  }
  
  .legend-item {
    padding: 15px;
  }
  
  .legend-color {
    width: 40px;
    height: 40px;
  }
  
  .tokenomics-features {
    grid-template-columns: 1fr;
  }
}

/* ===== ECOSYSTEM SECTION - ARGUS STYLE ===== */
.ecosystem-argus {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #050a1e 0%, #0a0f2e 50%, #0f1540 100%);
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Effects */
.ecosystem-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ecosystem-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.ecosystem-glow-left {
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 20%;
  left: -200px;
  animation: float1 20s ease-in-out infinite;
}

.ecosystem-glow-right {
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: 10%;
  right: -200px;
  animation: float2 18s ease-in-out infinite;
}

.ecosystem-grid-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: 
    linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  opacity: 0.3;
}

.ecosystem-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Content Wrapper */
.ecosystem-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text Content */
.ecosystem-text-content {
  padding-right: 40px;
}

.ecosystem-title {
  margin: 0 0 30px 0;
}

.title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 10px;
}

.ecosystem-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.ecosystem-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.ecosystem-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 18px 50px;
  background: #ffffff;
  color: #0a0f1e;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.ecosystem-cta-button:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.ecosystem-guarantee {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Phone Mockup */
.ecosystem-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 340px;
  height: 680px;
  background: linear-gradient(180deg, #1a1f3a 0%, #0f1428 100%);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 40px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0f2e 0%, #0f1540 50%, #1a1f4a 100%);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 5px;
}

.phone-status-left i,
.phone-status-right i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.phone-logo {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

.phone-timer {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(100, 150, 255, 0.5);
}

.phone-location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-location::before {
  content: '📍';
  font-size: 0.9rem;
}

#ecosystemPlanetCanvas {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.phone-connection-btn {
  margin-top: auto;
  padding: 12px 40px;
  background: rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .ecosystem-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .ecosystem-text-content {
    padding-right: 0;
    text-align: center;
  }
  
  .ecosystem-cta-group {
    align-items: center;
  }
  
  .phone-frame {
    width: 300px;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .ecosystem-argus {
    padding: 80px 0;
  }
  
  .ecosystem-container {
    padding: 0 20px;
  }
  
  .phone-frame {
    width: 280px;
    height: 560px;
  }
  
  .phone-timer {
    font-size: 2.5rem;
  }
}

/* ===== PERFORMANCE SECTION - REDESIGNED TOP ===== */
.performance-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0f1e 0%, #0f1428 50%, #0a0f1e 100%);
  padding: 120px 0;
  overflow: hidden;
}

.performance-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.performance-glow-top,
.performance-glow-bottom {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
}

.performance-glow-top {
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  top: -300px;
  right: -200px;
}

.performance-glow-bottom {
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -300px;
  left: -200px;
}

.performance-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.performance-header {
  text-align: center;
  margin-bottom: 60px;
}

.perf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  color: #00d4ff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.perf-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  letter-spacing: -0.02em;
}

.perf-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.perf-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Big Cards (Top Row) */
.perf-big-card {
  grid-column: span 1;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.perf-big-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
}

.perf-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.perf-big-card:hover .perf-card-bg {
  opacity: 1;
}

.perf-card-content {
  position: relative;
  z-index: 2;
}

.perf-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.perf-icon-wrapper i {
  font-size: 1.8rem;
  color: #00d4ff;
}

.perf-metric-value {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.perf-metric-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.perf-trend {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
}

.trend-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.perf-mini-viz {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.block-pulse {
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 255, 0.2);
  border: 2px solid rgba(0, 212, 255, 0.5);
  border-radius: 8px;
  animation: pulse-block 2s ease-in-out infinite;
}

.block-pulse:nth-child(2) { animation-delay: 0.2s; }
.block-pulse:nth-child(3) { animation-delay: 0.4s; }
.block-pulse:nth-child(4) { animation-delay: 0.6s; }

@keyframes pulse-block {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.perf-info-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Small Cards */
.perf-small-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.perf-small-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

.perf-small-content {
  position: relative;
  z-index: 2;
}

.perf-small-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.perf-small-icon i {
  font-size: 1.4rem;
  color: #00d4ff;
}

.perf-small-value {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.perf-small-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.perf-small-viz {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.node-dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.node-dot:nth-child(2) { animation-delay: 0.2s; }
.node-dot:nth-child(3) { animation-delay: 0.4s; }

.perf-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

.perf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #10b981);
  border-radius: 10px;
  transition: width 1s ease;
}

.perf-shield-viz,
.perf-fire-viz {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.perf-shield-viz i {
  color: #10b981;
}

.perf-fire-viz i {
  color: #f59e0b;
  animation: fire-flicker 1s ease-in-out infinite;
}

@keyframes fire-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.perf-status-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Info Bar */
.perf-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin-top: 20px;
}

.perf-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.perf-info-item i {
  color: #00d4ff;
  font-size: 1.2rem;
}

.perf-info-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .perf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .perf-info-bar {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .performance-modern {
    padding: 80px 0;
  }
  
  .performance-container {
    padding: 0 20px;
  }
  
  .perf-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .perf-big-card,
  .perf-small-card {
    padding: 25px;
  }
}

/* ===== COMMUNITY SECTION - REDESIGNED TOP ===== */
.community-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0f1428 0%, #0a0f1e 50%, #0f1428 100%);
  padding: 120px 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.community-glow-left,
.community-glow-right {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.25;
}

.community-glow-left {
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 10%;
  left: -250px;
}

.community-glow-right {
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  bottom: 10%;
  right: -250px;
}

.community-grid-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background:
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.community-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.community-header {
  text-align: center;
  margin-bottom: 60px;
}

.comm-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.comm-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.comm-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Social Networks Grid */
.comm-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.comm-social-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px 30px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comm-social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discord-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
  opacity: 1;
}

.telegram-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(38, 166, 226, 0.15) 0%, transparent 70%);
  opacity: 1;
}

.twitter-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(29, 161, 242, 0.15) 0%, transparent 70%);
  opacity: 1;
}

.github-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  opacity: 1;
}

.reddit-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
  opacity: 1;
}

.youtube-card:hover .social-card-bg {
  background: radial-gradient(circle at top, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
  opacity: 1;
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.discord-card .social-icon {
  background: rgba(88, 101, 242, 0.15);
  color: #5865f2;
}

.telegram-card .social-icon {
  background: rgba(38, 166, 226, 0.15);
  color: #26a6e2;
}

.twitter-card .social-icon {
  background: rgba(29, 161, 242, 0.15);
  color: #1da1f2;
}

.github-card .social-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.reddit-card .social-icon {
  background: rgba(255, 69, 0, 0.15);
  color: #ff4500;
}

.youtube-card .social-icon {
  background: rgba(255, 0, 0, 0.15);
  color: #ff0000;
}

.comm-social-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 2;
}

.social-members {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
}

.social-status,
.social-activity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { 
    transform: scale(1); 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% { 
    transform: scale(1.2); 
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.social-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.comm-social-card:hover .social-cta {
  gap: 12px;
  color: #ffffff;
}

/* Stats Banner */
.comm-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  margin-bottom: 60px;
}

.comm-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00d4ff;
  flex-shrink: 0;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Box */
.comm-cta-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.comm-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
  opacity: 0.5;
}

.cta-box-icon {
  width: 80px;
  height: 80px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #a78bfa;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cta-box-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cta-box-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.cta-box-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.cta-box-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #ffffff;
  color: #0a0f1e;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.cta-box-button:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .comm-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comm-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .comm-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .community-modern {
    padding: 80px 0;
  }

  .community-container {
    padding: 0 20px;
  }

  .comm-social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comm-stats-banner {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .comm-stat-item {
    justify-content: center;
  }
}

/* ===== FOOTER - REDESIGNED TOP ===== */
.footer-modern {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #0a0f1e 0%, #050810 100%);
  padding: 80px 0 0 0;
  overflow: hidden;
  color: white;
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-glow-top {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  top: -200px;
  left: 10%;
  filter: blur(100px);
}

.footer-glow-bottom {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
  filter: blur(100px);
}

.footer-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main Footer */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.logo-img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 350px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.twitter-btn:hover {
  background: rgba(29, 161, 242, 0.15);
  border-color: #1da1f2;
  color: #1da1f2;
}

.telegram-btn:hover {
  background: rgba(38, 166, 226, 0.15);
  border-color: #26a6e2;
  color: #26a6e2;
}

.discord-btn:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: #5865f2;
  color: #5865f2;
}

.github-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Footer Stats */
.footer-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.stat-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-stat 2s ease-in-out infinite;
}

@keyframes pulse-stat {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% { 
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.footer-stat-item i {
  color: #00d4ff;
  font-size: 0.9rem;
}

/* Links Wrapper */
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 30px;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  margin-bottom: 40px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a78bfa;
  flex-shrink: 0;
}

.newsletter-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.newsletter-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  width: 280px;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #a78bfa;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.copyright strong {
  color: #ffffff;
  font-weight: 600;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #00d4ff;
}

/* Back to Top */
.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: #00d4ff;
  color: #00d4ff;
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 60px 0 0 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-newsletter {
    padding: 25px 20px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 15px;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== CTA SECTION - REDESIGNED TOP ===== */
.cta-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0f1e 0%, #1a0f2e 50%, #0a0f1e 100%);
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Effects */
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-glow-center {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, rgba(0, 212, 255, 0.15) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(150px);
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.cta-rays {
  position: absolute;
  inset: 0;
  background: 
    conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(124, 58, 237, 0.1) 45deg,
      transparent 90deg,
      rgba(0, 212, 255, 0.1) 135deg,
      transparent 180deg,
      rgba(124, 58, 237, 0.1) 225deg,
      transparent 270deg,
      rgba(0, 212, 255, 0.1) 315deg,
      transparent 360deg
    );
  animation: rotate-rays 20s linear infinite;
}

@keyframes rotate-rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Particles */
.cta-particles-wrapper {
  position: absolute;
  inset: 0;
}

.cta-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d4ff;
  animation: particle-float 15s ease-in-out infinite;
}

.cta-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-particle:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 3s;
}

.cta-particle:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 6s;
}

.cta-particle:nth-child(4) {
  bottom: 25%;
  right: 25%;
  animation-delay: 9s;
}

.cta-particle:nth-child(5) {
  bottom: 40%;
  left: 30%;
  animation-delay: 12s;
}

@keyframes particle-float {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(50px, -50px); opacity: 0.8; }
  50% { transform: translate(0, -100px); opacity: 0.3; }
  75% { transform: translate(-50px, -50px); opacity: 0.8; }
}

/* Container */
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Main Content */
.cta-main-content {
  display: flex;
  flex-direction: column;
}

.cta-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 25px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { 
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7);
  }
  50% { 
    opacity: 0.7;
    box-shadow: 0 0 0 8px rgba(167, 139, 250, 0);
  }
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.cta-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 600px;
}

/* Stats Grid */
.cta-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cta-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 1.2rem;
}

.stat-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-card-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Action Buttons */
.cta-actions-modern {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.cta-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.6);
}

.btn-shine {
  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;
}

.cta-btn-primary:hover .btn-shine {
  left: 100%;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Features List */
.cta-features-list {
  display: flex;
  gap: 25px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cta-feature-item i {
  color: #10b981;
  font-size: 1rem;
}

/* Side Panel */
.cta-side-panel {
  position: relative;
}

.panel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #00d4ff);
}

.panel-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.panel-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.panel-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.panel-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.offer-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.offer-item i {
  font-size: 1.3rem;
  color: #f59e0b;
  margin-top: 2px;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.offer-text strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.offer-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.panel-card-footer {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.time-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(124, 58, 237, 0.2);
  padding: 10px 15px;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
}

.time-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1200px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cta-modern {
    padding: 80px 0;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .cta-stat-card {
    padding: 15px;
  }

  .stat-card-value {
    font-size: 1.5rem;
  }

  .cta-actions-modern {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-features-list {
    flex-direction: column;
    gap: 15px;
  }

  .panel-card {
    padding: 25px 20px;
  }

  .time-value {
    font-size: 1.5rem;
    padding: 8px 12px;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .cta-stats-grid {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    gap: 5px;
  }

  .time-value {
    font-size: 1.3rem;
    padding: 6px 10px;
    min-width: 45px;
  }

  .time-separator {
    font-size: 1.3rem;
    margin: 0 2px;
  }
}

/* Responsive - Mantiene proporciones perfectas */
@media (max-width: 1200px) {
  .hero-argus2-arc {
    min-width: 1100px;
  }
}

@media (max-width: 1024px) {
  .hero-argus2-row {
    gap: clamp(70px, 14vw, 200px);
  }

  .hero-argus2-arc {
    min-width: 900px;
  }

  .hero-argus2-glow {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-argus2 {
    min-height: 100vh;
  }

  .hero-argus2-row {
    gap: clamp(50px, 12vw, 120px);
    padding: 0 4vw;
  }

  .hero-argus2-btn {
    width: 90%;
    max-width: 400px;
    padding: 20px 55px;
  }

  .hero-argus2-glow {
    width: 450px;
    height: 450px;
  }

  .hero-argus2-arc {
    min-width: 700px;
  }
}

@media (max-width: 480px) {
  .hero-argus2-row {
    gap: clamp(30px, 10vw, 80px);
    padding: 0 3vw;
  }

  .hero-argus2-glow {
    width: 320px;
    height: 320px;
  }

  .hero-argus2-arc {
    min-width: 500px;
  }

  .hero-argus2-bg::before,
  .hero-argus2-bg::after {
    width: 250px;
    filter: blur(80px);
  }
}

/* ===== TOKENOMICS SECTION - PLANET ARGUS STYLE ===== */
.tokenomics-planet {
  position: relative;
  width: 100vw;
  min-height: 90vh;
  background: radial-gradient(ellipse 120% 63% at 50% 70%, #090f23 52%, #0e1c47 100%, #010215 115%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planet-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse 100% 70% at 50% 62%, #265cf1 0%, #142b5b 37%, #000010 100%);
  opacity: 0.72;
}
.tokenomics-planet-inner {
  width: 100%;
  max-width: 1280px;
  min-height: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.planet-canvas-container {
  position: relative;
  width: 700px;
  height: 420px;
  margin: 60px auto 0 auto;
  z-index: 10;
}
#tokenomicsPlanetCanvas {
  width: 700px;
  height: 420px;
  background: none;
}
.planet-main-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 30px 0 4px 0;
  text-align: center;
  text-shadow: 0 0 40px #7fd1ffc6;
  letter-spacing: -0.01em;
}
.planet-main-sub {
  color: #c1d4f9;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  text-align: center;
  margin-bottom: 44px;
  margin-top: 3px;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-shadow: 0 0 20px #51aaff99;
}
.planet-metric {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  min-width: 145px;
}
.left-metric {
  left: 7%;
  top: 38%;
  transform: translateY(-50%);
  align-items: flex-end;
}
.right-metric {
  right: 7%;
  top: 38%;
  transform: translateY(-50%);
  align-items: flex-start;
}
.bottom-metric {
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  align-items: center;
}
.metric-value {
  color: #fff;
  font-size: 2.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.015em;
  text-shadow: 0 0 30px #75eaedc3, 0 0 12px #bfceff80;
  margin-bottom: 6px;
}
.metric-label {
  color: #d7e7ff;
  font-size: 1.1rem;
  text-shadow: 0 0 8px #51aaffae;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
.metric-line {
  width: 116px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #99c3ffb2 52%, transparent 100%);
  margin: 15px 0 0 0;
  border-radius: 10px;
  filter: blur(0.2px) drop-shadow(0 0 20px #51aaff80);
}
.left-metric .metric-line {
  margin-left: 36px;
  margin-right: 0;
}
.right-metric .metric-line {
  margin-right: 36px;
  margin-left: 0;
}
.bottom-metric .metric-line {
  display: none;
}

@media (max-width: 920px) {
  .planet-canvas-container {
    width: 400px;
    height: 260px;
  }
  .planet-main-title {
    font-size: clamp(1.75rem, 7vw, 2.7rem);
  }
  .metric-value { font-size: 1.65rem; }
  .left-metric, .right-metric { min-width: 100px; }
}
@media (max-width: 600px) {
  .planet-canvas-container {
    width: 97vw;
    height: 160px;
    margin: 70px auto 0 auto;
  }
  .tokenomics-planet-inner {
    min-height: 420px;
  }
  .planet-main-title { font-size: 1.08rem; }
  .metric-label { font-size: 0.88rem; }
  .metric-value { font-size: 1.05rem; }
  .left-metric, .right-metric, .bottom-metric {
    position: static;
    display: inline-flex;
    min-width: 0;
    align-items: center;
    margin: 20px 8vw 0 8vw;
    width: auto;
  }
  .tokenomics-planet-inner { flex-direction: column; align-items: center; }
  .planet-main-title, .planet-main-sub { margin: 9px 0 9px 0; }
}
