/* Hero Section Styles */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-size: 48px;
  font-family: Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 15px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 28px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  font-size: 18px;
  padding: 20px 40px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.8s ease-out 0.4s both;
}

.trading-graphic {
  position: relative;
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(38, 255, 122, 0.08) 0%, rgba(255, 59, 48, 0.08) 100%);
  border-radius: 20px;
  border: 2px solid rgba(38, 255, 122, 0.3);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(38, 255, 122, 0.1);
}

.price-chart {
  position: relative;
  width: 100%;
  height: 100%;
}

.chart-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff3b30 0%, #26ff7a 50%, #ffcc00 100%);
  border-radius: 2px;
  animation: priceMove 3s ease-in-out infinite;
}

.chart-line::before {
  content: '';
  position: absolute;
  right: -4px;
  top: -8px;
  width: 0;
  height: 0;
  border-left: 12px solid #ffcc00;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.chart-indicators {
  position: absolute;
  width: 100%;
  height: 100%;
}

.indicator {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 32px;
  text-align: center;
  justify-content: center;
  animation: indicatorGlow 2s ease-in-out infinite alternate;
}

.indicator.tp {
  top: 25%;
  background: rgba(38, 255, 122, 0.2);
  color: #26ff7a;
  box-shadow: 0 0 8px rgba(38, 255, 122, 0.4);
}

.indicator.sl {
  bottom: 25%;
  background: rgba(255, 59, 48, 0.2);
  color: #ff3b30;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.4);
}

@keyframes priceMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

@keyframes indicatorGlow {
  0% {
    box-shadow: 0 0 8px rgba(38, 255, 122, 0.4);
  }
  100% {
    box-shadow: 0 0 16px rgba(38, 255, 122, 0.6);
  }
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
    letter-spacing: 10px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
    margin: 0 auto 30px;
  }
  
  .trading-graphic {
    width: 300px;
    height: 200px;
    padding: 30px;
  }
  
  .hero-cta {
    font-size: 16px;
    padding: 16px 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    letter-spacing: 8px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .trading-graphic {
    width: 250px;
    height: 150px;
    padding: 20px;
  }
} 