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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #1e293b 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
}

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

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #9333ea, #ec4899);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, #a855f7, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
}

.info-item i {
  color: #a855f7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, #9333ea, #ec4899);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, #7c3aed, #db2777);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #a855f7;
  border: 2px solid #a855f7;
}

.btn-outline:hover {
  background: #a855f7;
  color: white;
}

.btn-telegram {
  background: linear-gradient(to right, #3b82f6, #1d4ed8);
  color: white;
}

.btn-telegram:hover {
  background: linear-gradient(to right, #2563eb, #1e40af);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out 0.3s both;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #9333ea, #ec4899);
  border-radius: 1.5rem;
  filter: blur(2rem);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.profile-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Analyses Modal */
.analyses-modal {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.4);
}

.analyses-modal.hidden {
  display: none;
}

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

.analysis-card {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.5), rgba(30, 41, 59, 0.5));
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.analysis-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.card-image {
  position: relative;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.profit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: #d1d5db;
  font-size: 0.875rem;
}

.close-button-container {
  text-align: center;
}

/* Trading Performance */
.trading-performance {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.performance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.chart-carousel {
  position: relative;
}

.chart-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.chart-container img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.profit-badge-large {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.chart-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #9333ea;
}

.performance-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.performance-info p {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(236, 72, 153, 0.5));
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #d1d5db;
}

/* Achievements */
.achievements {
  padding: 5rem 0;
}

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

.achievement-card {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.5), rgba(30, 41, 59, 0.5));
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.5);
}

.achievement-icon {
  margin-bottom: 1.5rem;
}

.achievement-icon i {
  font-size: 3rem;
  color: #a855f7;
}

.achievement-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.achievement-card p {
  color: #d1d5db;
}

/* Lifestyle */
.lifestyle {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.lifestyle-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lifestyle-card:hover {
  transform: scale(1.02);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lifestyle-card:hover img {
  transform: scale(1.1);
}

.lifestyle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem;
}

.lifestyle-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.lifestyle-overlay p {
  color: #e5e7eb;
}

/* Contact */
.contact {
  padding: 5rem 0;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.footer p {
  color: #9ca3af;
}

.disclaimer {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: #6b7280 !important;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #d1d5db;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .performance-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    justify-content: center;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .analyses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
