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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 0 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  color: white;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Main Content */
.main-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

/* Input Section */
.url-input-section {
  margin-bottom: 40px;
  text-align: center;
}

.url-input-section label {
  display: block;
  font-weight: 600;
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.input-container {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 8px;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
}

.input-container:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-container input[type="url"] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
  border-radius: 10px;
}

.input-container input[type="url"]::placeholder {
  color: #999;
}

.fetch-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  justify-content: center;
}

.fetch-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.fetch-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Loading Section */
.loading-section {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

.loading-spinner p {
  color: #666;
  font-size: 1.1rem;
}

/* Thumbnails Section */
.thumbnails-section {
  animation: fadeIn 0.5s ease;
}

.video-info {
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e5e9;
}

.video-info h2 {
  color: #333;
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-info p {
  color: #666;
  font-size: 0.95rem;
}

/* Main Thumbnail */
.main-thumbnail-container {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

.main-thumbnail {
  max-width: 500px;
  width: 100%;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border: 2px solid #667eea;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.main-thumbnail .thumbnail-header h3 {
  font-size: 1.4rem;
  color: #667eea;
  margin-bottom: 8px;
}

.main-thumbnail .resolution.featured {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.main-preview {
  margin: 20px 0;
  border-radius: 15px;
  overflow: hidden;
  background: #f0f0f0;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-preview img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thumbnail-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.quality-badge.featured {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  padding: 8px 14px;
  font-size: 0.8rem;
  border-radius: 10px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.download-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.download-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Other Qualities Grid */
.other-qualities-container {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e1e5e9;
}

.section-title {
  text-align: center;
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 700px;
  margin: 0 auto;
}

.quality-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.quality-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: #667eea;
}

.quality-preview {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 2px solid #e1e5e9;
}

.quality-preview img {
  max-width: 95%;
  max-height: 150px;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: contain;
}

.quality-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #333, #555);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.quality-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
}

.quality-details h5 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.quality-details p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
  background: #f0f0f0;
  padding: 6px 14px;
  border-radius: 15px;
  display: inline-block;
  font-weight: 500;
}

.download-btn-compact {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.download-btn-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Enhanced Features Section (6 Features) */
.features-showcase {
  margin: 60px 0;
  padding: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  color: white;
}

.features-showcase h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
  color: white;
  font-weight: 800;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-card i {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.feature-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-size: 1rem;
}

/* Enhanced How to Use Section */
.how-to-section {
  margin: 80px 0;
  padding: 60px 50px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.how-to-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #2c3e50;
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.section-subtitle {
  color: #7f8c8d;
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.step-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  z-index: 2;
}

.step-num {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
}

.step-card {
  flex-grow: 1;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: #667eea;
}

.step-icon-box {
  width: 60px;
  height: 60px;
  background: #667eea;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-box i {
  color: white;
  font-size: 1.5rem;
}

.step-content h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.timeline-connector {
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  z-index: 1;
}

.step-item:last-child + .timeline-connector {
  display: none;
}

/* Enhanced Why Use Section - Better Theme Match */
.why-use-section {
  margin: 80px 0;
  padding: 60px 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.why-use-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.why-use-section .section-header h2 {
  color: white;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-use-section .section-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.user-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.user-type-card {
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.user-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.user-type-card.creators::before {
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.user-type-card.students::before {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.user-type-card.designers::before {
  background: linear-gradient(90deg, #a8edea, #fed6e3);
}

.user-type-card.everyone::before {
  background: linear-gradient(90deg, #ffecd2, #fcb69f);
}

.user-type-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.user-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-icon i {
  font-size: 2rem;
  color: white;
}

.card-header h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.card-body .main-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.benefit-item i {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  width: 16px;
}

.benefit-item span {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Responsive adjustments for Why Use section */
@media (max-width: 1024px) {
  .user-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-use-section {
    padding: 40px 25px;
  }
  
  .why-use-section .section-header h2 {
    font-size: 2.2rem;
  }
  
  .why-use-section .section-subtitle {
    font-size: 1.1rem;
  }
}


/* Why Use Section - Matched with Theme Elements */
.why-use-section {
  margin: 80px 0;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-use-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.why-use-section .section-header h2 {
  color: white;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-use-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.user-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.user-type-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.user-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.user-type-card.creators::before {
  background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.user-type-card.students::before {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

.user-type-card.designers::before {
  background: linear-gradient(90deg, #a8edea, #fed6e3);
}

.user-type-card.everyone::before {
  background: linear-gradient(90deg, #ffecd2, #fcb69f);
}

.user-type-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.user-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-icon i {
  font-size: 2rem;
  color: white;
}

.card-header h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.card-body .main-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.benefit-item i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  width: 16px;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .user-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-use-section {
    padding: 40px 25px;
  }
  
  .why-use-section .section-header h2 {
    font-size: 2.2rem;
  }
  
  .why-use-section .section-subtitle {
    font-size: 1.1rem;
  }
}


/* SEO Content Section - Clean Modern Style */
.seo-content-section {
  margin: 50px auto 70px;
  padding: 60px 40px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  max-width: 960px;
}

.seo-content-wrapper {
  width: 100%;
}

.intro-text {
  text-align: center;
  margin-bottom: 55px;
}

.intro-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-text p {
  font-size: 1.2rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 35px;
  justify-content: center;
}

.content-card {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  padding: 35px 30px;
  border-radius: 20px;
  border-left: 6px solid #667eea;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.content-card:hover {
  box-shadow: 0 18px 45px rgba(102, 126, 234, 0.25);
  transform: translateY(-8px);
  border-left-color: #764ba2;
}

.content-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 18px;
}

.content-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.content-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.content-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
}

.content-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  top: 2px;
}

.content-card ul li strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .seo-content-section {
    padding: 40px 25px;
    margin: 40px 0 60px;
  }
  
  .intro-text h2 {
    font-size: 2.2rem;
  }
  
  .intro-text p {
    font-size: 1.1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .intro-text h2 {
    font-size: 1.8rem;
  }
  
  .content-card {
    padding: 30px 20px;
  }
}



/* FAQ Section */
.faq-section {
  margin: 60px 0;
  padding: 50px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 800;
}

.faq-item {
  margin-bottom: 25px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 20px;
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f0f4f8;
  transform: translateX(5px);
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Redesigned Simple Footer */
.simple-footer {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-nav a:hover {
  color: #f1c40f;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.simple-footer p {
  margin: 8px 0;
  opacity: 0.9;
  font-weight: 500;
  font-size: 1rem;
}

.simple-footer p:first-of-type {
  color: #f39c12;
}

/* Loading States */
.downloading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}

.downloading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loadingBar 1.5s infinite;
}

@keyframes loadingBar {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .user-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .hero-section {
    padding: 40px 20px 30px;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .main-content,
  .features-showcase,
  .how-to-section,
  .why-use-section,
  .faq-section {
    padding: 30px 25px;
  }
  
  .input-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .fetch-btn {
    width: 100%;
  }
  
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .main-preview {
    min-height: 180px;
  }
  
  .main-preview img {
    max-height: 200px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .step-card {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-connector {
    display: none;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-nav a {
    padding: 10px 15px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Page Content Styles */
.page-content {
  background: white;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.content-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e5e9;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-section p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.content-section ul {
  color: #555;
  padding-left: 25px;
  line-height: 1.7;
}

.content-section li {
  margin-bottom: 8px;
}

/* Features List (About Page) */
.features-list {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  border-left: 5px solid #667eea;
}

.feature-item i {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 5px;
}

.feature-item h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Simple Contact Page Styles */
.simple-contact {
  text-align: center;
  margin-bottom: 50px;
}

.contact-main {
  margin-bottom: 50px;
}

.contact-main h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-main > p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

.email-contact {
  margin: 40px 0;
}

.email-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 25px;
  padding: 50px 40px;
  color: white;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.email-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.email-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.email-link {
  display: inline-block;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.email-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.response-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.contact-note {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 700px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.contact-note i {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-note p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Quick Help Section */
.quick-help {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 35px;
  margin: 50px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.quick-help h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.help-items {
  display: grid;
  gap: 25px;
  text-align: left;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.help-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.help-item i {
  color: #667eea;
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.help-item h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.help-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Common Topics */
.common-topics {
  text-align: center;
}

.common-topics h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.topic-item {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  border-left: 5px solid #667eea;
}

.topic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.topic-item i {
  color: #667eea;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.topic-item h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.topic-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Warning Box (Disclaimer Page) */
.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  gap: 15px;
}

.warning-box i {
  color: #f39c12;
  font-size: 1.3rem;
  margin-top: 3px;
}

.warning-box h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.warning-box p,
.warning-box ul {
  color: #856404;
  margin-bottom: 10px;
}

/* Back to Home Button */
.back-home {
  text-align: center;
  margin: 40px 0;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Legal Content Specific */
.legal-content .content-section h2 {
  color: #667eea;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .page-content {
    padding: 30px 25px;
  }
  
  .features-list {
    gap: 20px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-main h2 {
    font-size: 2rem;
  }
  
  .contact-main > p {
    font-size: 1.1rem;
  }
  
  .email-card {
    padding: 40px 30px;
    margin: 0 20px;
  }
  
  .email-link {
    font-size: 1.2rem;
    padding: 12px 25px;
  }
  
  .contact-note {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin: 30px 20px;
    padding: 25px;
  }
  
  .quick-help {
    padding: 30px 25px;
    margin: 40px 0;
  }
  
  .help-items {
    gap: 20px;
  }
  
  .help-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .email-card {
    padding: 35px 25px;
  }
  
  .email-icon {
    font-size: 3rem;
  }
  
  .email-info h3 {
    font-size: 1.5rem;
  }
  
  .email-link {
    font-size: 1.1rem;
  }
}
