.epg_aff_hero_x9k5_container {
  position: relative;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #13151a, #1a1d23);
}

.epg_aff_hero_x9k5_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.epg_aff_hero_x9k5_shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape1 {
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.15)
  );
  animation: floatAnimation 8s ease-in-out infinite;
}

.shape2 {
  bottom: -15%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  animation: floatAnimation 10s ease-in-out infinite reverse;
}

.epg_aff_hero_x9k5_content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.epg_aff_hero_x9k5_title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientText 3s ease infinite;
}

.epg_aff_hero_x9k5_subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.epg_aff_hero_x9k5_stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.epg_aff_hero_x9k5_stat_card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.epg_aff_hero_x9k5_stat_card:hover {
  transform: translateY(-5px);
}

.epg_aff_hero_x9k5_stat_value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.epg_aff_hero_x9k5_stat_label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.epg_aff_hero_x9k5_cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.epg_aff_hero_x9k5_primary_btn,
.epg_aff_hero_x9k5_secondary_btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.epg_aff_hero_x9k5_primary_btn {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  color: white;
}

.epg_aff_hero_x9k5_secondary_btn {
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.epg_aff_hero_x9k5_primary_btn:hover,
.epg_aff_hero_x9k5_secondary_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.epg_aff_hero_x9k5_features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.epg_aff_hero_x9k5_feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.epg_aff_hero_x9k5_feature i {
  color: #6366f1;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 30px);
  }
}

@keyframes gradientText {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .epg_aff_hero_x9k5_container {
    padding: 1rem;
    min-height: 100vh;
  }

  .epg_aff_hero_x9k5_content {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .epg_aff_hero_x9k5_title {
    font-size: 2rem;
  }

  .epg_aff_hero_x9k5_subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .epg_aff_hero_x9k5_stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .epg_aff_hero_x9k5_stat_card {
    padding: 1rem;
  }

  .epg_aff_hero_x9k5_cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .epg_aff_hero_x9k5_primary_btn,
  .epg_aff_hero_x9k5_secondary_btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem;
  }

  .epg_aff_hero_x9k5_features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 380px) {
  .epg_aff_hero_x9k5_title {
    font-size: 1.75rem;
  }

  .epg_aff_hero_x9k5_subtitle {
    font-size: 0.9rem;
  }

  .epg_aff_hero_x9k5_stat_value {
    font-size: 2rem;
  }
}

.epg_aff_benefits_k8m3_container {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #13151a, #1a1d23);
  color: #fff;
}

.epg_aff_benefits_k8m3_header {
  text-align: center;
  margin-bottom: 4rem;
}

.epg_aff_benefits_k8m3_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.epg_aff_benefits_k8m3_subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.epg_aff_benefits_k8m3_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.epg_aff_benefits_k8m3_card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.epg_aff_benefits_k8m3_card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.epg_aff_benefits_k8m3_card_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transform: translateZ(20px);
}

.epg_aff_benefits_k8m3_card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
  transform: translateZ(15px);
}

.epg_aff_benefits_k8m3_card p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1rem;
  transform: translateZ(10px);
}

.epg_aff_benefits_k8m3_card_badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateZ(25px);
}

.epg_aff_benefits_k8m3_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.epg_aff_benefits_k8m3_earnings {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.epg_aff_benefits_k8m3_earnings_text span {
  display: block;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.epg_aff_benefits_k8m3_earnings_text strong {
  font-size: 2rem;
  color: #6366f1;
}

.epg_aff_benefits_k8m3_earnings_chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 60px;
}

.epg_aff_benefits_k8m3_chart_bar {
  width: 8px;
  background: linear-gradient(to top, #6366f1, #8b5cf6);
  border-radius: 4px;
  animation: chartAnimation 2s ease-out forwards;
}

.epg_aff_benefits_k8m3_join_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.epg_aff_benefits_k8m3_join_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

@keyframes chartAnimation {
  from {
    height: 0;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .epg_aff_benefits_k8m3_container {
    padding: 3rem 1rem;
  }

  .epg_aff_benefits_k8m3_title {
    font-size: 2rem;
  }

  .epg_aff_benefits_k8m3_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .epg_aff_benefits_k8m3_cta {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .epg_aff_benefits_k8m3_earnings {
    flex-direction: column;
    gap: 1rem;
  }

  .epg_aff_benefits_k8m3_join_btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 380px) {
  .epg_aff_benefits_k8m3_title {
    font-size: 1.75rem;
  }

  .epg_aff_benefits_k8m3_subtitle {
    font-size: 1rem;
  }

  .epg_aff_benefits_k8m3_card {
    padding: 1.5rem;
  }

  .epg_aff_benefits_k8m3_card_icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
