/* ---------------- Actions Section ---------------- */
.actions-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.action-block {
  background-color: #111;
  color: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(168, 255, 0, 0.2);
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-header {
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
}

.action-header::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #a8ff00;
  box-shadow: 0 0 8px #a8ff00;
  border-radius: 2px;
}

.action-desc {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 12px;
}

.text-btn {
  background: none;
  border: none;
  color: #a8ff00;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.text-btn:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px #a8ff00;
}

/* Responsive */
@media (max-width: 1024px) {
  .actions-section {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
