* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 100%;
  width: 100%;
  background: white;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.header {
  background: var(--gradient-primary);
  color: white;
  padding: 40px;
  text-align: center;
}
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.header p {
  font-size: 1.1rem;
  opacity: 0.95;
}
.content {
  padding: 40px;
}
.spider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.spider-card {
  background: var(--gradient-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.spider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}
.spider-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.spider-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.spider-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.spider-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.spider-link {
  padding: 8px 16px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.spider-link:hover {
  background: #5a67d8;
  transform: scale(1.05);
}
.api-docs {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.api-docs h2 {
  color: #333;
  margin-bottom: 15px;
}
.doc-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.doc-link {
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.doc-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.section-title {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.api-docs p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.status-banner {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.status-banner h3 {
  margin: 0 0 10px 0;
  color: var(--primary);
}

.status-banner p {
  margin: 0;
  color: var(--text-secondary);
}
