/* Developers Page Styles */

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

.intro-section {
  text-align: center;
  padding: 60px 20px 40px;
 /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
 /* color: #ffffff;*/
 /* border-radius: 12px;*/
  margin-bottom: 60px;
}

.intro-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-section p {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.submission-section {
  padding: 0 20px;
}

.submission-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.submission-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #1a1a1a;
}

.section-intro {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.submission-list {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  padding-left: 24px;
  margin-bottom: 40px;
}

.submission-list li {
  margin-bottom: 12px;
}

.inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.info-box h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.info-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.info-box ul {
  padding-left: 24px;
  margin: 16px 0 0 0;
}

.info-box ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.highlight-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left-color: #4caf50;
}

.highlight-box strong {
  color: #2e7d32;
  font-size: 1.25rem;
}

.categories-section {
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.category-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #007bff;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
  transform: translateY(-4px);
}

.category-card h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

.category-link {
  display: inline-block;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.category-link:hover {
  color: #0056b3;
  transform: translateX(4px);
}

.benefits-section {
  margin-bottom: 40px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.benefits-list li {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.7;
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: #4caf50;
  font-weight: bold;
  font-size: 1.25rem;
}

.contact-section {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 40px;
}

.contact-section p {
  font-size: 1.25rem;
  color: #333;
  margin: 0;
}

.contact-link {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
  .intro-section {
    padding: 40px 20px 30px;
  }
  
  .intro-section h1 {
    font-size: 2rem;
  }
  
  .intro-section p {
    font-size: 1.125rem;
  }
  
  .submission-section h2 {
    font-size: 1.75rem;
  }
  
  .submission-section h3 {
    font-size: 1.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .intro-section h1 {
    font-size: 1.75rem;
  }
  
  .intro-section p {
    font-size: 1rem;
  }
  
  .submission-section h2 {
    font-size: 1.5rem;
  }
  
  .submission-section h3 {
    font-size: 1.25rem;
  }
  
  .info-box {
    padding: 20px;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .benefits-list li {
    font-size: 1rem;
    padding: 12px 16px 12px 40px;
  }
  
  .benefits-list li::before {
    left: 16px;
    font-size: 1rem;
  }
}
