/* AI Video Generation Landing Page Styles */

:root {
  --primary-color: #2563EB;
  --success-color: #059669;
  --error-color: #DC2626;
  --gray-color: #6B7280;
  --white: #FFFFFF;
}


/* Processing Page Styles */
.processing-container {
  text-align: center;
  padding: 3rem 2rem;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #E5E7EB;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.loading-message {
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 1rem;
}

.loading-progress {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Result Container */
.result-container {
  text-align: center;
  padding: 2rem;
}

.result-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.result-video {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: block;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn {
  background: var(--success-color);
  color: var(--white);
}

.download-btn:hover {
  background: #047857;
}

.share-btn {
  background: var(--primary-color);
  color: var(--white);
}

.share-btn:hover {
  background: #1D4ED8;
}

.retry-btn {
  background: var(--gray-color);
  color: var(--white);
}

.retry-btn:hover {
  background: #4B5563;
}

/* Error Container */
.error-container {
  text-align: center;
  padding: 2rem;
}

.error-message {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  color: var(--error-color);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .jet-form-builder,
  .processing-container,
  .result-container {
    padding: 1.5rem;
  }
  
  .loading-title,
  .result-title {
    font-size: 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
  }
}
