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-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;
}
