.df-download-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.df-download-hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.df-download-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.df-download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: df-float 25s ease-in-out infinite;
}

.df-download-orb-1 {
  top: 10%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
}

.df-download-orb-2 {
  top: 40%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  animation-delay: -8s;
}

.df-download-orb-3 {
  bottom: 15%;
  left: 45%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  animation-delay: -16s;
}

@keyframes df-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -60px) scale(1.15); }
  50% { transform: translate(-40px, 40px) scale(0.9); }
  75% { transform: translate(50px, 25px) scale(1.08); }
}

.df-download-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.df-download-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  color: #e9d5ff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.df-download-badge svg {
  color: #10b981;
}

.df-download-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  margin: 0 0 2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.df-gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #c4b5fd 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: df-gradient-shift 6s ease infinite;
}

@keyframes df-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.df-download-hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  margin: 0 0 3rem;
  line-height: 1.7;
}

.df-download-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.df-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.df-download-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5);
  animation: df-btn-glow 2.5s ease-in-out infinite;
}

@keyframes df-btn-glow {
  0%, 100% { box-shadow: 0 12px 48px rgba(139, 92, 246, 0.5); }
  50% { box-shadow: 0 18px 72px rgba(139, 92, 246, 0.8); }
}

.df-download-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(139, 92, 246, 0.7);
  text-decoration: none;
}

.df-download-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.df-download-info svg {
  color: #10b981;
}

.df-download-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.df-download-stat {
  text-align: center;
}

.df-download-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.df-download-stat-label {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Guide Section */
.df-download-guide {
  padding: 8rem 2rem;
  background: #ffffff;
}

.df-download-guide-header {
  text-align: center;
  margin-bottom: 5rem;
}

.df-section-badge {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 50px;
  color: #7c3aed;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.df-section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #111827;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.df-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
}

.df-guide-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.df-guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.df-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
  flex-shrink: 0;
}

.df-step-number-final {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
  animation: df-pulse 2s ease-in-out infinite;
}

@keyframes df-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.df-step-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.df-step-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.3);
}

.df-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
}

.df-step-content:hover .df-step-icon {
  transform: scale(1.15) rotate(-5deg);
}

.df-step-icon-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  color: #2563eb;
}

.df-step-icon-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  color: #10b981;
}

.df-step-icon-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
  color: #f59e0b;
}

.df-step-icon-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  color: #7c3aed;
}

.df-step-title {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #111827;
  margin: 0 0 1rem;
}

.df-step-description {
  font-size: 1.0625rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.df-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.df-step-list li {
  padding-left: 2rem;
  position: relative;
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

.df-step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: 700;
  font-size: 1.25rem;
}

.df-step-list code {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: 'Monaco', 'Courier New', monospace;
}

.df-host-link {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(124, 58, 237, 0.4);
  transition: all 0.25s ease;
}

.df-host-link:hover {
  color: #8b5cf6;
  text-decoration-color: rgba(139, 92, 246, 0.8);
  text-decoration-thickness: 2px;
}

.df-step-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-left: 4px solid #8b5cf6;
  border-radius: 8px;
  color: #7c3aed;
  font-size: 0.9375rem;
  font-weight: 600;
}

.df-step-tip svg {
  flex-shrink: 0;
}

.df-step-tip-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
  border-left-color: #3b82f6;
  color: #2563eb;
}

.df-step-tip-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
  border-left-color: #f59e0b;
  color: #d97706;
}

.df-step-action {
  margin-top: 1.5rem;
}

.df-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.df-step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
  text-decoration: none;
}

.df-host-primary-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.df-host-primary-btn:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.df-step-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  margin-top: 1.5rem;
}

.df-step-success svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.df-step-success-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.df-step-success-text strong {
  color: #059669;
  font-size: 1.0625rem;
  font-weight: 700;
}

.df-step-success-text span {
  color: #047857;
  font-size: 0.9375rem;
}

/* Requirements Section */
.df-download-requirements {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 50%, #faf5ff 100%);
}

.df-requirements-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.15);
}

.df-requirements-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #111827;
  margin: 0 0 2rem;
}

.df-requirements-title svg {
  color: #8b5cf6;
}

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

.df-requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}

.df-requirement-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Help Section */
.df-download-help {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.df-help-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.df-help-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.df-help-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

.df-help-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.df-help-btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
}

.df-help-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(139, 92, 246, 0.7);
  text-decoration: none;
}

.df-help-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.df-help-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .df-download-hero {
    padding: 5rem 1.25rem 4rem;
    min-height: auto;
  }
  
  .df-download-badge {
    font-size: 0.8125rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .df-download-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.5rem;
  }
  
  .df-download-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .df-download-cta-group {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .df-download-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
  
  .df-download-stats {
    gap: 2rem;
  }
  
  .df-download-stat-number {
    font-size: 2rem;
  }
  
  .df-download-guide {
    padding: 5rem 1.5rem;
  }
  
  .df-guide-steps {
    gap: 3rem;
  }
  
  .df-guide-step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .df-step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin: 0 auto;
  }
  
  .df-step-content {
    padding: 2rem;
  }
  
  .df-step-icon {
    margin: 0 auto 1.5rem;
  }
  
  .df-step-list li {
    text-align: left;
  }
  
  .df-requirements-card {
    padding: 2rem;
  }
  
  .df-requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .df-download-help {
    padding: 4rem 1.5rem;
  }
  
  .df-help-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .df-help-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .df-download-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .df-download-badge {
    font-size: 0.75rem;
    padding: 0.625rem 1rem;
  }
  
  .df-download-hero-title {
    font-size: 1.875rem;
  }
  
  .df-download-hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .df-download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .df-download-guide {
    padding: 4rem 1rem;
  }
  
  .df-step-content {
    padding: 1.5rem;
  }
  
  .df-step-icon {
    width: 56px;
    height: 56px;
  }
  
  .df-step-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .df-step-title {
    font-size: 1.375rem;
  }
  
  .df-requirements-card {
    padding: 1.5rem;
  }
  
  .df-download-help {
    padding: 3rem 1rem;
  }
}