/* 6. Get Involved Page */
#get-involved-hero .notiway-desc-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #4b5563;
}

html[class~="dark"] #get-involved-hero .notiway-desc-text {
  color: #d1d5db;
}

.get-involved-section {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.get-involved-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-involved-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

html[class~="dark"] .get-involved-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

html[class~="dark"] .get-involved-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.get-involved-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.get-involved-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.get-involved-icon.bug-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.get-involved-icon.contributor-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.get-involved-icon.planning-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.get-involved-content {
  flex: 1;
}

.get-involved-content p {
  color: #64748b;
}

html[class~="dark"] .get-involved-content p {
  color: #94a3b8;
}

.get-involved-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.get-involved-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
}

.get-involved-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

html[class~="dark"] .get-involved-list li {
  color: #cbd5e1;
}

.get-involved-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.get-involved-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  color: white !important;
  text-decoration: none !important;
}

.get-involved-button span {
  color: white !important;
}

.get-involved-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.get-involved-button.bug-button {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.get-involved-button.bug-button:hover {
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.get-involved-button.contributor-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.get-involved-button.contributor-button:hover {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.get-involved-button.planning-button {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.get-involved-button.planning-button:hover {
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

@media (max-width: 768px) {
  .get-involved-card {
    flex-direction: column;
    text-align: center;
  }

  .get-involved-icon {
    margin: 0 auto;
  }

  .get-involved-list {
    text-align: left;
  }

  .get-involved-button {
    width: 100%;
    justify-content: center;
  }
}

