* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Live Notification */
.live-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  z-index: 1000;
  transform: translateX(400px);
  transition: transform 0.5s ease;
  max-width: 300px;
}

.live-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.notification-name {
  font-weight: 700;
}

.notification-location {
  font-weight: 600;
}

/* Market Widget */
.market-widget {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  height: 46px;
}

.tradingview-widget-container {
  height:50px;
  overflow: hidden;
  width: 100%;
}

.tradingview-widget-container__widget {
  height: 50px !important;
  width: 100% !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 3.5rem;
  height: 3.5rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #22c55e;
}

.mobile-menu-btn {
  display: block;
  background: #22c55e;
  border: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
  background: #16a34a;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.mobile-nav-link {
  color: #d1d5db;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.trading-candles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.candle {
  position: absolute;
  width: 4px;
  background: linear-gradient(to top, #22c55e, #3b82f6);
  animation: rise 3s ease-in-out infinite;
  opacity: 0.6;
}

.candle-1 {
  left: 10%;
  height: 60px;
  animation-delay: 0s;
}

.candle-2 {
  left: 25%;
  height: 80px;
  animation-delay: 0.5s;
}

.candle-3 {
  left: 40%;
  height: 100px;
  animation-delay: 1s;
}

.candle-4 {
  left: 60%;
  height: 70px;
  animation-delay: 1.5s;
}

.candle-5 {
  left: 80%;
  height: 90px;
  animation-delay: 2s;
}

@keyframes rise {
  0% {
    transform: translateY(100vh) scaleY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scaleY(1);
    opacity: 0;
  }
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(34, 197, 94, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #22c55e, #3b82f6, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #22c55e;
  color: #000;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-secondary {
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
}

.btn-gradient {
  background: linear-gradient(to right, #22c55e, #3b82f6);
  color: #000;
  font-weight: 700;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #16a34a, #2563eb);
}

/* Sections */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #22c55e;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: rgba(17, 24, 39, 0.5);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.green-border {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.green-border:hover {
  border-color: rgba(34, 197, 94, 0.4);
}

.blue-border {
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.blue-border:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon.green {
  color: #22c55e;
}

.benefit-icon.blue {
  color: #3b82f6;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.benefit-text {
  color: #9ca3af;
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.7;
}

.team-section {
  margin: 3rem 0;
}

.team-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 2rem;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid #22c55e;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Fallback for when images don't load */
.team-avatar.green-avatar {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.team-avatar.blue-avatar {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.team-info {
  text-align: left;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-link {
  color: #22c55e;
  text-decoration: none;
  transition: color 0.3s;
}

.team-link:hover {
  color: #16a34a;
}

.team-role {
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-desc {
  color: #9ca3af;
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-number.green {
  color: #22c55e;
}

.stat-number.blue {
  color: #3b82f6;
}

.stat-label {
  color: #9ca3af;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: rgba(17, 24, 39, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.green {
  color: #22c55e;
}

.feature-icon.blue {
  color: #3b82f6;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-text {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.green-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.blue-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  margin-right: 0.75rem;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #9ca3af;
}

.testimonial-text {
  color: #d1d5db;
  font-style: italic;
}

/* How It Works Section - Enhanced Graphical */
.how-it-works {
  padding: 5rem 0;
  background: rgba(17, 24, 39, 0.5);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.step-graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  position: relative;
  z-index: 2;
}

.green-step {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.blue-step {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 2rem;
  height: 2rem;
  background: #000;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid #22c55e;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step-text {
  color: #9ca3af;
  font-size: 1.125rem;
}

.step-arrow {
  color: #22c55e;
  font-size: 1.5rem;
  opacity: 0.7;
}

.flow-chart {
  margin-top: 3rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #22c55e, #3b82f6, #22c55e);
  transform: translateY(-50%);
}

.flow-dots {
  display: flex;
  justify-content: space-between;
  width: 200px;
  position: relative;
  z-index: 2;
}

.flow-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #374151;
  border: 2px solid #22c55e;
  transition: all 0.3s;
}

.flow-dot.active {
  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #22c55e;
}

.cta-text {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 3rem 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
  width: 3rem;
  height: 3rem;
}

.footer-logo .logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #22c55e;
}

.footer-btn {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.social-link.telegram {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.social-link.telegram:hover {
  background: rgba(34, 197, 94, 0.2);
}

.social-link.instagram {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
}

.social-link.instagram:hover {
  background: rgba(236, 72, 153, 0.2);
}

.footer-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-item {
    flex-direction: row;
  }

  .step-arrow {
    display: block;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding-top: 10rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-title {
    font-size: 3rem;
  }

  .social-links {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .step-arrow:last-child {
    display: none;
  }
}

@media (max-width: 1023px) {
  .step-arrow:last-child {
    display: none;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
