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

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  min-height: 100vh;
}

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

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f4e18f, #d4af37);
  color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.headline {
  font-size: 56px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.subheadline {
  font-size: 22px;
  font-weight: 400;
  color: #b8b8b8;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-style: italic;
}

.tagline {
  font-size: 16px;
  color: #888;
  max-width: 500px;
  margin: 0 auto;
}

/* Description Section */
.description {
  padding: 40px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.description p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #ccc;
}

.description p:last-child {
  margin-bottom: 0;
}

.description strong {
  color: #d4af37;
}

.description em {
  color: #f4e18f;
}

/* Modules Section */
.modules {
  padding: 40px 0;
}

.modules h3 {
  font-size: 22px;
  color: #d4af37;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.modules ul {
  list-style: none;
  padding: 0;
}

.modules li {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  color: #bbb;
  padding-left: 20px;
  position: relative;
  font-family: 'Arial', sans-serif;
}

.modules li::before {
  content: '\2726';
  color: #d4af37;
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 50px 0;
}

.cta-button.primary {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f4e18f, #d4af37);
  color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 18px 48px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.cta-link {
  display: block;
  margin-top: 20px;
  color: #d4af37;
  font-size: 14px;
  text-decoration: underline;
  letter-spacing: 1px;
}

.cta-link:hover {
  color: #f4e18f;
}

/* Testimonials */
.testimonials {
  padding: 40px 0;
  border-top: 1px solid #222;
}

.testimonials h3 {
  font-size: 22px;
  color: #d4af37;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.testimonial {
  background: #111;
  border-left: 3px solid #d4af37;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}

.testimonial p {
  font-style: italic;
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial .author {
  font-size: 13px;
  color: #888;
  font-family: 'Arial', sans-serif;
  letter-spacing: 1px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid #222;
}

.disclaimer {
  font-size: 11px;
  color: #555;
  margin-bottom: 8px;
  font-family: 'Arial', sans-serif;
}

.copyright {
  font-size: 12px;
  color: #444;
  font-family: 'Arial', sans-serif;
}

/* Upload Overlay */
.upload-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.upload-overlay.hidden {
  display: none;
}

.upload-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.upload-card h2 {
  font-size: 24px;
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.upload-card p {
  font-size: 15px;
  color: #999;
  margin-bottom: 28px;
  font-family: 'Arial', sans-serif;
}

.upload-dropzone {
  border: 2px dashed #333;
  border-radius: 6px;
  padding: 40px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 20px;
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.upload-dropzone-text {
  font-size: 14px;
  color: #777;
  font-family: 'Arial', sans-serif;
}

.upload-dropzone-text strong {
  color: #d4af37;
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.upload-preview {
  max-width: 160px;
  max-height: 160px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  object-fit: cover;
  display: none;
  margin: 0 auto 20px;
}

.upload-preview.visible {
  display: block;
}

.upload-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f4e18f, #d4af37);
  color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.upload-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.upload-error {
  color: #e74c3c;
  font-size: 13px;
  font-family: 'Arial', sans-serif;
  margin-top: 12px;
  display: none;
}

.upload-error.visible {
  display: block;
}

/* Progress Card */
.upload-card.hidden {
  display: none;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #777;
}

.progress-step.completed {
  color: #d4af37;
}

.progress-step.active {
  color: #f4e18f;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 14px;
}

.step-done {
  color: #d4af37;
  font-weight: 700;
}

.step-pending {
  color: #555;
}

.step-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.progress-done {
  margin-top: 24px;
  text-align: center;
}

.progress-done.hidden {
  display: none;
}

.progress-done h3 {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 375px) {
  .container {
    padding: 20px 16px;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .headline {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .subheadline {
    font-size: 18px;
  }

  .tagline {
    font-size: 14px;
  }

  .description p {
    font-size: 15px;
  }

  .cta-button.primary {
    font-size: 16px;
    padding: 16px 36px;
  }
}
