body {
  background: #0b1220;
  color: #f3f4f6;
}

.vl-hero {
  padding: 40px 20px;
  text-align: center;
}

.vl-hero-title {
  font-size: 64px;
  font-weight: bold;
  color: #22c55e;
  letter-spacing: 4px;
}

.vl-hero-subtitle {
  font-size: 24px;
  margin-top: 10px;
  color: #9ca3af;
}

.vl-hero-description {
  max-width: 900px;
  margin: 30px auto;
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
}

.vl-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.vl-btn {
  background: #22c55e;
  color: black;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.vl-btn.secondary {
  background: #1f2937;
  color: white;
}

.vl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}

.vl-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 20px;
}

.vl-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #22c55e;
  margin-bottom: 14px;
}

.vl-list div {
  margin-bottom: 10px;
  color: #d1d5db;
}

.vl-model {
  margin-bottom: 10px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vl-model:last-child {
  margin-bottom: 0;
}
.vl-model-name {
  color: #22c55e;
  font-weight: 600;
}
.vl-model-sep {
  color: #4b5563;
  margin: 0 6px;
}
.vl-model-task {
  color: #9ca3af;
}

.vl-section {
  padding: 40px 20px;
}

.vl-section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
  color: #22c55e;
}

.vl-plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vl-plugin-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: 0.2s;
}

.vl-plugin-card:hover {
  transform: translateY(-4px);
  border-color: #22c55e;
}

.vl-plugin-title {
  color: #22c55e;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
}

.vl-plugin-desc {
  color: #d1d5db;
  line-height: 1.6;
}

.vl-footer {
  text-align: center;
  padding: 40px;
  color: #6b7280;
}

/* Landing page lab cards */
.vl-section {
  max-width: 1700px;
  margin: 70px auto 0;
  padding: 0 48px;
}

.vl-section-title {
  color: #24d36b;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(36, 211, 107, 0.35);
  padding-bottom: 12px;
}

.vl-lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.vl-lab-card {
  display: block;
  min-height: 150px;
  padding: 24px 22px;
  background: rgba(0, 25, 14, 0.72);
  border: 1px solid rgba(36, 211, 107, 0.55);
  border-radius: 14px;
  color: #dfffe8;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0, 255, 120, 0.05);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.vl-lab-card:hover {
  transform: translateY(-3px);
  border-color: #24d36b;
  background: rgba(0, 40, 20, 0.9);
}

.vl-lab-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.vl-lab-desc {
  color: #b8c8b8;
  line-height: 1.35;
  font-size: 15px;
}
