/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: 40px 20px;
  background: var(--theme-bg-section);
  color: var(--theme-text-main);
  margin: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--theme-border);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--theme-primary), var(--theme-secondary), var(--theme-primary));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.hero-section {
  animation-delay: 0.2s;
}

.section-alt {
  background: var(--theme-bg-section);
  opacity: 0.95;
}

.section-cta {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #FFD700;
  text-align: center;
  border: 3px solid #FFD700;
}

/* Info Image */
.info-image-container {
  text-align: center;
  margin: 0 auto;
}

.info-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services */
.services-list {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  padding-left: 25px;
  position: relative;
}

.services-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--theme-primary);
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 5px var(--theme-primary);
  transition: color 0.5s ease;
}

/* Referral Box */
.referral-box {
  background: var(--theme-secondary);
  border: 5px solid var(--theme-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

.referral-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--theme-bg-main);
  margin: 0;
  transition: color 0.5s ease;
}

/* Video Section */
.video-section {
  background: var(--theme-bg-main);
  color: var(--theme-secondary);
  padding: 60px 20px;
  border: 5px solid var(--theme-border);
  transition: all 0.5s ease;
}

.video-section h2 {
  color: var(--theme-secondary);
  text-align: center;
  margin-bottom: 40px;
  transition: color 0.5s ease;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: auto;
  min-height: 500px;
  display: block;
}

@media (max-width: 767px) {
  .video-container iframe {
    min-height: 300px;
  }
}

/* Desktop Sections */
@media (min-width: 768px) {
  .section {
    padding: 60px 40px;
    margin: 30px;
  }

  .referral-amount {
    font-size: 64px;
  }
}